MVC 3 System.Web.Optimization 捆绑单个文件
在 MVC3 C# 中,我正在尝试新的 System.Web.Optimization Bundles JSminify & CssMinify 包(.NET 4.5 框架的一部分)。
我有一个主要捆绑包。在我网站的一个页面上,我希望仅包含该页面的单个 .js 文件。我希望它像捆绑一样缩小,但不需要捆绑。
这怎么能做到呢?
- 另外,这个包的源代码和文档是否可用?
In MVC3 C# I'm trying the new System.Web.Optimization Bundles JSminify & CssMinify package (part of the .NET 4.5 framework).
I have one main Bundle. On one page in my website, I wish to include a single .js file only for that page. I would like to have it minified like the bundles, but it does not need to be bundled.
How can this be done?
- Also, is the source and documentation available for this package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要向其中添加另一个捆绑包。
例如:
然后在您的页面中:
参考:
- http://www.dotnetexpertguide.com/2011/ 12/bundling-and-minification-aspnet-mvc4.html
更多阅读:
I think you need to add another bundle to it.
For example:
Then in your page:
Reference:
- http://www.dotnetexpertguide.com/2011/12/bundling-and-minification-aspnet-mvc4.html
More readings: