Asp.net 网站构建和发布
如何使用 Cruise Control.net 构建和发布 ASP.NET 网站(Microsoft Vishul Studio->文件->新建->网站)。 实际上,ASP.NET 网站不包含 .csproj 和 .sln 文件。
请提供解决方案和建议。
提前致谢....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将网站添加到空解决方案(为您提供 .sln 文件),然后使用 执行任务 针对解决方案文件,或使用 NAntContrib 的 > msbuild 任务。
对于部署,由于它是一个网站,因此您有两个选择: copy< /a> 将文件直接复制到目标位置,或者首先使用 这篇 MSDN 文章。
您的构建文件将大致包含以下任务:
将其插入巡航控制系统中,您应该可以开始使用(尽管我建议针对 1 和 2 与 3 分别构建配置)。
You can add your web site to an empty solution (giving you a .sln file), then call msbuild.exe using the exec task against the solution file, or use NAntContrib's msbuild task.
For deploying, since it's a website, you have two options: either copy the files directly to the target location, or first precompile with aspnet_compiler.exe, then copy. See this MSDN article on more info on precompiling.
Your build file will contain roughly the following tasks:
Plug that into cruise control and you should be good to go (though I recommend separate build configurations for 1 and 2 vs 3).
请参考msdn链接: http://msdn.microsoft .com/en-us/library/1y1404zt(VS.80).aspx
please refer the msdn link: http://msdn.microsoft.com/en-us/library/1y1404zt(VS.80).aspx