2016-04-20 03:42:24 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
|
|
<packageSources>
|
|
|
|
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
|
|
|
|
<clear />
|
|
|
|
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
|
2017-06-05 22:32:36 +03:00
|
|
|
<add key="appveyor feed" value="https://ci.appveyor.com/nuget/flurl" />
|
2016-04-20 03:42:24 +03:00
|
|
|
</packageSources>
|
2016-07-18 18:25:49 +03:00
|
|
|
<packageRestore>
|
|
|
|
<!--Allow NuGet to download missing packages -->
|
|
|
|
<add key="enabled" value="True" />
|
|
|
|
<!-- Automatically check for missing packages during build in Visual Studio -->
|
|
|
|
<add key="automatic" value="True" />
|
|
|
|
</packageRestore>
|
2016-04-20 03:42:24 +03:00
|
|
|
<disabledPackageSources>
|
|
|
|
<add key="Microsoft and .NET" value="true" />
|
|
|
|
</disabledPackageSources>
|
|
|
|
</configuration>
|