I learned something new (for myself) but it could be something that you already know. Anyways, I just wish to share it with you in case 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 these simple yet handy steps as explained below:
- Launch Visual Studio 2008 Command prompt from Start -> All Applications -> Microsoft Visual Studio 2008 -> Visual Studio Tools -> Visual Studio 2008 Command Prompt
- 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:

- Press enter and your build is started. It's quick and easy. You can make it a batch script too.
- Output is shown on the command prompt itself as shown:

Enjoy. Happy coding! 
P.S: If you are aware of a much better idea, kindly let me know.
EDIT: Thanks to @Cdhowie for the below tip.
If you are on Linux, then you can use xbuild command. If you are in the same directory as the solution, then the xbuild command automatically takes it for building (only if one solution is present) without any additional arguments being passed.
Filed under: C#, CodeProject, Dotnet
Tagged: .NET, blog, C#, codeproject, Dotnet, tips
