16 lines
657 B
XML
16 lines
657 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!-- NuGet config for Docker builds — routes restores through local Nexus mirror.
|
||
|
|
"mirror" resolves to the Docker host via extra_hosts in docker-compose build sections.
|
||
|
|
DO NOT use for local development (Nexus must be running on the server). -->
|
||
|
|
<configuration>
|
||
|
|
<packageSources>
|
||
|
|
<clear />
|
||
|
|
<add key="nexus" value="http://mirror:8081/repository/nuget-group/index.json"
|
||
|
|
protocolVersion="3" allowInsecureConnections="true" />
|
||
|
|
</packageSources>
|
||
|
|
<config>
|
||
|
|
<add key="http_retry_count" value="8" />
|
||
|
|
<add key="http_retry_delay_milliseconds" value="1000" />
|
||
|
|
</config>
|
||
|
|
</configuration>
|