We are running Cruise Control 1.5.7256.1 and using it to do builds using Nant and Nantcontrib. The builds are failing and succeeding correctly, but when they fail the related error messages are being shown on the CCNet Build Report page. See image below
The build errors can be seen on the View Build Log page, but they aren't making it...
On windows systems, certain dos commands don't have executables that can be explicitly called via NAnt's exec task. (I'm talking specifically about commands that are part of Command.com)
A complete list can be found here. While name of the more useful commands can be achieved with NAnt or NAntContrib tasks (copy, move, rename etc), some...
I am using nantcontrib and the vssget task to retrieve the latest code from source safe in a build process. I would like to log which files have been updated/replaced, basically any changes that have occured, and output it to screen/log file.
The only output I get is...
[vssget] Getting '$/project' to 'C:\project'
Below is my vssget ...
I want to redefine copy task from Nant without changing my .build configuration files. Is it possible in nant?
Msbuild has:
<UsingTask TaskName="SGen" AssemblyFile="Tools\Extensions.dll"/>
which can do that.
I wrote my copy task by don't know how to override it globally during nant script execution.
...