-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I just cannot for the life of me get my nant build file to terminate upon a test failure and return (thus preventing the packaging and artifact step from running)
This is the unit part of the nant file:
<target name="unittest" depends="build">
<nunit2 verbose="true" haltonfailure="false"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Nant.core.dll : 0.86.2898.0
I can not get the following tag working on my machine.
<sysinfo verbose="true" />
<sysinfo />
It gives me the following error. If I comment out those two lines I'm able to build. I google'd but not much help. Any idea?
NAnt 0.85 (Build 0.85.1932.0;…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have created an MSBuild tasks for building my projects, but for various reasons I wan't to switch to NAnt.
Is there some task that would be equivalent to MSBuild's XmlMassUpdate in NAnt? If possible I would like to use the same xml replacement file I used with XmlMassUpdate.
(for more info about…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to get MSBuild 2010 to publish a web app to a specific location.
I can get it to publish the deployment package to a particular path, but the deployment package then adds it's own path that changes.
For example: if I tell it to publish to C:\dev\build\Output\Debug then the actual web…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I need to store authentication information and I rather not have the password in plain text:
<property name="user" value="theUser"/>
<property name="password" value="secret"/>
Has anyone figured out a way to encrypt property values in Nant?
I've looked in Nant and Nantcontrib…
>>> More