Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 6094734

Browse files
author
Mike Krüger
authored
Merge pull request #348 from Therzok/conc
[C#] Add missing EnableConcurrentExecution
2 parents c2e069e + 6695dc8 commit 6094734

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

RefactoringEssentials/CSharp/Diagnostics/Synced/PracticesAndImprovements/ReplaceWithOfTypeAny.cs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class ReplaceWithOfTypeAnyAnalyzer : DiagnosticAnalyzer
2525

2626
public override void Initialize(AnalysisContext context)
2727
{
28+
context.EnableConcurrentExecution();
2829
context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None);
2930
context.RegisterSyntaxNodeAction(
3031
(nodeContext) =>

0 commit comments

Comments
 (0)