NAnt 0.85 and active version of .NET Framework
By default, NAnt 0.85 (at least, RC4 I'm using) have .NET 2.0 Framework as active while running build scripts. And sometimes it's necessary to compile assembly (say, with <csc> task) for .NET 1.1 Framework. The info on how to change active .NET Framework is in the NAnt documentation, but some digging required to find it.
So here is a solution:
<property name="nant.settings.currentframework" value="net-1.1" />
0 Comments:
Post a Comment
<< Home