RBT
RBT

Reputation: 25897

Nuget package restore path for .NET core dependencies

I've created a .NET core console application on Visual Studio(VS) 2015 Community edition Update 3. I've installed .NET core 1.0.1 Preview 2 Visual Studio 2015 tools.

I know for one thing that while running the .NET Core application for the first time, Visual Studio restores all the .NET Core nuget packages and dependencies in some location on local computer. It is certainly not the root directory of my project as I can observe it myself.

Can anyone help me with the exact path where I can see all the .NET core nuget packages getting downloaded?

Upvotes: 2

Views: 1638

Answers (2)

DavidG
DavidG

Reputation: 118947

You will find all of the common .NET Core packages in C:\Program Files\dotnet\shared.

Upvotes: 2

Bond_009
Bond_009

Reputation: 66

Use this cmd to find the path: dotnet nuget locals global-packages -l

Upvotes: 1

Related Questions