7 references to SpaceBeforeDot
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Formatting\CSharpFormattingOptions.cs (2)
129
/// <inheritdoc cref="CSharpFormattingOptions2.
SpaceBeforeDot
"/>
130
public static Option<bool> SpaceBeforeDot { get; } = CSharpFormattingOptions2.
SpaceBeforeDot
.ToPublicOption();
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpSyntaxFormattingOptions.cs (1)
94
(options.GetOption(CSharpFormattingOptions2.
SpaceBeforeDot
) ? SpacePlacement.BeforeDot : 0);
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
69
yield return Setting.Create(CSharpFormattingOptions2.
SpaceBeforeDot
, CSharpVSResources.Insert_space_before_dot, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
206
get { return GetBooleanOption(CSharpFormattingOptions2.
SpaceBeforeDot
); }
207
set { SetBooleanOption(CSharpFormattingOptions2.
SpaceBeforeDot
, value); }
Options\Formatting\SpacingViewModel.cs (1)
164
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
SpaceBeforeDot
, CSharpVSResources.Insert_space_before_dot, s_delimiterPreview, this, optionStore));