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