NuGet.config 962 B

1234567891011121314151617181920
  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="orleans-prerlease" value="https://dotnet.myget.org/F/orleans-prerelease/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. <add key="imageSharp" value="https://www.myget.org/F/imagesharp/api/v3/index.json"/>
  11. </packageSources>
  12. <config>
  13. <add key="repositoryPath" value="..\packages" />
  14. </config>
  15. <packageRestore>
  16. <!-- Automated package restore in VS does not work at this time with
  17. this project and it causes build failures in VS. Disable it. -->
  18. <add key="automatic" value="false" />
  19. </packageRestore>
  20. </configuration>