7 references to SpaceBeforeDot
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
93
(options.GetOption(CSharpFormattingOptions2.
SpaceBeforeDot
, fallbackOptions.Spacing.HasFlag(SpacePlacement.BeforeDot)) ? SpacePlacement.BeforeDot : 0);
Formatting\CSharpFormattingOptions.cs (2)
130
/// <inheritdoc cref="CSharpFormattingOptions2.
SpaceBeforeDot
"/>
131
public static Option<bool> SpaceBeforeDot { get; } = CSharpFormattingOptions2.
SpaceBeforeDot
.ToPublicOption();
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
73
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)
149
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
SpaceBeforeDot
, CSharpVSResources.Insert_space_before_dot, s_delimiterPreview, this, optionStore));