8 references to GetCSharpAnalyzerOptions
Microsoft.CodeAnalysis.CSharp.Features (8)
src\Analyzers\CSharp\Analyzers\CodeStyle\CSharpAnalyzerOptionsProvider.cs (6)
102=> GetCSharpAnalyzerOptions(context.Options, context.SemanticModel.SyntaxTree); 105=> GetCSharpAnalyzerOptions(context.Options, context.Node.SyntaxTree); 108=> GetCSharpAnalyzerOptions(context.Options, context.Tree); 111=> GetCSharpAnalyzerOptions(context.Options, context.SemanticModel.SyntaxTree); 114=> GetCSharpAnalyzerOptions(context.Options, context.Operation.Syntax.SyntaxTree); 117=> GetCSharpAnalyzerOptions(context.Options, syntaxTree);
src\Analyzers\CSharp\Analyzers\UseImplicitlyTypedLambdaExpression\CSharpUseImplicitlyTypedLambdaExpressionDiagnosticAnalyzer.cs (1)
41var option = analyzerOptions.GetCSharpAnalyzerOptions(semanticModel.SyntaxTree).PreferImplicitlyTypedLambdaExpression;
src\Analyzers\CSharp\Analyzers\UsePrimaryConstructor\CSharpUsePrimaryConstructorDiagnosticAnalyzer.cs (1)
266var styleOption = options.GetCSharpAnalyzerOptions(reference.SyntaxTree).PreferPrimaryConstructors;