Rebuild solution in vs2008 without visual studio?
How can we Rebuild solution in vs2008开发者_JAVA百科 without visual studio?
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%
orC:\Windows\Microsoft.NET\Framework\v3.5
精彩评论