在 Visual Studio 中组织 Javascript 文件

发布于 2024-08-21 10:48:38 字数 323 浏览 2 评论 0原文

对其他人如何在 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 技术交流群。

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

发布评论

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

评论(1

巴黎盛开的樱花 2024-08-28 10:48:38

本文介绍了您想要执行的操作的一个很好的解决方案:

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).

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