21 references to DocumentationCommentOptionsStorage
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (12)
DocumentationComments\DocumentationCommentTests.cs (12)
176{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 729{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 1180{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 1562{ DocumentationCommentOptionsStorage.AutoXmlDocCommentGeneration, false } 2062{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2083{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2106{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2131{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true } 2154{ DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, true } 2179{ DocumentationCommentOptionsStorage.GenerateSummaryTagOnSingleLine, true }, 2180{ DocumentationCommentOptionsStorage.GenerateOnlySummaryTag, true } 2203{ 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); }