Where is jQuery UI combined package downloaded when insatlled using nuget

asp.net-mvc, css, jquery-ui, nuget

Solution

Have you looked in App_Themes/Default or in Content?

UPDATED

I have git installed, so I can view changes. And this folders were modified 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\

Problem

I have downloaded the jQuery UI Combined package using nuget in my MVC project using the command `Install-Package jQuery.UI.Combined` Now I have to add the `stylesheet(css)` reference of that package in on of my view, but I don't know where the `stylesheet(css)` is downloaded. How can I find the path of all the files downloaded so that I can add the reference of the `stylesheet(css)`??

Original source