JavaScript minifyer 可以与 ASP.NET 应用程序的构建集成
受到这个答案的启发..你们能指出吗我想要类似的东西——可以集成到构建脚本中或者直接集成到 Visual Studio 中的东西?
Inspired by this answer.. Can you guys point me to something similar--something that can be integrated into a build-script or perhaps directly into Visual Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Visual Studio 项目使用 MSBuild,因此您可以集成使用您想要的任何 javascript 压缩器的 MSBuild 任务。
这已经在博客上进行了相当广泛的讨论,所以我不会费心在这里提出具体细节......但是快速谷歌搜索产生了一些很好的帖子。
http://www.coderjournal .com/2008/05/how-to-create-a-yui-compressor-msbuild-task/
http://blog.mastykarz.nl/minify-your-javascript-and-save-the- kbs-for-later-imtech-javascript-minificator-free-tool/
Visual Studio projects use MSBuild, so you can integrate an MSBuild task that uses whatever javascript minifier you'd like.
This has been blogged about pretty extensively so I won't bother trying to come up with the specifics here... but a quick google search yielded some good posts.
http://www.coderjournal.com/2008/05/how-to-create-a-yui-compressor-msbuild-task/
http://blog.mastykarz.nl/minify-your-javascript-and-save-the-kbs-for-later-imtech-javascript-minificator-free-tool/
womps 帖子(Nick Berardi 的博客帖子)中的第一个链接使用了 java 的 YUI 压缩器。因此,如果您不想有 java 的额外依赖/安装 java,那么您可以使用最优秀的 YUI Compressor 项目的 .NET 端口做同样的事情 -> YUICompressor for .NET。
也许这可能有帮助:)
*免责声明:我做了大部分的移植。
The first link from womps post (Nick Berardi's blog post) uses the YUI Compressor for java. So if you don't want to have the extra dependency of java / installing java, then you can do the same thing with a .NET port of the most excellent YUI Compressor project -> YUICompressor for .NET.
Maybe that might help :)
*Disclaimer: I did most of that port.