本文介绍了不支持解决方案文件Solution.sln的格式 - 楠和VS2008(.NET 3.5)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图让楠0.86b1与VS2008 SP1和x64 XP中运行。

I'm trying to get NAnt 0.86b1 running with VS2008 SP1 and x64 XP.

我有一个基本的生成文件(如下),这也是错误不支持的解决方案文件'Solution.sln的格式。

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>

有其他人遇到这个问题?我找不到任何有用的事情在那里这一点。

Has anyone else experienced this problem? I can't find anything useful out there about this.

推荐答案

楠-0.86-β1支持3.5,但不是在解决方案节点有多好。最后我用这从nantcontrib:

nant-0.86-beta1 supports 3.5 but not in the solution node how nice. I ended up using this from the nantcontrib:

  <target name="build" description="Compiles using the AutomatedDebug Configuration">
    <!-- <loadtasks assembly="C:\Dev\nant-0.86-beta1\bin\NAnt.Contrib.Tasks.dll"  /> -->
    <msbuild project="${Solution.Filename}">
      <property name="Configuration" value="Release"/>
    </msbuild>
  </target>

这篇关于不支持解决方案文件Solution.sln的格式 - 楠和VS2008(.NET 3.5)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 13:23