I have several files that I want to include in a bundle using Web Optimizations but one of the files is currently breaking after minification. Is there a way to include that file in the bundle un-minified while still having all the other files be minified?
Something to the effect of this:
bundleCollection.Add( new ScriptBundle( "Name" ).Include( fileArray ) ).IncludeUnMinified( fileArray2 );