Search Results

0
votes

“File Not Found” in MSBuild Community Tasks — Which File?

Procmon and Filemon are good suggestions - just make sure you filter the results to only show errors. Otherwise the success messages will bury the problem entries. Also, you can filter out proces …
0
votes

Install and use aspnet_merge.exe without installing the Windows SDK?

It looks like aspnet_merge.exe can be found in the Web Deployment Projects install. I don't have a clean box to t …
0
votes

How do I set the build number based on the Subversion revision number with CruiseControl.net

If you are wanting to change the build number in CC.Net, I believe you want to use a labeller block …
1
vote

Using Studio’s “Custom Tool” in MSBuild

When you specify your custom tool from within VisualStudio, what does it add to your project or solution files? Since they are just msbuild files, you might be able to use the added xml as a templ …
2
votes

Where should I store common targets for team builds?

The goal of a common .targets file is to reduce duplication of your scripts. If you have multiple copies of this file under source control, what happens when you need to change them (to update a . …
0
votes

Hidden features of msbuild

You can reference one msbuild file from within another. All of our targets, such as those for running NCover, SourceMonitor, Duplo, etc. are within a common targets file. For each project, we cre …
0
votes

Process timeout without showing any error in test execution using cc.net

One possibility is that you have a permission issue. CruiseControl is perhaps running under a service account and has different permissions than your user account (which I'm assuming you use to ma …
0
votes

Medium/Large solution - Visual Studio Build process - Advice needed

One thing that jumps out is the copying of output files to build/bin. Do you have separate sub-folders for Release and Debug builds? I've worked on a large project that used a similar setup to you …