7 references to SpaceAfterDot
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
92(options.GetOption(CSharpFormattingOptions2.SpaceAfterDot, fallbackOptions.Spacing.HasFlag(SpacePlacement.AfterDot)) ? SpacePlacement.AfterDot : 0) |
Formatting\CSharpFormattingOptions.cs (2)
118/// <inheritdoc cref="CSharpFormattingOptions2.SpaceAfterDot"/> 119public static Option<bool> SpaceAfterDot { get; } = CSharpFormattingOptions2.SpaceAfterDot.ToPublicOption();
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
69yield return Setting.Create(CSharpFormattingOptions2.SpaceAfterDot, CSharpVSResources.Insert_space_after_dot, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
164get { return GetBooleanOption(CSharpFormattingOptions2.SpaceAfterDot); } 165set { SetBooleanOption(CSharpFormattingOptions2.SpaceAfterDot, value); }
Options\Formatting\SpacingViewModel.cs (1)
145Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceAfterDot, CSharpVSResources.Insert_space_after_dot, s_delimiterPreview, this, optionStore));