我正在构建一个 .netcore 应用程序并希望将其部署为独立的应用程序。我无权访问构建代理的 nuget 服务器。但是当我使用下面的 dotnet publish 行构建它时,我看到 dotnet.exe 试图获取 nuget 包https://www.nuget.org/packages/microsoft.netcore.app.runtime.win-x64/。
我不希望 dotnet.exe 从 nuget.org(api) 获取它。如何使用其 x64 DLL 部署此应用程序?我已经在构建机器上安装了 .netcore SDK/runtimes。我没有在我计划部署的主机 Windows 服务器上安装 .netcore 运行时 dll。
dotnet publish WorkerService1.csproj -c release -r win-x64 --self-contained true