在 ASP.Net 中发布到生产环境

发布于 2024-11-11 03:42:25 字数 101 浏览 3 评论 0原文

我最近买了一台新计算机,但忘记了如何为我的 ASP.NET 应用程序创建版本。我需要在解决方案资源管理器中生成一个 Release 文件夹。我已将构建从“调试”更改为“发布”。我缺少什么?

I recently got a new computer and forgot how to create a Release for my asp.net app. I need to generate a Release folder in the Solution Explorer. I've changed the build from Debug to Relase. What am I missing?

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

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

发布评论

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

评论(1

执手闯天涯 2024-11-18 03:42:25

默认情况下,ASP.NET 应用程序在构建时将代码直接放置到 bin 目录中(不会有 Debug 或 Release 目录)。因此,如果您将配置更改为“Release”,则应该准备就绪。

编辑:如果您需要将程序集输出到 bin 文件夹下的 Release 文件夹,请打开 Web 应用程序的项目属性,单击构建选项卡,并将输出路径设置从bin更改为bin\Release

By default, ASP.NET applications place code directly to the bin directory (there won't be Debug or Release directories) when built. So, if you changed the configuration to Release, you should be ready to go.

Edit: If you need your assemblies to be output to a Release folder below your bin folder, then open your web app's project properties, click the Build tab, and change the Output Path setting from bin to bin\Release.

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