sources.props 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project>
  2. <Import Project="$(DotNetRestoreSourcePropsPath)" Condition="'$(DotNetRestoreSourcePropsPath)' != ''"/>
  3. <PropertyGroup>
  4. <RestoreSources>
  5. $(DotNetAdditionalRestoreSources);
  6. $(DotNetRestoreSources);
  7. </RestoreSources>
  8. <RestoreSources Condition=" '$(DotNetBuildOffline)' != 'true' ">
  9. $(RestoreSources);
  10. https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
  11. https://api.nuget.org/v3/index.json;
  12. </RestoreSources>
  13. <RestoreSources Condition=" '$(DotNetBuildOffline)' != 'true' AND '$(DisableMyGetRestoreSources)' != 'true' ">
  14. $(RestoreSources);
  15. https://dotnet.myget.org/F/dotnet-core/api/v3/index.json;
  16. https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json;
  17. https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json;
  18. https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json;
  19. https://dotnet.myget.org/F/roslyn/api/v3/index.json;
  20. https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json;
  21. https://vside.myget.org/F/vssdk/api/v3/index.json;
  22. https://vside.myget.org/F/vsmac/api/v3/index.json
  23. </RestoreSources>
  24. <PublicCoreFeedPrefix>https://dotnetcli.blob.core.windows.net/dotnet/</PublicCoreFeedPrefix>
  25. <!-- In an orchestrated build, this may be overriden to other Azure feeds. -->
  26. <DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">$(PublicCoreFeedPrefix)</DotNetAssetRootUrl>
  27. </PropertyGroup>
  28. </Project>