I don't want to rely on nuget service for downloading dependency. I want to download and use nuget packages locally in my .Net Core app. Is it possible?
相关问题
- Importing NuGet references through a local project
- Dotnet Core API - Get the URL of a controller meth
- Why am I unable to run dotnet tool install --globa
- Can I use MvcJsonOptions configured during Startup
- Singleton with AsyncLocal vs Scope Service
相关文章
- dotnet restore还原nuget包时无法加载 https://api.nuget.org/
- DotNet Core console app: An assembly specified in
- EF Core 'another instance is already being tra
- Re-target .NET Core to net471, net 472
- How to replace Middleware in integration tests pro
- Why CsvHelper not reading from MemoryStream?
- How to define function that returns html in asp.ne
- Publishing a Self-contained Console app fails
Approach is the same as was before: open your NuGet.config file and add your local feed (path to local folder with pacakages. See Hosting your own Nuget feed doc):
You can modify default NuGet.config file
or create your own file in root folder of your solution.