Search Results

4
votes

How do you store dependencies of you program, and tests items deployement in your SCC ?

I would disagree with that statement. We keep third-party dlls in our repository so the build server can compile the projects without us having to install sdk's or other software. …
4
votes

UI Testing Framework + Continuous Integration ??

NUnitForms has a "hidden desktop" feature that will let you run unit tests from cc.net. …
0
votes

CruiseControl.Net complaining about xml

One thing to note - if you specify build tasks within the cruise control project, you don't have to specifically tell it to merge the output - it is handled automatically. One method of debugging …
0
votes

Missing dependencies when building through CruiseControl

You might check to see if the missing dlls are in the GAC on the build machine. I ran into an issue a few months back where the build server was generating an install with one fewer dll tha …
1
vote

Modern Build tool suitable for Visual Studio MSBuild

Along with compiling code, Visual Build can be used to pull source and run your analysis tools (and has a nice GUI which lets you hide any "xml mess".) Your CI server should have a method for inte …
1
vote

Running NUnit task in CruiseControl.NET always throws errors

I see from the fusion logs that NUnit appears to have ShadowCopy enabled. In the past, I've run into issues with this turned on. It doesn't appear that the CruiseControl task allows switching this …
0
votes

CC.Net Access Denied Error

Is it possible that the virtual folder it is trying to create already exists? Another thought - when you run from a command line, it is possible you have different environment variables or drive m …