Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MSBuild リリース モードを使用しようとしていますが、常に既定でデバッグになります。理由はありますか?
msbuild LP.sln /p:buildmode=release
次の投稿を確認しました。
MSBuild タスク - 1 つのソリューションがデバッグではなくリリースでビルドされているため、ビルドが失敗する
MSBuild タスク構成プロパティ
それは、そのビルドスクリプトの内容によって異なります。Visual Studio C# は、パラメーターConfigurationを使用してReleaseとDebugを切り替えます。ビルドモードではありません。次のことを試してみてください。
msbuild LP.sln /p:Configuration=Release