我维护了一个通过 ClickOnce 部署到桌面的 Winform 应用程序。目前我使用 Visual Studio 发布向导来提供一个新版本。我想自动化这一步,最好是通过 MSBuild 脚本。这可能吗?
问问题
818 次
1 回答
3
When you invoke msbuild /target:publish at the command line, it tells the MSBuild system to build the project and create a ClickOnce application in the publish folder. This is equivalent to selecting the Publish command in the IDE.
This comes from the MSDN documentation for MSBuild
于 2013-03-22T05:02:20.247 回答