Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a solution with lots of solution folders with lots of c# projects inside them.

How do I build/rebuild only one of those projects from command line?

I guess there's some way to do it using msbuild but I don't know anything about msbuild.

Thanks!

share|improve this question
something like "msbuild TargetProj.csproj /t:rebuild" – driushkin Apr 5 '11 at 20:31

3 Answers

up vote 10 down vote accepted

You can simply call msbuild and pass it the .csproj/.vbproj project file that you want to build, and it will do only that one.

So something like:

cd \MySolution
msbuild .\Project1\Project1.csproj
share|improve this answer
I've tried that and get: error MSB4019: The imported project "C:\Windows\Microsoft.NET\Framework\v3.5\Workflow.Targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. – Toto Apr 5 '11 at 20:44
1  
Are you using the right msbuild version? Make sure you open the Visual Studio 2010 Command Prompt, so it doesn't use an old .NET Framework builder. If that's not the problem, then there might be a problem with the Workflow installation itself, and I wouldn't know where to go from there. – Joe Enos Apr 5 '11 at 22:40
That's it! I was running from Windows Command Prompt which apparently is running other msbuild version installed. How do I locate the proper msbuild.exe I need to run? Because I want to create a compilation .bat and run it from Windows Command Prompt (not VS2010 Command Prompt). Note: the reason for this is that it's a huge solution and I only want to build a couple of projects as part of a deployment script (to deploy to a QA environment from my development workstation). – Toto Apr 6 '11 at 16:01
2  
The msbuild is just in your .NET framework directory (probably C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319). So you can add this directory to your global PATH (and remove the other framework versions), or even better would be to just use the full filepath when calling it in your batch file, like C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\msbuild.exe myProject.csproj – Joe Enos Apr 6 '11 at 16:36
3  
I would suggest you do your builds through a continuous integration server such as Jenkins. This will allow you to organize your builds better and have more insight into whether they build successfully or not. – Bernard Apr 6 '11 at 16:39
show 1 more comment

You can consult this reference to learn more about using MSBuild from the command-line. Here is an example of what you need:

MSBuild.exe MyProject.proj /t:rebuild
share|improve this answer
I've tried that and get: error MSB4019: The imported project "C:\Windows\Microsoft.NET\Framework\v3.5\Workflow.Targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk – Toto Apr 5 '11 at 20:45
+1 for the target parameter /t:rebuild... – Toto Apr 6 '11 at 16:04

I've got it, quats were wrong, here is a correct one: echo off call %windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe "C:\Projects\TFS\NYCE.LOGIC 3.x Release\3.1SR2\Solutions\NyceLogicAllProjects.sln" /property:Configuration=Debug pause

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.