Skip to content

Commit

Permalink
fix: Report not implemented diagnostics for generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored and ebariche committed Sep 21, 2021
1 parent 0ac1241 commit 4377f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Analyzers/UnoNotImplementedAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class UnoNotImplementedAnalyzer : DiagnosticAnalyzer
public override void Initialize(AnalysisContext context)
{
context.EnableConcurrentExecution();
context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None);
context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.Analyze | GeneratedCodeAnalysisFlags.ReportDiagnostics);

context.RegisterCompilationStartAction(context =>
{
Expand Down

0 comments on commit 4377f08

Please sign in to comment.