如何使用 Microsoft.Build.BuildEngine 发布 ClickOnce 应用程序
我有一个 WPF ClickOnce 应用程序,我正在尝试使用 Microsoft.Build.BuildEngine 构建它。
我相信我的问题实际上归结为“如何使用 Microsoft.Build.BuildEngine 执行命令行 /target:publish”?
我已尝试以下操作
projectToBuild.SetProperty("PublishUrl", myPublishUrl);
projectToBuild.Targets.AddNewTarget("publish");
,但我实际上只是根据我设置来发布 ClickOnce 应用程序的命令行属性来猜测这些属性。
I have a WPF, ClickOnce application that I am trying to build using the Microsoft.Build.BuildEngine.
I believe my question actually boils down to "how do I do the command line /target:publish using Microsoft.Build.BuildEngine"?
I've tried the following
projectToBuild.SetProperty("PublishUrl", myPublishUrl);
projectToBuild.Targets.AddNewTarget("publish");
but I'm really just guessing at those properties based on the command line properties I'm setting to publish the ClickOnce application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Targets.AddNewTarget 似乎是创建新目标的机制。
构建目标的机制似乎是使用 .Build() 上的字符串参数:
The Targets.AddNewTarget appears to be the mechanism for creating a new target.
It appears that the mechanism to build to a target is to use the string parameter on the .Build():