Sudhakar
Sudhakar

Reputation: 21

Rebuild solution in vs2008 without visual studio?

How can we Rebuild solution in vs2008 without visual studio?

Upvotes: 1

Views: 306

Answers (1)

si618
si618

Reputation: 16848

Not sure I fully understand the question, but you can run MSBuild from the command line to rebuild most projects in a solution.

MSBuild.exe Path\To\Solution.sln /t:Rebuild /p:Configuration=Release

If you don't run from the Visual Studio command prompt, you can find MSBuild.exe for .NET 3.5 under

  • %FrameworkDir%\%Framework35Version% or
  • C:\Windows\Microsoft.NET\Framework\v3.5

Upvotes: 2

Related Questions