You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the gulp task from a newly installed windows machine, it will complain that the nuget provider is not installed and apparently install it. But it doesn't really work. It looks like this:
The provider 'nuget v2.8.5.208' is not installed.
nuget may be manually downloaded from https://oneget.org/Microsoft.PackageManagement.NuGetProvider-2.8.5.208.dll and installed.
Would you like PackageManagement to automatically download and install 'nuget' now?
[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Error: Get-Package : Unable to find package providers (NuGet).
At C:\websites\LiuSitecore\node_modules@pentia\sitecore-package-manager\powershell-scripts\install-package.ps1:16 char:21
When running the gulp task from a newly installed windows machine, it will complain that the nuget provider is not installed and apparently install it. But it doesn't really work. It looks like this:
One needs to run
Register-PackageSource -Name "NuGet" -Location https://api.nuget.org/v3/index.json -ProviderName "NuGet"
To get the same question and make it work. Then one can remove the additionally added "NuGet" source and run the task again and it works.
This could be stated in the documentation as a help for new users.
The text was updated successfully, but these errors were encountered: