MSBuild is an XML-based build platform from Microsoft.
235
votes
7answers
31k views
Compile Views in ASP.NET MVC
I want an msbuild task to compile the views so I can see if there are compile time errors at well... compile time. Any ideas?
144
votes
7answers
31k views
Resolving MSB3247 - Found conflicts between different versions of the same dependent assembly
A .NET 3.5 solution ended up with this warning when compiling with msbuild.
Sometimes NDepend might help out but in this case it didn't give any further details. Like Bob I ended up having to resort ...
120
votes
12answers
14k views
Nant or MSBuild, which one to choose and when?
I am aware there are other nant and msbuild related questions on stack overflow, but I could not find a direct comparison between the two and so here is the question.
When should one choose Nant over ...
81
votes
14answers
26k views
What is the best practice for “Copy Local” and with project references?
I have a large c# solution file (~100 projects), and I am trying to improve build times. I think that "Copy Local" is wasteful in many cases for us, but I am wondering about best practices.
In our ...
78
votes
7answers
24k views
Microsoft.WebApplication.targets was not found, on the build server. What's your solution?
Trying to build my project on the build server gives me the following error:
Microsoft (R) Build Engine Version 4.0.30319.1
error MSB4019: The imported project "C:\Program Files ...
77
votes
2answers
36k views
Installing MSBuild 4.0 without Visual Studio 2010
I installed .NET 4.0 and VS 2010 RC on my laptop and MSBuild was automatically installed. I was hoping to build a continuous integration server by just installing the .NET SDK without VS 2010, so I ...
72
votes
3answers
7k views
.NET 4.0 build issues on CI server
Anybody manage to get .NET 4.0 applications compiling on a CI server without installing Visual Studio 2010 on a CI server?
No SDK exists for .NET 4.0. Have installed .NET 4.0 on CI Server. ...
66
votes
9answers
20k views
Is there a good tutorial on MSBuild scripts?
I'm working on a web application project, and I need to create a build script; a build script that I can trigger from my cruisecontrol server. Since nant has not been maintained for ages, I figure ...
63
votes
14answers
35k views
Running MSBuild fails to read SDKToolsPath
Howdy, I'm having a bit of an issue runnning a NAnt script that used to properly build my .Net 2.0 based website, when compiling with VS2008 and it's associated tools. I've recently upgraded all the ...
62
votes
9answers
29k views
How can I get TFS2010 to run MSDEPLOY for me through MSBUILD?
There is an excellent PDC talk available here from Vishal Joshi which describes the new MSDEPLOY features in Visual Studio 2010 - as well as how to deploy an application within TFS. (There's also a ...
61
votes
6answers
26k views
How to Publish Web with msbuild?
Visual Studio 2010 has a Publish command that allows you to publish your Web Application Project to a file system location. I'd like to do this on my TeamCity build server, so I need to do it with the ...
60
votes
12answers
11k views
Best practices for large solutions in Visual Studio (2008) [closed]
We have a solution with around 100+ projects, most of them C#. Naturally, it takes a long time to both open and build, so I am looking for best practices for such beasts. Along the lines of questions ...
55
votes
8answers
9k views
“Treat all warnings as errors except…” in Visual Studio
In Visual Studio, I can select the "Treat warnings as errors" option to prevent my code from compiling if there are any warnings. Our team uses this option, but there are two warnings we would like to ...
54
votes
8answers
36k views
How can I auto increment the C# assembly version via our CI platform (Hudson)?
Myself and my group are horrendous at incrementing assembly version numbers and we frequently ship assemblies with 1.0.0.0 versions. Obviously, this causes a lot of headaches.
We're getting a lot ...
54
votes
5answers
16k views
Displaying build times in Visual Studio?
Our build server is taking too long to build one of our C++ projects. It uses Visual Studio 2008. Is there any way to get devenv.com to log the time taken to build each project in the solution, so ...
54
votes
7answers
19k views
MSBuild Script and VS2010 publish apply Web.config Transform
So, I have VS 2010 installed and am in the process of modifying my MSBuild script for our TeamCity build integration. Everything is working great with one exception.
How can I tell MSBuild that I ...
50
votes
4answers
7k views
Checking in packages from NuGet into version control?
Prior to NuGet, it was common accepted 'best practice' to check-in all external DLLs used on a project. Typically in a Libs or 3rdParty directory.
When working with NuGet, am I supposed to check-in ...
45
votes
6answers
6k views
remove nuget package restore from solution
I added the recent nuget package restore feature to a solution using 'Enable NuGet Package Restore':
http://docs.nuget.org/docs/workflows/using-nuget-without-committing-packages
However it broke my ...
42
votes
7answers
18k views
Msbuild doesn't copy references (dlls) if using project dependencies in solution
i had a look on many similar questions on this side but none of them answered the question to my problem. The whole day i tried to solve this by finding a solution (via google etc.):
I have 4 ...
41
votes
10answers
19k views
VSTS 2010 SGEN : error : Could not load file or assembly (Exception from HRESULT: 0x80131515)
I am experiencing a strange issue with VS2010. We use TFS to build our API dlls and we used to reference them in our projects usign a mapped network drive that was fully trusted. We have been working ...
40
votes
5answers
20k views
Path to MSBuild
How can I programatically get the path to MSBuild from a machine where my .exe is running?
I can get the .NET version from the Environment but is there a way of getting the correct folder for a .NET ...
39
votes
3answers
8k views
List of MSBuild built-in variables
Does anyone know where are list of builtin MSBuild variables are located?
I need know how to determine the current project's csproj name, and thought it might be useful to know what else I can find ...
36
votes
2answers
6k views
How to escape quote marks in Exec Command in MSBuild
I'm trying to build an MSBuild script that maps a network drive to a drive letter in the script, but unfortunately the path to the target folder includes an embedded space. The embedded space causes ...
35
votes
3answers
8k views
TeamCity says to use “Build Parameters” instead of “/property:” in an MSBuild step. What does that mean?
I have a TeamCity server setup to do my CI builds. I'm building and testing a C# solution and running some custom MSBuild tasks. One of these tasks is printing a warning in my build output...
...
34
votes
5answers
10k views
C# Conditional Compilation and framework targets
There are a few minor places where code for my project may be able to be drastically improved if the target framework were a newer version. I'd like to be able to better leverage conditional ...
33
votes
6answers
18k views
Copy to Output Directory copies folder structure but only want to copy files
I have a VS2008 I want to copy certain files from a directory into my /bin/ folder. I have set the files (located in /common/browserhawk/) to "Copy to Output Directory". However, it copies the ...
33
votes
5answers
13k views
MSBuild passing parameters to CallTarget
I'm trying to make a reusable target in my MSBuild file so I can call it multiple times with different parameters.
I've got a skeleton like this:
<Target Name="Deploy">
<!-- Deploy to a ...
32
votes
4answers
8k views
MSBuild ItemGroup, excluding .svn directories and files within
How can I construct a MSBuild ItemGroup to exclude .svn directories and all files within (recursively). I've got:
<ItemGroup>
<LibraryFiles Include="$(LibrariesReleaseDir)\**\*.*" ...
31
votes
3answers
8k views
TFS Build server - CSC : fatal error CS2008: No inputs specified
We get the above error message on our build server, when we build the solution or the specific project that the error refers to.
We can build the solution without any problem using visual studio ...
31
votes
4answers
8k views
msbuild target package not found
I want to package my VS2010 web application project ready for deployment with msdeploy.
On development machine I can do this using:
MSBuild.exe "C:\path\to\WebApp.csproj" /target:package
But on my ...
31
votes
1answer
6k views
_CopyWebApplication with web.config transformations
I am trying to have my web application automatically Publish when a Release build is performed. I'm doing this using the _CopyWebApplication target. I added the following to my .csproj file:
...
31
votes
1answer
2k views
How to build using MSBuild and Delphi XE2
I've been building projects using Delphi XE and MSBuild using the following simple example which works fine in a batch file. Project1 is an empty project created using 'File | New | VCL forms ...
30
votes
11answers
18k views
Replicate VS2008 “Publish Web Site” from command line
I am trying to replicate the exact functionality of this dialogue in Visual Studio 2008 in a build script:
This is an ASP.NET web site, not a web application.
I have Googled around this and turned ...
30
votes
4answers
3k views
Is there a standard file extension for MSBuild files?
Is there a standard file extension for MSBuild files that are not project files but instead more complex build scripts?
I was thinking .msbuild.proj to avoid confusion with other .proj files (which I ...
30
votes
10answers
48k views
allowDefinition='MachineToApplication' msbuild error
We have a ASP.NET MVC with 4-5 different build configurations. Whenever we change the build configuration, we need to delete the obj folder for the web project, since we get the ...
30
votes
2answers
7k views
How-To Integrate IIS 7 Web Deploy with MSBuild (TeamCity)
How-To Integrate IIS 7 Web Deploy with MSBuild (TeamCity) ?
28
votes
31answers
3k views
What are the cool and interesting things that you do during build-automation? [closed]
I am just curious to see what others are doing during build-automation other than usual compile, build, run-tests, etc tasks that might be helpful and inspirational for others to consider and look ...
28
votes
12answers
14k views
Use SVN Revision to label build in CCNET
I am using CCNET on a sample project with SVN as my source control. CCNET is configured to create a build on every check in. CCNET uses MSBuild to build the source code.
I would like to use the ...
28
votes
7answers
25k views
Copy all files and folders using msbuild
Just wondering if someone could help me with some msbuild scripts that I am trying to write. What I would like to do is copy all the files and sub folders from a folder to another folder using ...
28
votes
5answers
5k views
MSBuild does not contain a value for the “VCTargetsPath” property
I recently installed the Visual Studio 11 Developer Preview to try it out, and now my VS 2010 projects won't open. Instead, I get the following error message:
MSBuild does not contain a value for ...
28
votes
2answers
6k views
MsBuild and MsDeploy with multiple environments
Are there good patterns for mapping solution configurations to environments and using MsDeploy for packaging per environment?
Shortest version: Grab this file, and try to change the .msbuild file so ...
27
votes
19answers
5k views
Should I switch from nant to msbuild?
I currently use nant, ccnet (cruise control), svn, mbunit. I use msbuild to do my sln build just because it was simpler to shell out.
Are there any merits to switching my whole build script to ...
27
votes
2answers
8k views
How to suppress specific MSBuild warning
Is there any way to disable specific MSBuild warning (e.g. MSB3253) when running MSBuild from command line? My build script calls msbuild.exe much the following way:
msbuild.exe MySolution.sln ...
26
votes
3answers
10k views
How can I get current directory in msbuild script?
In my msbuild script I need to pass the full directory as a parameter. How can get it?
Example: I am running the script from C:\dev, I want a relative path temp, so I am after C:\dev\temp
Note: I ...
25
votes
5answers
13k views
MSBuild Task syntax for deleting files
I'm trying to write a MSBuild Task that deletes the Obj directory and PDBs from my bin folder on my production build scripts and can't seem to get it to work right.
Does anyone have an example where ...
25
votes
5answers
10k views
How can I get MSBUILD to evaluate and print the full path when given a relative path?
How can I get MSBuild to evaluate and print in a <Message /> task an absolute path given a relative path?
Property Group
<Source_Dir>..\..\..\Public\Server\</Source_Dir>
...
25
votes
3answers
7k views
Is it possible to build MSBuild files (visual studio sln) from the command line in Mono?
Is it possible to build Visual Studio solutions without having to fire up MonoDevelop?
25
votes
6answers
14k views
Should I compile with /MD or /MT?
In Visual Studio, there's the compile flags /MD and /MT which let you choose which kind of C runtime library you want.
I understand the difference in implementation, but I'm still not sure which one ...
25
votes
2answers
2k views
How do I deploy using MSDeploy in Team Build 2010 using the WMSVC service and NTLM authentication?
I am trying to deploy using Team Build 2010 to a Windows Server 2008 R2 web server. My build server agent is setup to run under a Windows domain account. I have successfully given this domain account ...
23
votes
3answers
10k views
msbuild, defining Conditional Compilation Symbols
I'm possibly just blind, but is there a command line to specify conditional compilation symbols in MSBUILD?
I currently have this Line in my buildscript:
SET ...