21 lines
852 B
XML
21 lines
852 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<configuration>
|
||
|
|
<!--
|
||
|
|
Packages are pulled through Soroush's self-hosted Nexus pull-through mirror
|
||
|
|
(https://mirror.soroushasadi.com), which proxies api.nuget.org and is reachable from Iran
|
||
|
|
when direct nuget.org access is throttled/blocked. Anonymous read.
|
||
|
|
To build against nuget.org directly instead, swap the source below.
|
||
|
|
-->
|
||
|
|
<packageSources>
|
||
|
|
<clear />
|
||
|
|
<add key="nexus" value="https://mirror.soroushasadi.com/repository/nuget-group/index.json" protocolVersion="3" />
|
||
|
|
<!-- Fallback (often unreachable from Iran):
|
||
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> -->
|
||
|
|
</packageSources>
|
||
|
|
<packageSourceMapping>
|
||
|
|
<packageSource key="nexus">
|
||
|
|
<package pattern="*" />
|
||
|
|
</packageSource>
|
||
|
|
</packageSourceMapping>
|
||
|
|
</configuration>
|