如何向NAnt添加silverlight-3.0目标框架?我尝试修改nant.exe.config文件,基于silverlight-2.0配置文件,但在使用CS0518: Type "System.Object" not defined or imported
[从波兰语翻译的错误消息]进行编译时失败了。此外,silverlight-2.0目标似乎没有像Visual Studio那样设置“SILVERIGHT”条件编译定义,这使得编写多目标库变得复杂。
这里有没有人构建混合目标解决方案(包含完整.NET框架和Silverlight的库)?
答案 0 :(得分:3)
看起来理查德B在Nant.exe.config修改的正确轨道上。我在配置文件中添加了以下大量的XML,并且能够在我的主构建文件中将 nant.settings.currentframework 属性设置为 silverlight-3.0 ,以及像魅力一样工作。 (注意:我在Silverlight-2.0框架定义之后将其放在第775行的配置文件中)。希望这有帮助
<framework
name="silverlight-3.0"
family="silverlight"
version="3.0"
description="Microsoft Silverlight 3.0"
sdkdirectory="${path::combine(sdkInstallRoot, 'bin')}"
frameworkdirectory="${path::combine(installRoot, 'v3.5')}"
frameworkassemblydirectory="${environment::get-folder-path('ProgramFiles')}/Microsoft Silverlight/3.0.40818.0"
clrversion="2.0.50727"
>
<runtime>
<modes>
<strict>
<environment>
<variable name="COMPLUS_VERSION" value="v2.0.50727" />
</environment>
</strict>
</modes>
</runtime>
<reference-assemblies basedir="${environment::get-folder-path('ProgramFiles')}/Microsoft Silverlight/3.0.40818.0">
<include name="agclr.dll" />
<include name="Microsoft.VisualBasic.dll" />
<include name="mscorlib.dll" />
<include name="System.Core.dll" />
<include name="System.dll" />
<include name="System.Silverlight.dll" />
<include name="System.Xml.dll" />
<include name="System.Windows.dll" />
<include name="System.Windows.Browser.dll" />
</reference-assemblies>
<task-assemblies>
<!-- include MS.NET version-neutral assemblies -->
<include name="extensions/net/neutral/**/*.dll" />
<!-- include MS.NET 2.0 specific assemblies -->
<include name="extensions/net/2.0/**/*.dll" />
<!-- include MS.NET specific task assembly -->
<include name="NAnt.MSNetTasks.dll" />
<!-- include MS.NET specific test assembly -->
<include name="NAnt.MSNet.Tests.dll" />
<!-- include .NET 2.0 specific assemblies -->
<include name="extensions/common/2.0/**/*.dll" />
</task-assemblies>
<tool-paths>
<directory name="${path::combine(sdkInstallRoot, 'bin')}"
if="${property::exists('sdkInstallRoot')}" />
<directory name="${path::combine(installRoot, 'v2.0.50727')}" />
<directory name="${environment::get-folder-path('ProgramFiles')}/Microsoft Silverlight/3.0.40818.0" />
</tool-paths>
<project>
<readregistry
property="installRoot"
key="SOFTWARE\Microsoft\.NETFramework\InstallRoot"
hive="LocalMachine" />
<readregistry
property="sdkInstallRoot"
key="SOFTWARE\Microsoft\.NETFramework\sdkInstallRootv2.0"
hive="LocalMachine"
failonerror="false" />
</project>
<tasks>
<task name="csc">
<attribute name="noconfig">true</attribute>
<attribute name="nostdlib">true</attribute>
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportswarnaserrorlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
<attribute name="supportsdelaysign">true</attribute>
<attribute name="supportsplatform">true</attribute>
<attribute name="supportslangversion">true</attribute>
</task>
<task name="vbc">
<attribute name="nostdlib">true</attribute>
<attribute name="supportsdocgeneration">true</attribute>
<attribute name="supportsnostdlib">true</attribute>
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
<attribute name="supportsdelaysign">true</attribute>
<attribute name="supportsplatform">true</attribute>
<attribute name="supportswarnaserrorlist">true</attribute>
</task>
<task name="jsc">
<attribute name="supportsplatform">true</attribute>
</task>
<task name="vjc">
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
<attribute name="supportsdelaysign">true</attribute>
</task>
<task name="resgen">
<attribute name="supportsassemblyreferences">true</attribute>
<attribute name="supportsexternalfilereferences">true</attribute>
</task>
<task name="delay-sign">
<attribute name="exename">sn</attribute>
</task>
<task name="license">
<attribute name="exename">lc</attribute>
<attribute name="supportsassemblyreferences">true</attribute>
</task>
</tasks>
</framework>
答案 1 :(得分:1)
您可以下载NAnt 0.91 Alpha 2版本,其中包括对net-4.0框架的支持。该框架适用于使用Silverlight 4应用程序编译解决方案。
我有一个包含Silverlight 4应用程序和.NET 3.5 ASP.NET Web项目的解决方案,我使用alpha版本的net-4.0框架进行编译,效果很好。
或者,仍然使用Nant alpha版本,如果您只需要使用Nant编译SilverLight 4应用程序,则可以从Nant CVS here.获取silverlight-4.0框架标记,并将该标记添加到您的Nant中。 exe.config文件。
答案 2 :(得分:0)
@skolima ...这可能是因为你没有指向正确的目录吗?我实际上想知道这个,因为我正在使用SL3,并希望使用nAnt进行构建自动化。
另外想知道,根据SO上的其他帖子,您可能需要编辑nant.exe.config文件,以便为silverlight-3添加“profile”。