10 references to IndentBlock
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Formatting\CSharpFormattingOptions.cs (2)
142/// <inheritdoc cref="CSharpFormattingOptions2.IndentBlock"/> 143public static Option<bool> IndentBlock { get; } = CSharpFormattingOptions2.IndentBlock.ToPublicOption();
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpSyntaxFormattingOptions.cs (1)
107(options.GetOption(CSharpFormattingOptions2.IndentBlock) ? IndentationPlacement.BlockContents : 0) |
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (3)
Formatting\FormattingMultipleSpanTests.cs (1)
101{ CSharpFormattingOptions2.IndentBlock, false }
Formatting\FormattingTests.cs (2)
1055{ IndentBlock, false }, 1092{ IndentBlock, false },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
98yield return Setting.Create(CSharpFormattingOptions2.IndentBlock, CSharpVSResources.Indent_block_contents, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
14get { return GetBooleanOption(CSharpFormattingOptions2.IndentBlock); } 15set { SetBooleanOption(CSharpFormattingOptions2.IndentBlock, value); }
Options\Formatting\IndentationViewModel.cs (1)
86Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.IndentBlock, CSharpVSResources.Indent_block_contents, BlockContentPreview, this, optionStore));