10-12-2022, 12:25 AM
How do I install a NuGet package .nupkg file locally?
NuGet Package
|
10-12-2022, 12:25 AM
How do I install a NuGet package .nupkg file locally?
To install a local .nuget package file:
1. Menu Tools -> NuGet. 2. Optionally select or create a folder in the combo box, for example Local. 3. In the package name field enter the package name as always, and append command line --source and the folder path. Install. For example, to install C:\Test\nuget\fuzzysharp.2.0.2.nupkg: FuzzySharp --source C:\Test\nuget Then use it in script like always. Example: /*/ nuget Local\FuzzySharp; /*/ --source also can be an URL. Not tested.
10-12-2022, 10:17 AM
It worked great thanks.
|
« Next Oldest | Next Newest »
|