gpt4 book ai didi

nant - NAnt .build 文件区分大小写吗?

转载 作者:行者123 更新时间:2023-12-04 18:24:34 24 4
gpt4 key购买 nike

NAnt 构建文件中用于项目、目标、任务、函数等的关键字是否区分大小写?

最佳答案

试试这个 NAnt 构建脚本:

<?xml version="1.0" encoding="utf-8" ?>
<!-- ====================================================================== -->
<!-- test case sensitiveness -->
<!-- ====================================================================== -->
<project name="test.casesensitiveness" default="test">
<target name="test">
<property name="foo" value="bar" />
<echo message="Does property 'foo' exist? ${property::exists('foo')}" />
<echo message="Does property 'Foo' exist? ${property::exists('Foo')}" />
</target>
</project>

这是输出:

test:

[echo] Does property 'foo' exist? True
[echo] Does property 'Foo' exist? False

所以,是的,NAnt 中的标识符是区分大小写的。

关于nant - NAnt .build 文件区分大小写吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2332591/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com