Я пытаюсь запустить мое Asp. Net Core MVC Приложение на Raspberry Pi 4. И ошибка сборки говорит:
/opt/dotnet/sdk/3.1.102/NuGet.targets(123,5): error : Unable to load the service index for source http://private-repository/SEM.NuGetServer.v3/feed/index.json. [/home/pi/Desktop/TestPlauder/PlaudertischSoftware/PlaudertischSoftware/PlaudertischSoftware.csproj]
/opt/dotnet/sdk/3.1.102/NuGet.targets(123,5): error : Name or service not known [/home/pi/Desktop/TestPlauder/PlaudertischSoftware/PlaudertischSoftware/PlaudertischSoftware.csproj]
The build failed. Fix the build errors and run again.
И это мой nuget.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="kbciot" value="http://private-repository/SEM.NuGetServer.v3/feed/index.json" protocolVersion="3" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="private package source" value="https://nuget.devexpress.com/xtdT9FsWlktTtkCZagjJFdoTbs5PbjmRTqTWb586HWdsn2l4Ho/api" />
</packageSources>
</configuration>
Понятия не имею, как это исправить.