It looks like there are (at least) two options for getting nant to use csproj files: using the task of NAntContrib or using msbuild.exe directly (e.g., codecampserver). Am I reading this right, and if so, what is the advantage of using msbuild.exe over the NAntContrib task?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The NAntContrib assumes .NET Framework V2.0. If you want to use .NET 3.5, you'll need to call MsBuild.exe directly. Here's an example:
Following up on some of the comments, the 'value' attribute is used for parameters that have no spaces. 'line' is used for parameters that need to be delimited due to spaces. Otherwise, the application would use the space as an end of input. |
|||||||||||
|
|
Here is a simple target
|
|||
|
|