web-dev-qa-db-ja.com

MSBuild.exeを使用してリリースモードでC#ソリューションをビルドする

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");
100
user3682000
MsBuild.exe [Path to your solution(*.sln)] /t:Build /p:Configuration=Release /p:TargetFramework=v4.0
212
Abdullah Saleem