在 ASP.Net 中发布到生产环境
我最近买了一台新计算机,但忘记了如何为我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,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.