查看当前可用的安装源:
Get-PackageSource
添加源:
Register-PackageSource -Location https://www.nuget.org/api/v2 -name nuget.org -Trusted -ProviderName NuGet
安装包:
Install-Package itext7 -Scope CurrentUser
卸载包:
Uninstall-Package iTextSharp
查看当前可用的安装源:
Get-PackageSource
添加源:
Register-PackageSource -Location https://www.nuget.org/api/v2 -name nuget.org -Trusted -ProviderName NuGet
安装包:
Install-Package itext7 -Scope CurrentUser
卸载包:
Uninstall-Package iTextSharp