2026-05-28 14:31:12 +03:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2026-05-28 14:35:55 +03:30
|
|
|
<!-- NuGet config for CI: routes all restores through the local Nexus mirror.
|
2026-05-28 14:31:12 +03:30
|
|
|
Usage: dotnet restore --configfile nuget.mirror.config
|
2026-05-28 14:35:55 +03:30
|
|
|
Nexus fetches from nuget.org on first request, then caches locally.
|
|
|
|
|
DO NOT use for local development (mirror must be running on the server). -->
|
2026-05-28 14:31:12 +03:30
|
|
|
<configuration>
|
|
|
|
|
<packageSources>
|
|
|
|
|
<clear />
|
2026-05-28 16:28:18 +03:30
|
|
|
<!-- nuget-group aggregates nuget.org-proxy (Liara) + nuget-runflare-proxy (Runflare).
|
|
|
|
|
If Liara is down, Nexus automatically falls back to Runflare. -->
|
2026-05-31 11:06:24 +03:30
|
|
|
<add key="nexus-nuget" value="https://mirror.soroushasadi.com/repository/nuget-group/index.json" protocolVersion="3" />
|
2026-05-28 14:31:12 +03:30
|
|
|
</packageSources>
|
|
|
|
|
<config>
|
|
|
|
|
<add key="http_retry_count" value="8" />
|
|
|
|
|
<add key="http_retry_delay_milliseconds" value="1000" />
|
|
|
|
|
</config>
|
|
|
|
|
</configuration>
|