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>
他の誰かがこの問題を経験しましたか? 私はこれについて有用なものを見つけることができません。