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"/> 131public static Option<bool> SpaceBeforeDot { get; } = CSharpFormattingOptions2.SpaceBeforeDot.ToPublicOption();
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
73yield return Setting.Create(CSharpFormattingOptions2.SpaceBeforeDot, CSharpVSResources.Insert_space_before_dot, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
206get { return GetBooleanOption(CSharpFormattingOptions2.SpaceBeforeDot); } 207set { SetBooleanOption(CSharpFormattingOptions2.SpaceBeforeDot, value); }
Options\Formatting\SpacingViewModel.cs (1)
149Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceBeforeDot, CSharpVSResources.Insert_space_before_dot, s_delimiterPreview, this, optionStore));