-
Notifications
You must be signed in to change notification settings - Fork 4.2k
System.CommandLine update #76948
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
System.CommandLine update #76948
Conversation
…uild 20250121.2 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.607102
…uild 20250122.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.607201
| // LSP server doesn't have the pieces yet to support 'balanced' mode for source-generators. Hardcode us to | ||
| // 'automatic' for now. | ||
| var globalOptionService = exportProvider.GetExportedValue<IGlobalOptionService>(); | ||
| var globalOptionService = exportProvider.GetExportedValue<Microsoft.CodeAnalysis.Options.IGlobalOptionService>(); |
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.
After removing the Cli prefix (to make sure we don't break every single System.CommandLine user), Microsoft.CodeAnalysis.Options.Option<T> conflicts with System.CommandLine.Option<T>. I decided to remove the using Microsoft.CodeAnalysis.Options line and specify full name here as other solutions would require more changes.
This PR consists of dotnet#76851 (the maestro PR) and actual changes required to update S.CL. # Conflicts: # eng/Version.Details.xml # eng/Versions.props
* Update dependencies from https://github.com/dotnet/command-line-api build 20250303.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.615301 * Update dependencies from https://github.com/dotnet/command-line-api build 20250317.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.616701 * Update dependencies from https://github.com/dotnet/command-line-api build 20250318.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.616801 * Update dependencies from https://github.com/dotnet/command-line-api build 20250320.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.617001 * Update dependencies from https://github.com/dotnet/command-line-api build 20250324.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.617401 * Update dependencies from https://github.com/dotnet/command-line-api build 20250408.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.620801 * Update dependencies from https://github.com/dotnet/command-line-api build 20250409.2 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.620902 * Update dependencies from https://github.com/dotnet/command-line-api build 20250410.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.621001 * System.CommandLine update (#76948) This PR consists of #76851 (the maestro PR) and actual changes required to update S.CL. # Conflicts: # eng/Version.Details.xml # eng/Versions.props * fix the build? --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Joey Robichaud <jorobich@microsoft.com>
This PR consists of #76851 (the maestro PR) and actual changes required to update S.CL.