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!