Skip to content

Commit bf53024

Browse files
committed
Fix bug
1 parent ad431ae commit bf53024

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

codehelp/CodeHelpers/LogGenerator/Analyzer/LogGeneratorAnalyzer.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ public override void Initialize(AnalysisContext context)
2525
context.EnableConcurrentExecution();
2626
context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None);
2727
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);
2931
}
3032

3133
private static void AnalyzeMembers(SymbolAnalysisContext context)

codehelp/CodeHelpers/WPILib.CodeHelpers.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<LangVersion>Latest</LangVersion>
99
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
1010
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
11+
<Version>1.0.1</Version>
1112
</PropertyGroup>
1213

1314
<ItemGroup>

0 commit comments

Comments
 (0)