NuGet.config 861 B

12345678910111213141516171819
  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="moeathome" value="https://www.myget.org/F/moeathome-public/api/v3/index.json" />
  8. <add key="corefxlab" value="https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
  9. <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  10. </packageSources>
  11. <config>
  12. <add key="repositoryPath" value="..\packages" />
  13. </config>
  14. <packageRestore>
  15. <!-- Automated package restore in VS does not work at this time with
  16. this project and it causes build failures in VS. Disable it. -->
  17. <add key="automatic" value="False" />
  18. </packageRestore>
  19. </configuration>