Add NuGet.config

This commit is contained in:
Lucas Girouard-Stranks
2021-03-03 19:06:52 -05:00
parent d23e9a9c7d
commit 239fa04ca1
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />
<!-- Automatically check for missing packages during build -->
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>