Click here to Skip to main content
15,881,693 members
Articles / All Topics

Simple way to build solution with out opening VS (TIP)

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
21 Nov 2015LGPL31 min read 2.8K  
Dear Reader, I learned some thing new (for myself) but could be an old news for you. Any ways just wish to share it with you all in case if you did not know It may so happen that at times we need to build dependent projects/solutions... Read More

Dear Reader,

I learned some thing new (for myself) but could be an old news for you. Any ways just wish to share it with you all in case if you did not know

It may so happen that at times we need to build dependent projects/solutions when we are working on other projects. It’s very clumsy to open those dependents projects/solutions in visual studio and then compile due to time consumption or repeated steps.

 Instead follow this simple yet handy steps as explained below: 

  1. Launch Visual Studio 2008 Command prompt from Start -> All Applications -> Microsoft Visual Studio 2008 -> Visual Studio Tools -> Visual Studio 2008 Command Prompt
  2. Once the command window opens up, type msbuild as command and drag and drop the required csproj or solution file from your views (Windows explorer window) into the command window as shown:
  3. Press enter and your build is started. Its quick and easy. You also can make it a batch script too.
  4. Output is shown on the command prompt itself as shown:

Enjoy, happy coding  :)

P.S: if you are aware of much better idea kindly do let me know.

EDIT: Thanks to @Cdhowie for below tip.

If your on Linux, then you can use xbuild command. If your in the same directory as the solution, then the xbuild command automatically takes it for building (only if one solution is present) with out any additional arguments being passed.


Filed under: C#, CodeProject, Dotnet Tagged: .NET, Blog, C#, codeproject, Dotnet, tips

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Siemens
India India
A .net developer since 4+ years, wild, curious and adventurous nerd.

Loves Trekking/Hiking, animals and nature.

A FOSS/Linux maniac by default Wink | ;)

An MVP aspirant and loves blogging -> https://adventurouszen.wordpress.com/

Comments and Discussions

 
-- There are no messages in this forum --