Add global NuGet.config that turns off the user and machine configs

This commit is contained in:
Eric Erhardt 2017-05-15 16:28:00 -05:00
Родитель 858f928450
Коммит 50bccd08f7
1 изменённых файлов: 11 добавлений и 0 удалений

11
NuGet.config Normal file
Просмотреть файл

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Don't use any higher level config files.
Our builds need to be isolated from user/machine state -->
<fallbackPackageFolders>
<clear />
</fallbackPackageFolders>
<packageSources>
<clear/>
</packageSources>
</configuration>