Implemented interface member:
property
Project
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllContext.Project
36 references to Project
Microsoft.CodeAnalysis.Analyzers (6)
MetaAnalyzers\Fixers\AnalyzerReleaseTrackingFix.FixAllProvider.cs (3)
33diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 39Project project = fixAllContext.Project; 41diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics));
MetaAnalyzers\Fixers\DefineDiagnosticDescriptorArgumentsCorrectlyFix.CustomFixAllProvider.cs (3)
46diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 52Project project = fixAllContext.Project; 54diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics));
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
src\Analyzers\Core\CodeFixes\MatchFolderAndNamespace\AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
33FixAllScope.Project => await fixAllContext.GetAllDiagnosticsAsync(fixAllContext.Project).ConfigureAwait(false), 45fixAllContext.Project.Solution,
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeFixes\FixAllContextExtensions.cs (1)
13=> FixAllHelper.GetDefaultFixAllTitle(context.Scope, title: context.DiagnosticIds.First(), context.Document!, context.Project);
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.FixAllProvider.cs (1)
45title, suppressionFixer, fixAllContext.Project,
src\Analyzers\Core\CodeFixes\MatchFolderAndNamespace\AbstractChangeNamespaceToMatchFolderCodeFixProvider.CustomFixAllProvider.cs (2)
33FixAllScope.Project => await fixAllContext.GetAllDiagnosticsAsync(fixAllContext.Project).ConfigureAwait(false), 45fixAllContext.Project.Solution,
Microsoft.CodeAnalysis.PublicApiAnalyzers.CodeFixes (10)
AnnotatePublicApiFix.cs (4)
194diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 201Project project = fixAllContext.Project; 203diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 204title = string.Format(CultureInfo.InvariantCulture, PublicApiAnalyzerResources.AddAllItemsInProjectToTheApiTitle, fixAllContext.Project.Name);
DeclarePublicApiFix.cs (4)
339diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 346Project project = fixAllContext.Project; 348diagnosticsToFix.Add(new KeyValuePair<Project, ImmutableArray<Diagnostic>>(fixAllContext.Project, diagnostics)); 349title = string.Format(CultureInfo.InvariantCulture, PublicApiAnalyzerResources.AddAllItemsInProjectToTheApiTitle, fixAllContext.Project.Name);
NullableEnablePublicApiFix.cs (2)
130projectsToFix.Add(fixAllContext.Project); 131title = string.Format(CultureInfo.InvariantCulture, PublicApiAnalyzerResources.EnableNullableInProjectToTheApiTitle, fixAllContext.Project.Name);
Microsoft.CodeAnalysis.Workspaces (7)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
94if (kvp.Key.Project != fixAllContext.Project)
CodeFixes\FixAllOccurrences\FixAllContext.cs (3)
231if (this.Project.Language != document.Project.Language) 268if (this.Project.Language != document.Project.Language) 315if (this.Project.Language != project.Language)
CodeFixes\FixAllOccurrences\FixAllContext.DiagnosticProvider.cs (1)
75var project = fixAllContext.Project;
CodeFixes\FixAllOccurrences\FixAllContextHelper.cs (1)
29var project = fixAllContext.Project;
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeFixes\FixAllContextExtensions.cs (1)
13=> FixAllHelper.GetDefaultFixAllTitle(context.Scope, title: context.DiagnosticIds.First(), context.Document!, context.Project);
Microsoft.Interop.ComInterfaceGenerator (3)
src\libraries\System.Runtime.InteropServices\gen\Common\FixAllContextExtensions.cs (3)
22return await context.GetAllDiagnosticsAsync(context.Project).ConfigureAwait(false); 41.Where(p => p.Language == context.Project.Language); 56return ImmutableArray.Create(context.Project);
Microsoft.Interop.LibraryImportGenerator (4)
Analyzers\CustomMarshallerAttributeFixer.cs (1)
94return await context.GetAllDiagnosticsAsync(context.Project).ConfigureAwait(false);
src\libraries\System.Runtime.InteropServices\gen\Common\FixAllContextExtensions.cs (3)
22return await context.GetAllDiagnosticsAsync(context.Project).ConfigureAwait(false); 41.Where(p => p.Language == context.Project.Language); 56return ImmutableArray.Create(context.Project);