-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Improve performance of fix all that only changes syntax #79108
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
...oslynAnalyzers/Microsoft.CodeAnalysis.Analyzers/Core/FixAnalyzers/FixerWithFixAllAnalyzer.cs
Outdated
Show resolved
Hide resolved
…nalyzers/FixerWithFixAllAnalyzer.cs
Noticed this while running my new fixer. |
src/EditorFeatures/Core/Suggestions/RefineUsingCopilot/RefineUsingCopilotCodeAction.cs
Outdated
Show resolved
Hide resolved
…singCopilotCodeAction.cs
…oslyn into refactoringPerf
newSolution = await fixMultipleCodeAction.GetChangedSolutionInternalAsync( | ||
fixAllState.Solution, progress, postProcessChanges: false, cancellationToken).ConfigureAwait(false); | ||
fixAllState.Solution, progress, cancellationToken).ConfigureAwait(false); |
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.
this logic moved into FixMultipleCodeAction
bbafac7
to
f772949
Compare
@dotnet/roslyn-ide ptal. |
@ToddGrun ptal. |
Task<CodeAction?> GetFixAsync(IFixAllContext fixAllContext); | ||
|
||
/// <summary> | ||
/// The sort of cleanup that should automatically be poerformed for this fix all provider. By default this is |
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.
/// The sort of cleanup that should automatically be poerformed for this fix all provider. By default this is | |
/// The sort of cleanup that should automatically be performed for this fix all provider. By default this is |
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.
can fixup later :)
No description provided.