12 references to IndentStyle
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Workspaces\WorkspaceTests_EditorFeatures.cs (2)
1467var changedValue = FormattingOptions.IndentStyle.Block;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (4)
Editor\AutoFormattingOptionsWrapper.cs (2)
20public FormattingOptions.IndentStyle IndentStyle 21=> (FormattingOptions.IndentStyle)_indentStyle;
Editor\IFSharpIndentationService.cs (1)
67internal readonly record struct FSharpIndentationOptions(int TabSize, FormattingOptions.IndentStyle IndentStyle);
Internal\Editor\FSharpSmartIndentProvider.cs (1)
92IndentStyle: (FormattingOptions.IndentStyle)indentStyle);
Microsoft.CodeAnalysis.ExternalAccess.Razor (1)
RazorCSharpFormattingInteractionService.cs (1)
38FormattingOptions.IndentStyle indentStyle,
Microsoft.CodeAnalysis.Workspaces (4)
Formatting\FormattingOptions.cs (2)
27public static PerLanguageOption<IndentStyle> SmartIndent { get; } = (PerLanguageOption<IndentStyle>)FormattingOptions2.SmartIndent.PublicOption!;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\FormattingOptions2.cs (2)
15using 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)
29(FormattingOptions.SmartIndent, FormattingOptions.IndentStyle.Block));