如何缩小 .net AXD 资源

发布于 2024-09-01 06:45:43 字数 154 浏览 6 评论 0原文

我正在开发一个大型 .NET 项目。我目前正在使用 YUI 压缩器为 JS 和 CSS 文件创建一个自动压缩器。经过一些研究,我发现项目中最重的文件实际上是.NET资源(如MS ajax文件)。它们非常大而且没有缩小。

我想知道,有什么办法可以缩小它们吗?

谢谢

I am working on a big .NET project. I am currently creating an automated minifier for JS and CSS files using YUI compressor. After doing some research, I found that the heaviest files in the project are actually .NET resources (Like MS ajax file). They are very big and unminified.

I am wondering, is there any way to minify them?

Thanks

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

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

发布评论

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

评论(2

如何视而不见 2024-09-08 06:45:43

是的 - 肯定有一种方法可以为您的 ASP.NET 应用程序缩小和/或组合任何 JavaScript 和/或级联样式表。

但在我删除一些链接之前,等等...如果您正在使用一些主要的 JavaScript 框架,例如 jQuery、MSAjax 等等...它们通常都有可供下载的缩小版本...以及 其中一些可在 CDN 上使用 ..这意味着您不需要在解决方案中缩小/组合它们。

以下是 MS CDN 上缓存的主要 JavaScript 库的列表

现在,最后提供一些有关如何缩小/组合 ASP.NET 解决方案的信息。

此链接有一些文档,介绍如何创建一个 MSBuild.xml 文件,用于定义 YUICompressor.NET 的所有配置设置/选项。

此链接是我制作的视频,介绍如何使用 TFS2008 和持续集成执行此操作。

Yep - there's definitely a way to minify and/or combine any JavaScript and/or Cascading Style Sheets for your ASP.NET application.

But before I drop some links, etc... if you're using some of the major JavaScript framework's, like jQuery, MSAjax, whatever.. they all usually have minified version available to download .. and some of them are available on CDNs .. which means you don't need to minify/combine them in your solution.

Here is a list of major JavaScript libraries cached on the MS CDN.

Now, finally for some info about how to minify/combine ASP.NET solutions.

This link has some documentation about how to make an MSBuild.xml file which is used to defines all the configuration settings/options for YUICompressor.NET.

While this link is a video I made about how to do this with TFS2008 and Continuous Integration.

ㄟ。诗瑗 2024-09-08 06:45:43

您是否正在尝试压缩 JavaScript 或任何其他类型的文件?

如果您希望压缩 JavaScript 文件,实际上也可以压缩 ASP.NET AJAX 库。这是标准做法,大多数大型 JS 库在部署之前都会进行压缩。

Are you trying to compress JavaScript or any other type of files?

If you are looking forward to compress JavaScript files, you can actually go ahead and compress ASP.NET AJAX libraries as well. This is a standard practice and most large JS libraries are compressed prior to deployment.

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