Files
coverlet/nuget.config
T
Andrew Arnott d5d0a0b59c Add nuget.config file (#446)
Every repo should have this to turn OFF any unauthorized feeds that may be configured machine wide, and to ensure that any custom feeds required are recorded in source control for everyone.
2019-06-21 22:13:42 -07:00

8 lines
191 B
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>