Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.Net Core - Where to find the Nuget packages installed list in the project

I have an ASP.Net Core 2.2 application.

MyApp.Sln

  • MyApp.API (ASP.Net Core 2.2 API Based project)
  • MyApp.Services (CL-Class Library)
  • MyApp.Contracts - (CL-Class Library)
  • My.Services.Tests - (CL-Class Library)

The above projects have different libraries(NuGet packages) installed

In .Net framework we used to have packages.config thats lists the nuget packages with the version details.

Where I can find the same details in .Net Core 2.2 ?

Because different project in one sln should not have different version of NuGet.

Thanks!

like image 276
Kgn-web Avatar asked Dec 10 '22 02:12

Kgn-web


1 Answers

You can right Click in Your project in Solution explorer and Edit(For example MyApp.Services.csproj) in this file you will See Packages

like image 144
Behnam_Taheri Avatar answered Dec 30 '22 13:12

Behnam_Taheri