我试图让 NAnt 0.86b1 与 VS2008 SP1 和 x64 XP 一起运行。
我有一个基本的构建文件(如下),它给出了文件“Solution.sln”的错误解决方案格式不受支持。
<property name="nant.settings.currentframework" value="net-3.5" />
<target name="build" description="Full Rebuild" depends="clean,compile" />
<target name="clean" description="Cleans outputs">
<delete dir="bin" failonerror="false" />
<delete dir="obj" failonerror="false" />
</target>
<target name="compile" description="Compiles solution">
<solution configuration="debug" solutionfile="Solution.sln" />
</target>
有没有其他人遇到过这个问题?我找不到任何有用的东西。