我正在尝试创建一个Nant脚本,到目前为止它一直很顺利,但我希望不要硬编码文件位置。这是好的,直到我必须执行我似乎无法做的nunit-console.exe。到目前为止我发现的与此相关的是:
<target name="test">
<property name="windows-path" value="${string::to-lower(environment::get-variable('PATH'))}"/>
<property name="nunit-in-path" value="${string::contains(windows-path, 'nunit')}"/>
<echo message="${nunit-in-path}"/>
</target>
但这次每次都失败了,所以我想知道几件事:
string::to-lower(environment::get-variable('PATH'))
实际上做了什么?答案 0 :(得分:3)
echo %PATH%
,在powershell中键入$env:PATH
。因此,假设nunit-console.exe位于c:\ Program Files \ Nunit \ bin
要永久修改您的路径,请右键单击我的计算机,转到高级 - &gt;环境变量
-OR -
要在运行此nant脚本之前动态执行此操作,请在批处理脚本中运行:
set PATH="%PATH%;c:\Program Files\Nunit\bin"
或在powershell中,运行:
$env:PATH += ';c:\program files\nunit\bin'
你也可以用相关的环境变量替换c:\ Program Files ...在Powershell中我认为它是$env:ProgramFiles
和${env:ProgramFiles(x86)}
...我认为它可能是%PROGRAMFILES%
命令提示符,但我可能错了。但是您可以键入set
以获取命令提示符中所有变量的列表。
在你的系统路径中设置nunit可能更像你正在尝试做的事情,因为脚本在PATH变量中包含nunit的任何机器上都可以不加修改地工作。
答案 1 :(得分:1)
好的我现在好了,这就是我的脚本现在的样子:
<?xml version="1.0"?>
<project name="Calculator" default="execute" basedir=".">
<property name="InstallationDir" value="C:\BoolCalc" readonly="false"/>
<property name="NUnitLocation" value="${path::combine(directory::get-current-directory(), 'NUnit\bin\net-2.0\nunit-console.exe')}" readonly="false" />
<description>The build scripts for the bool calculator</description>
<target name="clean" description="Remove all previous versions and generated files"><!--This ensures that old files are deleted if they are there and does nothing if they aren't-->
<delete dir="${InstallationDir}" failonerror="false" /><!-- This deletes the directory on your computer for the previous versions, if there are any -->
<delete file="test\Calc.exe" failonerror="false" />
</target>
<target name="build" description="compiles the source code" depends="clean">
<csc target="exe" output="test\Calc.exe" >
<sources>
<include name="src\*.cs" />
</sources>
<references>
<include name="lib\nunit.framework.dll" />
</references>
</csc>
</target>
<target name="testProgram" description="Run unit tests" depends="build">
<exec program="${NUnitLocation}"
workingdir="test\"
commandline="Calc.exe /xml:TestResults.xml /nologo" />
</target>
<target name="install" depends="testProgram">
<echo message="Installing the boolean calculator to ${InstallationDir}"/>
<copy todir="${InstallationDir}" overwrite="true">
<fileset basedir="test\">
<include name="Calc.exe" />
</fileset>
</copy>
</target>
<target name="execute" depends="install">
<echo message="Executing the calculator in ${InstallationDir}"/>
<exec program="${InstallationDir}\Calc.exe" commandline="Calc.exe" />
</target>
</project>
我接受了建议并将Nunit文件填充到workingdir中,然后使用combine和get-current-directory()创建一个完整的路径来获取它的确切位置。
如果您发现此脚本有任何问题或可以改进的地方,请告诉我们。 感谢calavera解释我对此感到困惑(不知道我能做到这一点)并感谢Tim Robinson和Mark Simpson的解决方案。