我正在尝试将NAnt 0.86b1与VS2008 SP1和x64 XP配合运行。
I have a basic build file (below) which gives the error Solution format of file Solution.sln is not supported.
<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>
还有谁遇到过这个问题吗?我在网上找不到任何有用的信息。