Re: [Nant-users] Specifying which .net framework to build against with .84 rc1

2003-12-07 Thread Gert Driesen
Jason, You are correct. The framework to target can be set from the commandline using the -defaultframework (or -k) switch. In build files the current framework can be changed by setting the value of the 'nant.settings.currentframework' property, although this may change in the future : Gert

Re: [Nant-users] Specifying which .net framework to build against with .84 rc1

2003-12-06 Thread Ian MacLean
Jason, your summary of the -k switch usage is correct. To set the framework to build with inside your build file use: ... ... nant.settings.currentframework is a special property name - changing it will change the current framework that you are building against. Ian All, I noticed the fol