i am using
System.Web.Optimization.JsMinify()
& System.Web.Optimization.CssMinify()
in order to minify js files & css files and it's working ok.
After using those two functions > in chrome developer tools > sources > there is a new folder (with capital first letter) > in it there is a "bundle" folder and in it > the two min files.
Without the minification process there is no folder "bundle", i am wondering who is responsible of creating this folder and name it with capital first letter?
Without minification, the tree folder will look like that:
<name of the project with first lowercase letter>\*.js
With minification, (another folder is getting add, the tree folder will look like that:
<name of the project with first capital letter>\bundle\*.js