使用MSBuild.exe在发布模式下构buildC#解决scheme

我能够使用MSBuild.exebuild立一个解决scheme,但我的问题是我只能设法让它build立在DEBUG模式。 我需要使用MSBUILD在发布模式下构build我的解决scheme。

这是我试过的

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"); 
 MsBuild.exe [Path to your solution(*.sln)] /t:Build /p:Configuration=Release /p:TargetFramework=v4.0 
  1. selectconfigurationpipe理器并检查参数,例如debug / release或x86 / new。 2.从debuggingbutton(Visual Studio框架)附近的下拉菜单中select“发布”,而不是debugging。
  2. 点击生成,然后build立你的应用程序名称。
  3. 转到您的程序文件夹 – > bin-> release-> yourApplicationName.exe。
  4. yourApplicationName.exe已准备好使用。