是否可以让 Nant 在 Web 应用程序项目上运行发布
是否可以让 nant 在 mvc 项目或一个好的旧 Web 应用程序项目上运行发布
发布后,将文件通过 FTP 传输到网络服务器
更新:找到了 ftp 问题的解决方案
Nant ftp 任务 谢谢 Paco
我所说的 publich
是否有命令行应用程序或 nant 任务可以像 Visual Studio 一样公开发布...
is it possible to make nant run a publish on mvc project or a good old web application project
and after the publish make nant FTP the files to the web server
UPDATE: found the solution to the ftp problem
Nant ftp task thanks Paco
what i mean by publich
is there a command line application or nant task that can public like visual studio publish...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Visual Studio 发布命令会重建您的解决方案,然后将解决方案目录中的文件复制到新目录。 我使用以下目标来执行几乎相同的操作:
当然,在此目标之前,您必须运行正常的构建过程。
The visual studio publish command rebuilds your solution and then copies the files in the solution directory to a new directory. I use the following target to do almost the same:
Before this target you have to run the normal build procedure of course.
nant 有一个 Ftp 任务。
除此之外,您还必须创建一个脚本来复制所需的文件和目录以及配置文件。 我不会自动执行此操作,因为我想控制数据库更新脚本和 web.config 中的更改。
There is a Ftp Task for nant.
Beside that, you have to create a script that copies the files and directories you need and the config files. I don't do it automatically, because I want to have control over database update scripts and changes in web.config.