Where the jQuery UI bundled package is loaded when it is used as a nuget attribute

I downloaded the jQuery UI bundled package using nuget in my MVC project using the command

Install-Package jQuery.UI.Combined

Now I need to add the stylesheet(css) link for this package in my view, but I don’t know where stylesheet(css) loaded.

How can I find the path for all downloaded files to add stylesheet(css) link ??

+6
source share
2 answers

Have you viewed App_Themes / Default or Content?

UPDATED

I have git installed, so I can view the changes. And these folders were changed after installing this NuGet package:

Solution_folder \ Project_folder \ Content \ Themes \ base \
Solution_folder \ Project_folder \ Content \ Themes \ base \ images \
Solution_folder \ Project_folder \ Scripts \
Solution_folder \ packages \ jQuery.UI.Combined.1.10.4 \ Content \ Content \ Themes \ base \
Solution_folder \ packages \ jQuery.UI.Combined.1.10.4 \ Content \ Content \ Themes \ base \ images \
Solution_folder \ packages \ jQuery.UI.Combined.1.10.4 \ Content \ Scripts \

+6
source

you can use

 Install-Package jQuery.UI.Combined -verbose 

to learn more about what is installed.

If you have already installed the package, you can use:

 Update-Package jQuery.UI.Combined -Verbose -Reinstall 
+8
source

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


All Articles