如何将 ASP.NET 网站编译为单个 DLL 文件?

发布于 2024-07-07 06:23:26 字数 159 浏览 12 评论 0原文

我终于完成了我的网站。 我发表了它,我对结果感到惊讶。 虽然App_Code编译成单个DLL文件,但每个页面的代码后面都编译成自己的DLL文件。 我该如何使它成为一个 DLL 文件?

另外,是否可以将所有内容(SubSonic、AJAX 等)编译到同一个 DLL 文件中?

I have finally finished my web site. I published it, and I was surprised at the results. Although the App_Code compiled into a single DLL file, every page's code behind compiled into its own DLL file. How do I make it so that it is one DLL file?

Also, is it possible to compile everything (SubSonic, AJAX, etc.) into that same single DLL file?

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

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

发布评论

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

评论(4

吝吻 2024-07-14 06:23:26

您可能更喜欢使用 Web 应用程序项目样式。

您可以使用ILMerge 将程序集合并为一个。

You might prefer to use the web application project style for that.

You can use ILMerge to merge assemblies into one.

倾其所爱 2024-07-14 06:23:26

我们的方法是向我们的站点添加一个部署项目:

http ://msdn.microsoft.com/en-us/asp.net/aa336619.aspx

The way we do it is by adding a deployment project to our site:

http://msdn.microsoft.com/en-us/asp.net/aa336619.aspx

提赋 2024-07-14 06:23:26

要实现此目的,您必须将项目转换为 Web 应用程序项目(在 Visual Studio 2005 SP1 和 Visual Studio 2008 中受支持)。

转换过程并不难,但您需要将所有内容移出 app_code 文件夹,因为 WAP(Web 应用程序项目)项目在 app_code 中没有代码。

执行此操作后,项目内的所有内容都会编译为单个 DLL 文件,但任何外部程序集仍包含在其自己的 DLL 文件中,但也有一些选项。

To accomplish this you will have to covert your project into a Web Application Project (Supported in Visual Studio 2005 SP1 and Visual Studio 2008).

The process of converting is not that hard, but you will need to move everything out of the app_code folder, as WAP (Web Application Projects) projects do not have code inside app_code.

Once you do this, everything inside your project is compiled into a single DLL file, any external assemblies are still contained in their own DLL files though, but there are options around that as well.

殤城〤 2024-07-14 06:23:26

我们为网站使用构建脚本并从命令行运行 aspnet_merge.exe。 这是 MSDN 页面: http://msdn.microsoft.com/en-us /library/bb397866.aspx

We use build scripts for our websites and run the aspnet_merge.exe from the command line. Here's the MSDN page: http://msdn.microsoft.com/en-us/library/bb397866.aspx

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