使用MSBuild.exe在发布模式下构建C#解决方案

时间:2014-08-25 21:03:37

标签: c# msbuild release mode solution

我能够使用MSBuild.exe构建解决方案,但我的问题是我只能设法让它在DEBUG模式下构建。我需要使用MSBUILD在发布模式下构建我的解决方案。

这是我尝试过的

Process msbuild = Process.Start("C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MsBuild.exe", solutionfilepath + " /P:Config=Release");

Process msbuild = Process.Start("C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MsBuild.exe", solutionfilepath + " /P:Configuration=Release");

1 个答案:

答案 0 :(得分:209)

MsBuild.exe [Path to your solution(*.sln)] /t:Build /p:Configuration=Release /p:TargetFramework=v4.0