MSBuild is a XML-based build platform from Microsoft.
130
votes
6answers
16k 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?
85
votes
12answers
9k 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 ...
46
votes
4answers
11k 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 ...
46
votes
11answers
6k views
Best practices for large solutions in Visual Studio (2008)
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 ...
42
votes
3answers
15k 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 ...
42
votes
8answers
11k 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 ...
42
votes
13answers
13k 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 ...
37
votes
2answers
3k 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. ...
36
votes
4answers
10k 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 ...
35
votes
12answers
18k 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 ...
35
votes
9answers
18k 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 ...
33
votes
5answers
9k 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 ...
32
votes
8answers
5k 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 ...
28
votes
6answers
18k 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 ...
25
votes
4answers
2k views
What's the correct way to use NuGet, MSBuild, and 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 ...
25
votes
18answers
4k 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 ...
24
votes
4answers
6k 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 ...
23
votes
31answers
3k views
What are the cool and interesting things that you do during build-automation?
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 ...
23
votes
3answers
5k 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)\**\*.*" ...
23
votes
11answers
11k 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 ...
22
votes
11answers
14k 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 ...
21
votes
2answers
3k 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 ...
20
votes
6answers
6k views
How can you publish a ClickOnce application through CruiseControl.NET?
I have CruiseControl.NET Version 1.4 set up on my development server. Whenever a developer checks in code, it makes a compile.
Now we're at a place where we can start giving our application to the ...
19
votes
2answers
2k 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...
...
19
votes
4answers
3k 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 ...
18
votes
7answers
8k views
MSBuild — Use the .csproj file or roll your own?
OK, so I readily concede that I'm a newbie when it comes to continuous integration.
That being said, I'm trying to set up a CC.NET environment to educate myself, but I'm having trouble finding the ...
18
votes
7answers
3k views
Is nAnt still supported and suitable for .net 3.5/VS2008?
I am using MSBuild to build my stuff. I want to use CruiseControl.net as by Build Server.
Now, CCNET refers nAnt a lot, but it looks as if ccnet can do most of the stuff nant could do through the ...
17
votes
1answer
440 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 ...
17
votes
6answers
5k 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 ...
17
votes
9answers
6k 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 ...
17
votes
3answers
4k 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 ...
17
votes
4answers
6k views
How to use MSBuild to deploy an ASP.NET MVC application
I'm a complete noob with respect to msbuild but am encouraged to use it based on a previous answer to a question I posted a few days back.
Anyhow, I'm looking for some recommendations on getting ...
17
votes
3answers
4k views
Delphi MSBuild Build Configurations From Command Line
Delphi 2009 uses build configurations. When you create a new project you have two default build configurations "Debug" and "Release".
Now I asked myself how to automate builds using MSBuild (which is ...
17
votes
4answers
5k views
Pre-build MSBuild task to update AssemblyInfo not in sync with built exe
I am using a pre-build task in Visual Studio 2008 that invokes msbuild:
C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets ...
17
votes
4answers
5k views
How to get the Windows SDK folder in MSBuild?
What would be the way to retrieve the Windows SDK folder in an MSBuild task?
Using the generateBootstrapper task I'm creating a bootstrapper for my setup to be able to install the pre-requisites. ...
17
votes
3answers
4k 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?
16
votes
3answers
3k 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 ...
15
votes
3answers
6k views
Visual Studio 2010, how to build projects in parallel on multicore
I have a big solution with more than 40 projects. Almost half of them are test projects.
In my project we use both Code Contracts, Code Analysis, Style Analysis.
I want to be able to build the ...
15
votes
2answers
3k views
What does BootstrapperPackage mean inside the *.csproj project
I am upgrading lots of C# projects from vs.net 2008 to vs.net 2010 rc. I notice that the upgrade creates a BootstrapperPackage section inside the *.csproj file (include Microsoft.NET.Framework.3.5 and ...
15
votes
2answers
3k views
Making TeamCity integrate the Subversion build number into the assembly version
I want to adjust the output from my TeamCity build configuration of my class library so that the produced dll files have the following version number: 3.5.0.x, where x is the subversion revision ...
15
votes
1answer
3k 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:
...
15
votes
10answers
3k views
Integrating MSBuild into Visual Studio
I'm a solo developer running Visual Studio 2008 and looking into MSBuild to improve my build process.
Almost all of the tutorials I've found so far have plenty of information about writing a build ...
15
votes
4answers
2k views
What are the best books for learning MSBuild? [closed]
I am working to redevelop our build/deploy system, and in aid of this I want to get a book that will cover what I need to do.
We will be using MSBuild, followed up by MSDeploy (web app) upon ...
14
votes
2answers
3k views
How-To Integrate IIS 7 Web Deploy with MSBuild (TeamCity)
How-To Integrate IIS 7 Web Deploy with MSBuild (TeamCity) ?
14
votes
12answers
8k views
What's the best way to get TFS to output each project to its own directory?
I'm putting a large codebase into Team Foundation Server. I would like the build process to create a "ready to deploy" build of our projects.
The normal way we've been doing this is to have each ...
14
votes
6answers
7k views
Use 32bit “Program Files” directory in msbuild
In 64 bit versions of windows, 32 bit software is installed in "c:\program files (x86)". This means you cannot use $(programfiles) to get the path to (32 bit) software. So I need a $(ProgramFiles32) ...
14
votes
5answers
6k 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>
...
14
votes
6answers
6k views
Advantages of using MSBuild or NAnt versus running DevEnv.exe from command-line
Can anyone explain what advantages there are to using a tool like MSBuild (or NAnt) to build a collection of projects versus running DevEnv.exe from the command-line?
A colleague I had worked with in ...
14
votes
5answers
13k 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 ...
13
votes
1answer
952 views
Exclude .svn from _bin_deployableAssemblies directory?
In VS 2010 for ASP.NET MVC 3 project there is an option to add a "Deployable Dependencies" folder (_bin_deployableAssemblies) (click right button on web project), files contained in this directory ...