11 references to IndentStyle
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
1481
var
changedValue = FormattingOptions.
IndentStyle
.Block;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (4)
Editor\AutoFormattingOptionsWrapper.cs (2)
20
public FormattingOptions.
IndentStyle
IndentStyle
21
=> (FormattingOptions.
IndentStyle
)_indentStyle;
Editor\IFSharpIndentationService.cs (1)
67
internal readonly record struct FSharpIndentationOptions(int TabSize, FormattingOptions.
IndentStyle
IndentStyle);
Internal\Editor\FSharpSmartIndentProvider.cs (1)
89
IndentStyle: (FormattingOptions.
IndentStyle
)indentStyle);
Microsoft.CodeAnalysis.Workspaces (4)
Formatting\FormattingOptions.cs (2)
27
public static PerLanguageOption<
IndentStyle
> SmartIndent { get; } = (PerLanguageOption<
IndentStyle
>)FormattingOptions2.SmartIndent.PublicOption!;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\FormattingOptions2.cs (2)
14
using PublicIndentStyle = Microsoft.CodeAnalysis.Formatting.FormattingOptions.
IndentStyle
;
66
.WithPublicOption(PublicFeatureName, "SmartIndent", static value => (
PublicIndentStyle
)value, static value => (IndentStyle)value);
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Options\OptionsTestHelpers.cs (1)
28
public static readonly ImmutableArray<(IOption, object)> PublicAutoFormattingOptionsWithNonDefaultValues = [(FormattingOptions.SmartIndent, FormattingOptions.
IndentStyle
.Block)];