Questions related to the ASP.NET Microsoft.AspNet.Web.Optimization nuGet package (System.Web.Optimization namespace), which supports bundling and minification of javascript and css files. Project page: http://aspnetoptimization.codeplex.com/
0
votes
1answer
42 views
Is there any way to read System.Web.Optimization contents from code-behind?
Is there any way to read System.Web.Optimization contents from code-behind?
I tried poking around the dll, but I couldn't find a way to read the bundle contents (as far as I can tell, it was meant to ...
0
votes
1answer
28 views
Get ASP.NET bundle URL for use with CDN?
I'm using the ASP.NET bundling feature and want to know how I can get the URL returned by the Render helpers such as Scripts.Render("~/bundles/scripts").
Currently the optimized output is has a ...
2
votes
1answer
48 views
ASP.NET MVC Optimization: Bundling without minifying?
Is it possible to bundle a set of scripts without minifying them? I just want to combine several third-party script files where I never need the non-minified versions. Some of these have warned ...
2
votes
1answer
70 views
How does a bundle (Sytem.Web.Optimization) generate the build fingerprint for bundle-links?
In MVC-4, bundles for compressing CSS & Js files can be linked in a layout file with this Razor syntax: @Scripts.Render("~/JavaScripts")
This generates a link in the layout file that includes a ...
0
votes
0answers
89 views
Index was outside the bounds of the array in @Scripts.Render
For each controller have a folder (with the same name controler), and for each action a script file.
For each file is creating a bundle following the pattern: ...
0
votes
1answer
44 views
Rendering DynamicFolderBundle?
I'm trying to add a bundled folder so I don't have to manually add each new .less file to the usual bundles, but I don't know how to render it out.
In the BundleConfig,
...
0
votes
0answers
56 views
Ignoring a single file in the bundle
Set up my bundles as follows:
bundles.UseCdn = true;
var scriptJquery = new ScriptBundle(Bundles.Scripts.Jquery, "//code.jquery.com/jquery-1.9.1.js")
{
CdnFallbackExpression = ...
1
vote
1answer
25 views
How to test BundleConfig
I have a problem with my bundles. Files .min is not being generated as reported on this link.
I have to create a test for it. How to do this?
[TestInitialize]
public void Setup()
{
...
0
votes
1answer
57 views
Asp.net Bundle not render files .min
I've read and done the steps in this, this and this post!
Still can not use the Asp.net Bundles!
In Global.asax.cs
BundleConfig.RegisterBundles(BundleTable.Bundles, Server);
and ...
public ...
1
vote
2answers
177 views
What is the proper use of IItemTransform for correcting paths in CSS Bundling with ASP.NET Web Optimization and BundleTransformer?
I'm presently working on a project that uses the ASP.NET Web Optimization library (v 1.1.0-Beta1) in conjunction with the Bundle Transformer extension (v 1.7.3-Beta1 for core, 1.7.0-Beta1 for LESS) ...
0
votes
1answer
454 views
System.Web.Optimization and Microsoft.Web.Optimization won't load reference in vs 2012
I'm working on an MVC 4 project started in Visual Studio 2010. Right now I'm working on a machine with Visual Studio 2012 as I don't have access to the machine I was originally working on. I tried all ...
0
votes
1answer
103 views
How to manage sub-domains on winhost with URL Rewrite and ASP.NET Optimization's bundles
I am using ASP.NET MVC4 with WinHost.
Just like the question asked here, I ran into the same issue:
I'm trying out WinHost and I'm running into some issues with
sub-domains. On WinHost, you can ...
0
votes
2answers
388 views
How to add CDN to bundle.config in asp.net webforms bundling
I am using asp.net bundling / minification and putting everything in bundle.config like this:
<styleBundle path="~/css/css">
<include path="~/css/bootstrap.css" />
<include ...
4
votes
2answers
194 views
Asp.Net MVC 4 bundle don't provide <script> section attributes?
My actual question is:
How can I create <script> section with attributes using Asp.Net Mvc bundle optimization?
I need to be able to get something like this in my result html:
<script ...
1
vote
1answer
149 views
Using Bundling (from Systelm.Web.Optimization) in ASP.Net WebForms causes issue [duplicate]
I am trying to put in some optimization into my application by using BundlesCollection in my ASP.Net 4.0 application.
My style bundle contains 6 css files. The files are included into a master page. ...
2
votes
1answer
161 views
How can I dynamically add bundles after Application_Start has occurred?
I have an asp.net MVC4 web application that uses style bundling for themes. I have a physical themes folder structure like so...
Themes\
_Base\
Theme1\
Theme2\
...\
Each themes ...
3
votes
2answers
278 views
Customize cache-busting in system.web.optimization
When rendering the styles from bundles when optimization is on you get this:
<link href="/Content/themes/base/css?v=UM624qf1uFt8dYtiIV9PCmYhsyeewBIwY4Ob0i8OdW81" rel="stylesheet" type="text/css" ...
3
votes
2answers
176 views
Skip single file from Minifying?
I'm trying to use ASP.Nets BundleTable to optomize some javascript files, but have run into a problem where a specific addon (jQuery-Timepicker) fails to work when the code has been minified. See ...
2
votes
1answer
97 views
Web.Optimizations - any way to get all includes from a Style/Script Bundle?
I'm working with some dynamic bundling which adds CSS and JS files based on configuration.
I spin up a new StyleBundle such that:
var cssBundle = new StyleBundle("~/bundle/css");
Then loop through ...
4
votes
1answer
574 views
MVC4 StyleBundle doesn't render the bundle in the correct order
I'm trying to render a bundle of css files, but the output is in wrong order. I've tried the solution @ MVC4 Beta Minification and Bundling: Ordering files and debugging in browser , but it didn't ...
2
votes
1answer
172 views
MVC Bundling and cacheing problems
I'm using System.Web.Optimization with a MVC 4 application, which is hosted on a farm behind some loadbalancers. There are some clients that access this web through a cacheing proxy on their side. We ...
0
votes
1answer
460 views
ASP.NET MVC 4.0 Bundles with Multiple Absolute URLs for Styles
I have some of my application "Styles" and "Scripts" are referred from different environment applications.
local-sites are referring from http://localhost:123/mystyles/default.css
Dev site is ...
1
vote
1answer
94 views
Conditional minification for specific bundles using System.Web.Optimizations
I am making use of System.Web.Optimizations BundleConfig in my project. I'm running into an issue with a specific jQuery plugin that I'm using on my site. If I add the file to my ScriptBundle it works ...
1
vote
1answer
344 views
Bundling not working for mapped virtual directory
We have a site where CSS and JavaScript are bundled into /Content/ and /Scripts/ directories respectively. Both of these are also mapped targets of virtual directories in a separate domain, which is ...
3
votes
1answer
247 views
System.Web.Optimization bundles are empty when running in a virtual directory
I'm having problems when deploying my application to a server using a virtual directory in IIS.
I have configured the same files to run under the default website in a virtual directly and also in a ...
0
votes
1answer
96 views
Mvc Bundling, Cache with Content or Cache with file name?
I'm deciding to remove all versions from static content that has been referenced in my Mvc Web Application. but I need caching.
I want to know does the browser cache contents by file name or by ...
10
votes
1answer
224 views
How to temporarily disable bundling and minification at runtime?
I need to be able to temporarily disable bundling and minification for a single request for the purpose of debugging JavaScript & CSS Issues. I would like to do this at run time by adding a ...
0
votes
1answer
247 views
Workaround for Bundling under Virtual Path Providers
I found that under ASP.NET MVC 4 you can't define a bundle of Javascripts or CSSs if their virtual path is managed by a VirtualPathProvider. I mean, if directory "~/Static/" is mapped to a VPP you ...
1
vote
1answer
118 views
How do I include a ScriptBundle in a user control?
I have some legacy ASP.NET WebForms code that uses RegisterClientScriptInclude in a class that inherits from UserControl. I want to replace the multiple calls to RegisterClientScriptInclude with a ...
0
votes
1answer
158 views
using System.Web.Optimization can I mix css and .less files in the same bundle?
It does not look like this is possible because LessTransform will be applied only once all the files have been merged and minified.
public class LessTransform : IBundleTransform
{
public void ...
1
vote
1answer
149 views
Bundling css/js only in debug mode
Is there a way to make MVC4's bundling system include scripts/styles only in debug mode?
For example, I have lots of debug mode scripts which help me debug my system. I obviously don't want them ...
0
votes
0answers
79 views
Failure to minify css ignoreMe
When I'm trying to minify my css file a got a error.
run-time error CSS1054: JavaScript error in expression property: Variable 'ignoreMe' has not been declared: ignoreMe
I found this page:
...
2
votes
1answer
388 views
Async loading of javascript files using MVC4 Bundling and HTML5 async attribute
HTML5 has an async attribute for script files, to enable async loading.
<script type="text/javascript" src="myScript.js" async></script>
I can take advantage of this with my MVC4 ...
3
votes
3answers
1k views
Absolute URL in ASP bundle
I use a jQuery library for Google Maps, and it depends on the Google scripts to be loaded first. I'd like to be able to include both in the bundle as such:
bundles.Add(new ...
0
votes
2answers
134 views
Bundling and Minification finding wrong file
So I'm having trouble all of a sudden where when I do my bundling and minification it pulls up the wrong file version.
bundles.Add(new ...
2
votes
3answers
488 views
ASP.NET Optimization not transforming LESS into CSS
I'm having difficulty getting LESS files to be transformed to CSS using .NET's new Optimization Framework (for minification and bundling).
I have a directory which contains only LESS files.
I use ...
0
votes
2answers
281 views
.Net MVC Controller force cache refresh depending on situation
I have a controller action that returns the Average of a series of measurements from a group of tests. The controller basically gets the data-points from all the tests within the group specified and ...
4
votes
1answer
1k views
MVC4 Bundle minification doesn't work with javascript reserved words
Using the latest version of MVC4 I can't minify javascript when it contains reserved words as key names!
See the error below with the valid javascript that should have been minified.
Does anyone ...
2
votes
2answers
2k views
How to bundle resources for ASP.NET MVC areas?
How would you do the resource bundling for asp.net mvc areas? Is this regulated by the ASP.NET MVC framework just like the AreaRegistration for routes?
I could make a BundleConfig class inside the ...
4
votes
2answers
1k views
ASP.NET MVC4 bundling CSS Some on CDN some local to server?
I am looking into the ASP.NET MVC4 System.Web.Optimization bundling and was wondering how would you go about serving up some CSS files from a CDN and others local to a server?
Is that possible?
It ...
1
vote
1answer
119 views
Using ASP.NET Javascript Bundles from the controller
I realise this breaks the MVC pattern, but there is a viable reason for doing it this way in an application I am currently building :)
What I am trying to do is output a JavaScript bundle directly ...
8
votes
1answer
1k views
How to resolve Antlr3 dependency hell
I have a asp.net MVC 4 project with MEF and RavenBD.
When the project loads it throws this exception : Could not load file or assembly Antlr3.Runtime.dll
I have found that both RavenDB and WebGrease ...
3
votes
2answers
275 views
ASP.NET 4.5 Bundling in Debug Mode - Stale Resources
Is there any way we can make the ASP.NET 4.5 Bundling functionality generate GUID's as part of the querystring when running in debug mode (e.g bundling turned OFF).
The problem is when developing ...
5
votes
2answers
4k views
Minified script only in MVC4 BundleConfig
I am adding the following ScriptBundle in BundleConfig:
bundles.Add(new ScriptBundle("~/bundles/javascript").Include(
"~/Scripts/jquery-1.*",
"~/Scripts/load-image.min.js",
...
0
votes
2answers
969 views
ScriptBundle dependencies
I'm having difficulties getting the ScriptBundle to work properly (if this is supposed to work at all). What I'm trying to do is add another bundle (jQuery) as a dependency to my bundle, like so:
...
3
votes
1answer
368 views
MVC4 Bundling Cache Headers
I want to change the cache headers sent from a bundle request. Currently it is varying by User-Agent but I don't want it to, is there a way to change the headers sent by a bundle request?
After a ...
1
vote
1answer
399 views
Produce a “type” attribute in the “script” tag when using Scripts.Render in ASP.NET MVC 4
Is it possible to configure Scripts.Render in ASP.NET MVC 4 to produce a "type" attribute in the "script" tag?
If so, how?
Thanks in advance,
Ryan
0
votes
2answers
380 views
How to bundle specific CSS according to browser version?
I'm using MVC4 StyleBundle to bundle up a bunch of CSS. There is one CSS that's only needed for IE 9 or lower.
In my BundleConfig class of RegisterBundles method, I have:
if ...
1
vote
1answer
132 views
System.Web.Optimization making function argument names stay the same for certain functions
With ASP.NET Bundling with a ScriptBundle
function StartController($scope, $location, $rootScope) {}
is transformed to
function StartController(n,t,i) {}
However, as I am using AngularJs, for ...
2
votes
0answers
421 views
MVC4 Bundling Wildcards - * vs. {version}
I understand and fully appreciate the new bundle wildcard {version} regex, as it will continue to pick up your script and style libraries even after updating, etc. The problem is that I cannot get it ...


