1 write to StartupAnalyzer
Microsoft.AspNetCore.Analyzers.Test (1)
MinimalStartupTest.cs (1)
16StartupAnalyzer = new StartupAnalyzer();
6 references to StartupAnalyzer
Microsoft.AspNetCore.Analyzers.Test (6)
MinimalStartupTest.cs (6)
21StartupAnalyzer.ServicesAnalysisCompleted += (sender, analysis) => Analyses.Add(analysis); 22StartupAnalyzer.OptionsAnalysisCompleted += (sender, analysis) => Analyses.Add(analysis); 23StartupAnalyzer.MiddlewareAnalysisCompleted += (sender, analysis) => Analyses.Add(analysis); 24StartupAnalyzer.ConfigureServicesMethodFound += (sender, method) => ConfigureServicesMethods.Add(method); 25StartupAnalyzer.ConfigureMethodFound += (sender, method) => ConfigureMethods.Add(method); 474var test = new StartupCSharpAnalyzerTest(StartupAnalyzer, TestReferences.MetadataReferences)