10 references to IndentBlock
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
106(options.GetOption(CSharpFormattingOptions2.IndentBlock, fallbackOptions.Indentation.HasFlag(IndentationPlacement.BlockContents)) ? IndentationPlacement.BlockContents : 0) |
Formatting\CSharpFormattingOptions.cs (2)
142/// <inheritdoc cref="CSharpFormattingOptions2.IndentBlock"/> 143public static Option<bool> IndentBlock { get; } = CSharpFormattingOptions2.IndentBlock.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (3)
Formatting\FormattingMultipleSpanTests.cs (1)
129{ CSharpFormattingOptions2.IndentBlock, false }
Formatting\FormattingTests.cs (2)
1035{ IndentBlock, false }, 1068{ IndentBlock, false },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
102yield 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)
82Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.IndentBlock, CSharpVSResources.Indent_block_contents, BlockContentPreview, this, optionStore));