Files
hamkadr/nuget.docker.config
T

23 lines
818 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
NuGet sources for the Docker image build (Linux .NET — runs `dotnet restore`
inside the SDK container). Nexus nuget-group is primary; Liara is kept as a
fallback so a single mirror outage doesn't break the build. nuget.org is
filtered in Iran, so it is intentionally not listed.
-->
<configuration>
<packageSources>
<clear />
<add key="nexus"
value="https://mirror.soroushasadi.com/repository/nuget-group/index.json"
protocolVersion="3" />
<add key="liara"
value="https://package-mirror.liara.ir/repository/nuget/index.json"
protocolVersion="3" />
</packageSources>
<config>
<add key="http_retry_count" value="8" />
<add key="http_retry_delay_milliseconds" value="1000" />
</config>
</configuration>