简体   繁体   中英

MSBuild builds defaults to debug configuration

I am trying to use MSBuild release mode, but it always defaults to debug. Any idea why?

msbuild LP.sln /p:buildmode=release

I checked through the following posts;

MSBuild task - Build fails because one solution being built in release instead of debug

MSBuild task configuration property

That depends on the contents of that buildscript. Visual Studio C# uses the parameter Configuration to switch between Release and Debug . Not buildmode. You might want to try the following:

msbuild LP.sln /p:Configuration=Release

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM