在 Visual Studio 中组织 Javascript 文件
对其他人如何在 Visual Studio 中组织脚本感兴趣吗?
目前,我正在从事的项目有大量的脚本,并且很困惑如何将它们组织成一个安排而不像
<% if (Helper.IsDebug()) { %>
<%=SOME SCRIPT%>
<% } %>
<% if (Helper.IsRelease) { %>
<%=SOME SCRIPT%>
<% } %>
到处都是?是否有一些简单的方法来组织脚本[或一些工具],以便在发布版本上轻松打包、缩小等?
谢谢
Interested how others are organising their scripts in Visual Studio ?
Currently, the project I am working on has a large number of scripts and getting confused how to organise them into an arrangement without something like
<% if (Helper.IsDebug()) { %>
<%=SOME SCRIPT%>
<% } %>
<% if (Helper.IsRelease) { %>
<%=SOME SCRIPT%>
<% } %>
all over the place? Is there some easy way to organise scripts [or some tool] that allows easy packing, minification etc on release build ?
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本文介绍了您想要执行的操作的一个很好的解决方案:
http://encosia.com/2009/05/20/automatically-minify-and-combine-javascript-in-visual-studio/
本质上,对于发布模式构建,您将创建一个预构建事件,使用一种流行的免费压缩工具(如 YUI Compressor)进行组合和缩小。
This article describes a good solution for what you are trying to do:
http://encosia.com/2009/05/20/automatically-minify-and-combine-javascript-in-visual-studio/
Essentially, for a Release mode build, you would create a pre-build event that does the combining and minification using one of the popular, free compression tools (like YUI Compressor).