Visual Studio Web 部署项目自动压缩js和css

发布于 2024-08-21 07:19:20 字数 50 浏览 5 评论 0原文

有没有办法让web部署项目在构建时自动压缩js和css文件?我怎样才能自动化这个过程?

Is there a way to make the web deployment project automatically compress js and css files when building it? how can I automate this process?

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

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

发布评论

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

评论(3

潜移默化 2024-08-28 07:19:20

您可以通过向 Web 部署项目添加 MSBuild 任务来实现此目的,该任务将为您压缩 JS 和 CSS。 这是一个使用 YUI 压缩器的示例

您还可以使用 Exec MSBuild 任务 执行命令行压缩工具。

You can accomplish that by adding an MSBuild task to your web deployment project that would compress your JS and CSS for you. Here is an example using the YUI compressor.

You could also do something similar with other compression libraries by using the Exec MSBuild task to execute a command line compression tool.

冬天的雪花 2024-08-28 07:19:20

如果您使用构建服务器(Team Build 或其他),您可能可以找到或肯定构建一个自定义任务来处理此问题。

If you are using a build server (Team Build or something else) you can probably find, or certainly build, a custom task to handle this.

仙女 2024-08-28 07:19:20

简洁是我们所使用的。

http://github.com/clearwavebuild/Pithy/tree/2009.12.22.1000

也有很好的预处理器支持。 (无点CSS)

Pithy is what we use.

http://github.com/clearwavebuild/Pithy/tree/2009.12.22.1000

Has nice preprocessor support, too. (dotlesscss)

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