Visual Studio Web 部署项目自动压缩js和css
有没有办法让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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过向 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.
如果您使用构建服务器(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.
简洁是我们所使用的。
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)