Search Results

0
votes

Build setup project with NAnt

Instead of trying to build using MSBUILD (assumption), build the solution or project using DEVENV.EXE. The command line is something along the lines of: DEVENV MySolutionFile.sln /build DEB …
3
votes

How do I extract the version and path from an SVN working copy into a nant variable?

Firstly, you can use "svn info --xml >out.xml" to get the svn information to a text file. You can then use a Nant xml-peek to get a value out of the file into a variable. <xmlpee …