How do I get nant to build projects that target the .NET 4.0 Framework?
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
http://paigecsharp.blogspot.com/2009/08/nant-net-framework-40-configuration.html is a full code for .config file for NAnt.
I used all of the answers above and still ran into some weird build errors: "error MSB6006: "AL.exe" exited with code 128". Error not helpful at all. I did some googling and came up with few answers. Here are the links: msdn help and asp.net forums
I wrestled with that error for a full day, studying the "detailed" and "diagnostic" logs, but all it did is pointing me to the assembly that failed building. No specific error. I could not even duplicate it on my local box. Finally, I decided to try the suggestion about resource files naming convention in the second link (asp.net forums) and... alleluia! my build started working. I don't know what's up with the build failing because of the resource name, still working on that, but my immediate goal was to get the build working.
Hope this helps someone else out there.
2010 April 15, ... Update to above correct answer from Eugene, after .net 4 and vs2010 was released.
I downloaded vs2010 and .net 4 runtime. The production version seems to be v4.30319 ie (C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319)
After reviewing http://paigecsharp.blogspot.com/2009/08/nant-net-framework-40-configuration.html, ... I pasted in the text and changed all text from v4.0.20506 to v4.30319 an added text to NAnt.exe.config.
I then updated my nant script to
this so my project nant script uses the .net 4 compiler
And this got me a nant build with .net 4 binary ....
Update 2010-06-14: The above was answered with nant-0.85, I upgraded to nant-0.90 and had to add
vendor="Microsoft"
to framework attribute that is added to nants config. Also, it looks like nant0.9 finds the .net libraries differently, as I had to add something like this to my nant build.xml ...and
NAnt 0.86 and later runs out of the box. As of writing this, I am using 0.91.
When downloading from the net, remember to "unblock" the zip file (reset security zone) before unpacking.
If you want to use nant to build projects targeting .NET 4.0 you'll have to modify
NAnt.exe.config
and add the net-4.0 target framework and add a<supportedRuntime ... />
line to the<startup
> section.I had similar issue for 4.5, this solved my issue:
http://www.donnfelker.com/nant-sdkinstallroot-has-not-been-set/
I have a 64 bit machine but .net is installed as 32 bit. The sdkInstallRoot is not able to find the correct path. I checked in my registry editor to find the correct path and replaced the entry in nant.exe.config.
I replaced:
with this: