To support 3.5 builds on 64 bit windows system and also to support the
new framework sdk version, nant needs to change the NAnt.exe.config
Framework name="net-3.5" to:

<project>
 <readregistry
        property="installRoot"
        key="SOFTWARE\Microsoft\.NETFramework\InstallRoot"
        hive="LocalMachine" />
 <readregistry
        property="sdkInstallRoot"
        key="SOFTWARE\Microsoft\Microsoft
SDKs\Windows\v6.1\WinSDKNetFxTools\InstallationFolder"
        hive="LocalMachine"
        failonerror="false" />
 <readregistry
        property="sdkInstallRoot"
        key="SOFTWARE\Microsoft\Microsoft
SDKs\Windows\v6.0A\WinSDKNetFxTools\InstallationFolder"
        hive="LocalMachine"
        failonerror="false" />
 <readregistry
        property="sdkInstallRoot"
        key="SOFTWARE\Wow6432Node\Microsoft\Microsoft
SDKs\Windows\v6.1\WinSDKNetFxTools\InstallationFolder"
        hive="LocalMachine"
        failonerror="false" />
 <readregistry
        property="sdkInstallRoot"
        key="SOFTWARE\Wow6432Node\Microsoft\Microsoft
SDKs\Windows\v6.0A\WinSDKNetFxTools\InstallationFolder"
        hive="LocalMachine"
        failonerror="false" />
</project>

Could someone add this to nant and make a new nightly build?

Steve

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to