R – Cruisecontrol.net nant results different from non-cc.net

cruisecontrol.netnantnantcontrib

I've a nant script that builds a VS2008 solution. When I run it myself by typing 'nant' in the command line all the correct DLLs are copied to the respective bin directories. But when Cruisecontrol performs the CI build no DLLs are copied to the bin directories.

Any ideas what's causing this?

Best Answer

Your problem, dear Mr. Flibble, is that you have specified "test" as the target in the cc.net config which is overrigind the default target (build) that gets executed when executing nant from the commandline.

Related Topic