10 references to IndentBraces
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
ChangeSignature\AddParameterTests.Formatting.cs (1)
512
options: Option(CSharpFormattingOptions2.
IndentBraces
, true));
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Formatting\CSharpFormattingOptions.cs (2)
139
/// <inheritdoc cref="CSharpFormattingOptions2.
IndentBraces
"/>
140
public static Option<bool> IndentBraces { get; } = CSharpFormattingOptions2.
IndentBraces
.ToPublicOption();
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpSyntaxFormattingOptions.cs (1)
106
(options.GetOption(CSharpFormattingOptions2.
IndentBraces
) ? IndentationPlacement.Braces : 0) |
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (2)
Formatting\FormattingTests.cs (2)
1054
{
IndentBraces
, true },
1091
{
IndentBraces
, true },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
99
yield return Setting.Create(CSharpFormattingOptions2.
IndentBraces
, CSharpVSResources.Indent_open_and_close_braces, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
20
get { return GetBooleanOption(CSharpFormattingOptions2.
IndentBraces
); }
21
set { SetBooleanOption(CSharpFormattingOptions2.
IndentBraces
, value); }
Options\Formatting\IndentationViewModel.cs (1)
87
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
IndentBraces
, CSharpVSResources.Indent_open_and_close_braces, IndentBracePreview, this, optionStore));