I have ASP.Net MVC4 site.
I am bundling all my css but its not working. But same thing is working in another application using ASP.Net MVC5
This is my folder structure:-
>>Styles
>>Css
>>Bootstrap_folder>>bootstrap.css
>>site.css
>>font.css
In my BundleConfig.css
bundles.Add(new StyleBundle("~/Styles/Css/cssBundle").Include(
"~/Styles/Css/Bootstrap_folder/bootstrap.css",
"~/Styles/Css/site.css",
"~/Styles/Css/fonts.css"
));
Now when I am running the application, site.css and font.css are included but the css files in bootstrap folder or other are not included.
But same thing is rendering fine in ASP.Net MVC5
I am in need that I should be free to include any subfolder files.