ASP.NET MVC Content / Themes / Base Directory

What is the purpose of the Content / Themes / base directory in an ASP.NET MVC application? I see that he has some images (which, as far as I can tell, are not used); and a bunch of jQuery CSS files.

What are these files for? Are they used by default in the new ASP.NET MVC application?

+6
source share
1 answer

jQuery UI is included in new ASP.NET MVC projects; These files are used by all the various widgets. If you are not going to use the jQuery user interface or if you want to create a custom download package (accessible from their website), you can delete all these files (and the links to them in the layout / main page file).

+8
source

Source: https://habr.com/ru/post/888695/


All Articles