I'm using ASP.NET MVC 4, .NET 4.5.
Here's the bundle I'm adding:
bundles.Add( new StyleBundle( "~/Content/css" ).Include(
"~/Content/bootstrap/css/bootstrap.css",
"~/Content/bootstrap/css/bootstrap-responsive.css",
"~/Content/site.css" ) );
Here's the link to the CSS that gets generated from this bundle:
<link href="/Content/css?v=8HZAB6C8ZnrIPYNFzMQKt0AR4AUsUYBjxPPkbGSRIZo1" rel="stylesheet">
My problem is I'm modifying bootstrap.css which is part of the bundle and it is not generating a new token for the v querystring var so it pulls up the old version.
I've tried forcing an application restart to get the asp.net optimization framework to figure out that I have changed this file but it's not happening...
Any help is greatly appreciated, Thanks!