views:

12

answers:

1

I am running CruiseControl.NET as a service but some of the projects that I am building reference things using a network drive. As In H:... instead of \machine\dir. I can't change the project references. How can I mount the H: drive before the project builds or maybe when CruiseControl starts running?

A: 

From a command line, you can call "net use" to set up a mapped drive. You might be able to run this from an exec task before the code is compiled.

Pedro