-
Notifications
You must be signed in to change notification settings - Fork 829
Fix 16071 --- FSharp.DependencyManager.Nuget ignoring sources #16991
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
Conversation
✅ No release notes required |
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.
Regexes are easy, amirite?
/run fantomas |
Co-authored-by: KevinRansom <[email protected]>
Ran fantomas: https://github.com/dotnet/fsharp/actions/runs/8586346201 |
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
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.
Finally a good use case for using copilot within a PR :)
#17003) * Fix 16071 * tweaks * Automated command ran: fantomas Co-authored-by: KevinRansom <[email protected]> --------- Co-authored-by: Kevin Ransom (msft) <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Petr <[email protected]> Co-authored-by: Vlad Zarytovskii <[email protected]>
Fixes: #16071
One of the mechanisms for providing sources to a project file for nuget package resolution is to add a Nuget.config file with add source elements.
In the package manager we use
dotnet nuget list sources -format detailed
to retrieve these sources. The regex for retrieving the uri from the output did not allow for paths containing spaces. This PR fixes the regex to allow for spaces.Todo: