Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
NuGet Package
#1
How do I install a NuGet package .nupkg file locally?
#2
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:
Code:
Copy      Help
/*/ nuget Local\FuzzySharp; /*/
print.it(FuzzySharp.Levenshtein.EditDistance("cat", "cats"));

--source also can be an URL. Not tested.
#3
It worked great thanks.


Forum Jump:


Users browsing this thread: 1 Guest(s)