2026-06-03 07:52:42 +03:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2026-06-04 14:36:00 +03:30
|
|
|
<!--
|
|
|
|
|
NuGet source for the Docker image build (Linux .NET — runs `dotnet restore`
|
|
|
|
|
inside the SDK container). Uses the Liara mirror because it serves a complete
|
|
|
|
|
TLS chain. mirror.soroushasadi.com currently serves a leaf-only chain, which
|
|
|
|
|
.NET on Linux rejects with PartialChain (Windows auto-fetches the missing
|
|
|
|
|
intermediate via AIA; Linux does not). Re-add Nexus once nginx serves
|
|
|
|
|
fullchain.pem for mirror.soroushasadi.com.
|
|
|
|
|
-->
|
2026-06-03 07:52:42 +03:30
|
|
|
<configuration>
|
|
|
|
|
<packageSources>
|
|
|
|
|
<clear />
|
2026-06-04 14:36:00 +03:30
|
|
|
<add key="liara"
|
|
|
|
|
value="https://package-mirror.liara.ir/repository/nuget/index.json"
|
2026-06-03 07:52:42 +03:30
|
|
|
protocolVersion="3" />
|
|
|
|
|
</packageSources>
|
|
|
|
|
<config>
|
|
|
|
|
<add key="http_retry_count" value="8" />
|
|
|
|
|
<add key="http_retry_delay_milliseconds" value="1000" />
|
|
|
|
|
</config>
|
|
|
|
|
</configuration>
|