I wonder why this is not integrated by default. I'd like to have an item in Windows Explorer's file context menu of a VS solution file to build it.

Is there a tool for this? Or do I have to create this myself?

link|improve this question

1  
Neat idea, but why would you ever need it? – Paolo May 14 '10 at 10:30
Because it is faster than opening the solution and hitting F6. Especially if you have a couple of solutions that need to be rebuilt. – mafutrct May 14 '10 at 12:16
feedback

5 Answers

up vote 9 down vote accepted

MSBuild Shell Extension have been there for years, though it is dead now,

http://msbuildshellex.codeplex.com/

But you can also try out my new project,

http://msbuildlaunchpad.codeplex.com/releases/view/45368

It is still in beta, but it is easier to use. MSBuild Launch Pad

link|improve this answer
Awesome project! – NotDan Feb 24 '11 at 17:09
4  
MSBuildShellExtension has been revived and v2.0 has been released. msbuildshellex.codeplex.com – Rami A. Apr 2 '11 at 7:53
Yes, it is revived. But you can still find something unique in mPad. – Lex Li Apr 3 '11 at 2:06
feedback

It's going to be fairly high maintenance, but not impossible. Open Regedit.exe and locate the HKCR\VisualStudio.csproj.9.0 key. Add the Build verb, make it look similar to this:

[HKEY_CLASSES_ROOT\VisualStudio.csproj.9.0\shell\Build]

[HKEY_CLASSES_ROOT\VisualStudio.csproj.9.0\shell\Build\Command] @="cmd.exe /k c:\temp\build.bat %1"

The cmd.exe /k command opens a console window so that you can read any error message from the build. The c:\temp\build.bat file ought to look similar to this:

call "c:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86
msbuild %1

You probably also want to add the Build key to HKCR\VisualStudio.Launcher.sln so you can build solutions as well. That however is a bit of a version maintenance headache.

link|improve this answer
A possible solution for the version maintenance headache is to write your own launcher who automatically parses the csproj/sln/... files, and then locate the correct msbuild to use. This is what I want to achieve in MSBuild Launch Pad. – Lex Li May 15 '10 at 22:55
feedback

You might be able to cook up something using MSBuild.exe along the lines of

<path_to_msbuild_executable>\MSBuild.exe /p:Configuration="<config>" %1

However, you would have to specify a configuration and then it will be hard to see all the output from the build. I'm not sure this would make all that much sense.

link|improve this answer
Additionally, I'd have to put this in the right place in the registry. I barely remember that this is easy, but it's a hassle nonetheless. – mafutrct May 14 '10 at 12:17
feedback

Here is a project to do it for VS 2003 & 2005. It could easily be altered for 20080 and 2010 too i imagine.

http://www.codeproject.com/KB/winsdk/VS_BuildHere.aspx

link|improve this answer
feedback

There is a collection of registry entries at http://www.nerdpad.com/windows/msbuild-context-menu-build-net-projectsolution-from-explorer that does this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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