【发布时间】:2010-09-24 13:43:10
【问题描述】:
我正在尝试让 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>
有没有其他人遇到过这个问题?我找不到任何有用的信息。
【问题讨论】:
标签: visual-studio-2008 .net-3.5 nant