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.
当我使用 xbuild 时,它总是使用调试作为目标,我如何让它使用发布?
例如,我希望像
xbuild --release
但这不起作用
看起来你应该能够这样做:
xbuild /p:Configuration=Release MySolution.sln
查看MSBuild 参考以获取其他选项 - 我不确定 xbuild 是否 100% 符合 MSBuild 支持的内容,但它可能对您有所帮助。