-
Notifications
You must be signed in to change notification settings - Fork 40
Remove dotnet-core feed #1038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/2.1
Are you sure you want to change the base?
Remove dotnet-core feed #1038
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Removes the deprecated dotnet-core feed and adds two Azure DevOps feeds for package restore.
- Replace the old dotnet-core URL with the
dotnet-eng
feed - Add the
myget-legacy
feed alongside the existing public feed
Comments suppressed due to low confidence (1)
build/sources.props:8
- [nitpick] There are no tests or validation steps to ensure that the updated restore sources are applied correctly; consider adding an integration test or build verification to catch misconfigurations.
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json;
@@ -5,8 +5,9 @@ | |||
<RestoreSources>$(DotNetRestoreSources)</RestoreSources> | |||
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'"> | |||
$(RestoreSources); | |||
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json; | |||
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider updating any relevant project documentation or README to reflect the new restore sources so team members are aware of the added feeds.
Copilot uses AI. Check for mistakes.
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'"> | ||
$(RestoreSources); | ||
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json; | ||
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json; | ||
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json; | ||
https://pkgs.dev.azure.com/dnceng/public/_packaging/myget-legacy/nuget/v3/index.json; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Hardcoding these URLs may complicate future updates; consider extracting feed URLs into a named MSBuild property for easier reuse and maintenance.
Copilot uses AI. Check for mistakes.
No description provided.