NAnt Web 应用程序部署
再会。
我正在尝试使用 NAnt 部署 Web 应用程序。 当前使用 NAnt ZIP 任务对其进行压缩。
我可以尝试从 NAnt 调用 MSDeploy,但我不认为 MSDeploy 是为此类部署编写的。
我也可以尝试使用 NAnt 任务。
有人建议什么方法可以最节省我的时间吗?
Good day.
I'm trying to deploy a web application using NAnt. It is current zipped using the NAnt ZIP task.
I can try calling MSDeploy from NAnt but I don't think MSDeploy was written for such deployments.
I can also try using NAnt task.
Does anybody have suggestions as to what approach can save me the most time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 aspnet 编译器是最简单的方法,它可以让您访问所有 cl 参数,这在 nant 任务中不可用。 不知道为什么会这样。
这就是我所做的,
没什么复杂的。就像魅力一样。
PS 不要忘记执行 iisreset /stop 和 /start
Using the aspnet compiler is the simplest way and gets you access to all cl arguments which is not available on nant tasks. Not sure why it's so.
Here's what I do
Nothing complicated.Works like a charm.
P.S. Dont forget to do a iisreset /stop and /start