1
vote
2answers
26 views
MSBUILD macro documentation?
I'm using MSBUILD macros in my .csproj files for AfterBuild events mainly just to copy files. I'm doing this by example, so the only ones I know of are the ones I've seen in use: …
1
vote
2answers
38 views
How do I override CopyLocal (Private) setting for references in .NET from MSBUILD
Hi all, I have been wrestling with this for a few days and after tons of searching I can't find the path I should be on.
What I want to do is set up an MSBUILD project that will b …
0
votes
2answers
41 views
How can I debug (preferably in an IDE) an MSBuild script?
Hi,
We use MSBuild quite extensively as part of our continuous integration process, and whilst it is incredibly powerful and we can do practically all of our build, test and deplo …
0
votes
0answers
27 views
Xslt task not working as expected
I have an XSLT transform that I developed in VS. It works great when I use VS to run it (via XML->Show Xslt Output). However, when I execute it via the MsBuildCommunityTasks Xslt t …
2
votes
5answers
64 views
MSBuild / Visual Studio distributed builds
I develop / maintain an app that takes a long time to build (as in, a full build takes in excess of 6 hours!) After having spent most of the day building our app I've started loo …
0
votes
1answer
27 views
What in my CruiseControl.NET configuration is causing this exception?
In attempting to set up a build for a demo project I am working on, I received the following exception:
System.IO.DirectoryNotFoundException: Could not find a part of the path 'C: …
2
votes
2answers
23 views
Calling one solution file from another
I use solution file (.sln) and command propmpt to build my projects. Is it possible to have one solution file call (build projects) another solution file?
1
vote
1answer
21 views
Performance benefit to pre-compiling web application project set to be updateable?
Is there any performance benefit to pre-compiling an asp.net web application if it's set to be updateable? By setting the pre-compiler updateable flag it doesn't pre-compile the as …
0
votes
1answer
32 views
+150
WPF app builds in vs2k8, but not on command line w/ msbuild
I have a fairly small solution that includes a WPF windows application. It builds perfectly fine when built from the solution. I recently integrated the projects contained within t …
0
votes
0answers
11 views
TFS MSBuild Strong name and code signing of assemblies.
I need to strong name and code sign my assemblies.
I dont want to change anything in Visual Studio, all changes must be on the TFS Build server.
Any know how I can do this?
0
votes
2answers
22 views
How do I access the metadata of one particular item in an MSBuild ItemGroup?
Given this Itemgroup:
<ItemGroup>
<Foo Include="First">
<Value>1</Value>
</Foo>
<Foo Include="Second">
<Value>2</Value&g …
0
votes
1answer
13 views
Force rules for build and deployment
Our web project is source-controlled with SVN. It contains MSBuild file to build local, test and production builds. We also use CruiseControl.NET to deploy production and test vers …
1
vote
1answer
29 views
Remote and automated IIS 7 management from build server - permissions issue
Here's the scenario:
Win2003 Build Server (CCNET)
IIS7 target deployment server
The various MSBuild tasks (Sdc.Tasks, MSBuild Community, MSBuild Extension Pack) for doing this …
0
votes
1answer
21 views
MSBuild: how to control the parsing of a semicolon delimited property
When a single property contains semicolons, MSBuild automatically parse the property into a list of properties when used within an itemgroup. Here's a snippet from my project:
&l …
1
vote
1answer
38 views
Creating a list of Folders in an ItemGroup using MSBuild
Hi,
I'm trying to build an ItemGroup in an MSBuild script which contains a list of folders directly below a given 'Root' folder. So - in this example...
+ Root folder
---- Sub F …
