21 references to DocumentationCommentOptionsStorage
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (12)
DocumentationComments\DocumentationCommentTests.cs (12)
196{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 749{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 1200{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 1582{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 2082{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2103{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2126{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2151{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2174{ DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, true } 2199{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true }, 2200{ DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, true } 2223{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true }
Microsoft.VisualStudio.LanguageServices.CSharp (9)
Options\AdvancedOptionPageControl.xaml.cs (3)
106BindToOption(GenerateXmlDocCommentsForTripleSlash, DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, LanguageNames.CSharp); 107BindToOption(GenerateXmlDocCommentsOnSingleLine, DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, LanguageNames.CSharp); 108BindToOption(GenerateOnlySummaryTag, DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, LanguageNames.CSharp);
Options\AutomationObject\AutomationObject.DocumentationComment.cs (6)
13get { return GetBooleanOption(DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration); } 14set { SetBooleanOption(DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, value); } 19get { return GetBooleanOption(DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine); } 20set { SetBooleanOption(DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, value); } 25get { return GetBooleanOption(DocumentationCommentOptionsStorage.GenerateOnlySummaryTag); } 26set { SetBooleanOption(DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, value); }