NuGet
NuGet Server
Porting NuGet Package
NuGet Export
# 1. 確定 Internet 是可用的
# 2. 將目錄 packages 複製到離線的 dotnet 環境
cd <project-root>
mkdir packages
dotnet restore --packages ./packages
NuGet Import
- 因為是離線環境,建議將內建的 nuget
# 不需要 Internet
cd <project-root>
tar xzf packages.tar.gz
dotnet restore -s ./packages
# 關閉內建的 nuget.org
dotnet nuget list source
dotnet nuget disable source "nuget.org"