NuGet.config 668 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <!-- NOTE: Leave this file here and keep it in sync with list in dir.props. -->
  4. <!-- The command-line doesn't need it, but the IDE does. -->
  5. <packageSources>
  6. <clear />
  7. <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  8. </packageSources>
  9. <config>
  10. <add key="repositoryPath" value="..\packages" />
  11. </config>
  12. <packageRestore>
  13. <!-- Automated package restore in VS does not work at this time with
  14. this project and it causes build failures in VS. Disable it. -->
  15. <add key="automatic" value="False" />
  16. </packageRestore>
  17. </configuration>