Cài đặt NuGet
NuGet được sử dụng có số hiệu phiên bản là 3(v3). Sử dụng trên nền Microsoft PowerShell.
Cài đặt NuGet v3:
1
Register-PackageSource -Name NuGet -Location "https://api.nuget.org/v3/index.json" –ProviderName NuGet -Trusted
Kiểm tra trạng thái cài đặt:
1
Get-PackageSource
Bên cạnh đó cũng có thể thêm Trusted
cho PSGallery
vốn có sẵn trong PowerShell:
1
Register-PSRepository -Default -InstallationPolicy Trusted
Hoặc
1
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Hoặc
1
Register-PSRepository -Name PSGallery -SourceLocation https://www.powershellgallery.com/api/v2/ -InstallationPolicy Trusted
1
Get-PSRepository
1
Get-PackageProvider
Đọc thêm:
This post is licensed under CC BY 4.0 by the author.