File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ public override void Initialize(AnalysisContext context)
25
25
context . EnableConcurrentExecution ( ) ;
26
26
context . ConfigureGeneratedCodeAnalysis ( GeneratedCodeAnalysisFlags . None ) ;
27
27
context . RegisterSymbolAction ( AnalyzeSymbol , SymbolKind . NamedType ) ;
28
- context . RegisterSymbolAction ( AnalyzeMembers , SymbolKind . Method | SymbolKind . Field | SymbolKind . Property ) ;
28
+ context . RegisterSymbolAction ( AnalyzeMembers , SymbolKind . Method ) ;
29
+ context . RegisterSymbolAction ( AnalyzeMembers , SymbolKind . Field ) ;
30
+ context . RegisterSymbolAction ( AnalyzeMembers , SymbolKind . Property ) ;
29
31
}
30
32
31
33
private static void AnalyzeMembers ( SymbolAnalysisContext context )
Original file line number Diff line number Diff line change 8
8
<LangVersion >Latest</LangVersion >
9
9
<EnforceExtendedAnalyzerRules >true</EnforceExtendedAnalyzerRules >
10
10
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
11
+ <Version >1.0.1</Version >
11
12
</PropertyGroup >
12
13
13
14
<ItemGroup >
You can’t perform that action at this time.
0 commit comments