6 writes to IndentationSize
Microsoft.CodeAnalysis.EditorFeatures (1)
Options\TextBufferOptionProviders.cs (1)
37IndentationSize = indentSize,
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
DocumentationComments\OmniSharpDocumentationCommentOptionsWrapper.cs (1)
29IndentationSize = lineFormattingOptions.IndentationSize,
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp.CSharp (1)
Formatting\OmniSharpSyntaxFormattingOptionsFactory.cs (1)
84IndentationSize = indentationSize,
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorCSharpFormattingInteractionService.cs (1)
103IndentationSize = indentationOptions.IndentationSize,
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
945IndentationSize = options.TabSize,
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\LineFormattingOptions.cs (1)
26IndentationSize = options.GetOption(FormattingOptions2.IndentationSize, language);
7 references to IndentationSize
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Formatting\InferredIndentationTests.cs (1)
56Assert.Equal(4, options.IndentationSize);
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\VSTypeScript\VSTypeScriptFormattingService.cs (1)
29IndentSize: lineFormattingOptions.IndentationSize);
Microsoft.CodeAnalysis.Workspaces (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (3)
68var indentation = indentationLevel * options.IndentationSize; 119indentation % Options.IndentationSize == 0; 123var indentationLevel = indentation / Options.IndentationSize;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\FormattingOptions2.cs (1)
36"indent_size", LineFormattingOptions.Default.IndentationSize, FormattingOptionGroups.IndentationAndSpacing, isEditorConfigOption: true)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\SyntaxFormattingOptions.cs (1)
40public int IndentationSize => LineFormatting.IndentationSize;