Asp.net 网站构建和发布

发布于 2024-09-14 01:23:41 字数 169 浏览 11 评论 0 原文

如何使用 Cruise Control.net 构建和发布 ASP.NET 网站(Microsoft Vishul Studio->文件->新建->网站)。 实际上,ASP.NET 网站不包含 .csproj 和 .sln 文件。

请提供解决方案和建议。

提前致谢....

How to build and publish the ASP.NET web site(Microsoft Vishul Studio->File->New->Website) using Cruise Control.net.
Actually, ASP.NET Web site doesnot contain .csproj and .sln file.

Please Provide the solution and Suggestion for same.

Thanks in advance....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幼儿园老大 2024-09-21 01:23:41

您可以将网站添加到空解决方案(为您提供 .sln 文件),然后使用 执行任务 针对解决方案文件,或使用 NAntContrib 的 > msbuild 任务。

对于部署,由于它是一个网站,因此您有两个选择: copy< /a> 将文件直接复制到目标位置,或者首先使用 这篇 MSDN 文章

您的构建文件将大致包含以下任务:

  1. MsBuild
  2. (可选) aspnet_compile
  3. 复制到目标位置

将其插入巡航控制系统中,您应该可以开始使用(尽管我建议针对 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:

  1. MsBuild
  2. (Optional) aspnet_compile
  3. Copy to destination location

Plug that into cruise control and you should be good to go (though I recommend separate build configurations for 1 and 2 vs 3).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文