Ich kann eine Lösung mit MSBuild.exe erstellen, aber mein Problem ist, dass ich es nur schaffen kann, sie im DEBUG-Modus zu erstellen. Ich muss meine Lösung im Release-Modus mit MSBUILD erstellen.
Folgendes habe ich versucht
Process msbuild = Process.Start("C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MsBuild.exe", solutionfilepath + " /P:Config=Release");
und
Process msbuild = Process.Start("C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MsBuild.exe", solutionfilepath + " /P:Configuration=Release");
Antworten:
quelle