7 references to SpaceBeforeDot
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Formatting\CSharpFormattingOptions.cs (2)
129/// <inheritdoc cref="CSharpFormattingOptions2.SpaceBeforeDot"/> 130public 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)
69yield 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)
164Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceBeforeDot, CSharpVSResources.Insert_space_before_dot, s_delimiterPreview, this, optionStore));