├── .editorconfig ├── .gitattributes ├── .gitignore ├── .mailmap ├── .nuget └── packages.config ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── DocumentationAnalyzers.sln ├── DocumentationAnalyzers ├── Directory.Build.props ├── Directory.Build.targets ├── DocumentationAnalyzers.CodeFixes │ ├── DocumentationAnalyzers.CodeFixes.csproj │ ├── DocumentationAnalyzers.Metadata.nuspec │ ├── DocumentationAnalyzers.nuspec │ ├── Helpers │ │ ├── CustomBatchFixAllProvider.cs │ │ ├── CustomFixAllProviders.cs │ │ ├── FixAllContextHelper.cs │ │ └── XmlSyntaxFactory.cs │ ├── PortabilityRules │ │ ├── DOC200CodeFixProvider.cs │ │ ├── DOC201CodeFixProvider.cs │ │ ├── DOC202CodeFixProvider.cs │ │ ├── DOC203CodeFixProvider.cs │ │ └── DOC204CodeFixProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RefactoringRules │ │ ├── DOC900CodeFixProvider+DocumentationCommentPrinter.cs │ │ ├── DOC900CodeFixProvider+DocumentationCommentTextWriter.cs │ │ ├── DOC900CodeFixProvider.cs │ │ └── DOC901CodeFixProvider.cs │ ├── StyleRules │ │ ├── BlockLevelDocumentationCodeFixProvider.cs │ │ ├── DOC103CodeFixProvider.cs │ │ ├── DOC104CodeFixProvider.cs │ │ ├── DOC105CodeFixProvider.cs │ │ ├── DOC106CodeFixProvider.cs │ │ ├── DOC107CodeFixProvider.cs │ │ └── DOC108CodeFixProvider.cs │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── DocumentationAnalyzers.Internal.ruleset ├── DocumentationAnalyzers.Status.Generator │ ├── CodeFixStatus.cs │ ├── DocumentationAnalyzers.Status.Generator.csproj │ ├── DocumentationDiagnostic.cs │ ├── FixAllStatus.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SolutionReader.cs │ └── app.config ├── DocumentationAnalyzers.Test.CSharp7 │ ├── AnalyzerConfigurationTestsCSharp7.cs │ ├── DocumentationAnalyzers.Test.CSharp7.csproj │ ├── PortabilityRules │ │ ├── DOC200CSharp7UnitTests.cs │ │ ├── DOC201CSharp7UnitTests.cs │ │ ├── DOC202CSharp7UnitTests.cs │ │ ├── DOC203CSharp7UnitTests.cs │ │ ├── DOC204CSharp7UnitTests.cs │ │ ├── DOC207CSharp7UnitTests.cs │ │ └── DOC209CSharp7UnitTests.cs │ ├── RefactoringRules │ │ ├── DOC900CSharp7UnitTests.cs │ │ └── DOC901CSharp7UnitTests.cs │ └── StyleRules │ │ ├── DOC100CSharp7UnitTests.cs │ │ ├── DOC101CSharp7UnitTests.cs │ │ ├── DOC102CSharp7UnitTests.cs │ │ ├── DOC103CSharp7UnitTests.cs │ │ ├── DOC104CSharp7UnitTests.cs │ │ ├── DOC105CSharp7UnitTests.cs │ │ ├── DOC106CSharp7UnitTests.cs │ │ └── DOC107CSharp7UnitTests.cs ├── DocumentationAnalyzers.Test │ ├── AnalyzerConfigurationTests.cs │ ├── AttributeTests.cs │ ├── DocumentationAnalyzers.Test.csproj │ ├── ExportCodeFixProviderAttributeNameTest.cs │ ├── PortabilityRules │ │ ├── DOC200UnitTests.cs │ │ ├── DOC201UnitTests.cs │ │ ├── DOC202UnitTests.cs │ │ ├── DOC203UnitTests.cs │ │ ├── DOC204UnitTests.cs │ │ ├── DOC207UnitTests.cs │ │ └── DOC209UnitTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublicApiTests.cs │ ├── RefactoringRules │ │ ├── DOC900UnitTests.cs │ │ └── DOC901UnitTests.cs │ ├── SequentialTestCollection.cs │ ├── StyleRules │ │ ├── DOC100UnitTests.cs │ │ ├── DOC101UnitTests.cs │ │ ├── DOC102UnitTests.cs │ │ ├── DOC103UnitTests.cs │ │ ├── DOC104UnitTests.cs │ │ ├── DOC105UnitTests.cs │ │ ├── DOC106UnitTests.cs │ │ ├── DOC107UnitTests.cs │ │ └── DOC108UnitTests.cs │ ├── Verifiers │ │ ├── CSharpAnalyzerVerifier`1+Test.cs │ │ ├── CSharpAnalyzerVerifier`1.cs │ │ ├── CSharpCodeFixVerifier`2+Test.cs │ │ ├── CSharpCodeFixVerifier`2.cs │ │ ├── CSharpCodeRefactoringVerifier`1+Test.cs │ │ ├── CSharpCodeRefactoringVerifier`1.cs │ │ ├── CSharpVerifierHelper.cs │ │ ├── VisualBasicAnalyzerVerifier`1+Test.cs │ │ ├── VisualBasicAnalyzerVerifier`1.cs │ │ ├── VisualBasicCodeFixVerifier`2+Test.cs │ │ ├── VisualBasicCodeFixVerifier`2.cs │ │ ├── VisualBasicCodeRefactoringVerifier`1+Test.cs │ │ └── VisualBasicCodeRefactoringVerifier`1.cs │ └── WorkItemAttribute.cs ├── DocumentationAnalyzers.Vsix │ ├── DocumentationAnalyzers.Vsix.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ └── source.extension.vsixmanifest ├── DocumentationAnalyzers.ruleset ├── DocumentationAnalyzers │ ├── AnalyzerCategory.cs │ ├── AnalyzerConstants.cs │ ├── DocumentationAnalyzers.csproj │ ├── ExcludeFromCodeCoverageAttribute.cs │ ├── Helpers │ │ ├── DocumentationCommentExtensions.cs │ │ ├── HelpersResources.Designer.cs │ │ ├── HelpersResources.resx │ │ ├── SpacingExtensions.cs │ │ ├── SpecializedTasks.cs │ │ ├── SymbolExtensions.cs │ │ ├── SyntaxNodeExtensionsEx.cs │ │ └── XmlCommentHelper.cs │ ├── NoCodeFixAttribute.cs │ ├── PortabilityRules │ │ ├── DOC200UseXmlDocumentationSyntax.cs │ │ ├── DOC201ItemShouldHaveDescription.cs │ │ ├── DOC202UseSectionElementsCorrectly.cs │ │ ├── DOC203UseBlockElementsCorrectly.cs │ │ ├── DOC204UseInlineElementsCorrectly.cs │ │ ├── DOC207UseSeeLangwordCorrectly.cs │ │ ├── DOC209UseSeeHrefCorrectly.cs │ │ ├── PortabilityResources.Designer.cs │ │ └── PortabilityResources.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RefactoringRules │ │ ├── DOC900RenderAsMarkdown.cs │ │ ├── DOC901ConvertToDocumentationComment.cs │ │ ├── RefactoringResources.Designer.cs │ │ └── RefactoringResources.resx │ └── StyleRules │ │ ├── BlockLevelDocumentationAnalyzerBase.cs │ │ ├── DOC100PlaceTextInParagraphs.cs │ │ ├── DOC101UseChildBlocksConsistently.cs │ │ ├── DOC102UseChildBlocksConsistentlyAcrossElementsOfTheSameKind.cs │ │ ├── DOC103UseUnicodeCharacters.cs │ │ ├── DOC104UseSeeLangword.cs │ │ ├── DOC105UseParamref.cs │ │ ├── DOC106UseTypeparamref.cs │ │ ├── DOC107UseSeeCref.cs │ │ ├── DOC108AvoidEmptyParagraphs.cs │ │ ├── InlineCodeAnalyzerBase.cs │ │ ├── StyleResources.Designer.cs │ │ └── StyleResources.resx ├── stylecop.json └── version.json ├── LICENSE ├── NuGet.config ├── README.md ├── THIRD-PARTY-NOTICES.txt ├── appveyor.yml ├── codecov.yml └── docs ├── DOC100.md ├── DOC101.md ├── DOC102.md ├── DOC103.md ├── DOC104.md ├── DOC105.md ├── DOC106.md ├── DOC107.md ├── DOC108.md ├── DOC200.md ├── DOC201.md ├── DOC202.md ├── DOC203.md ├── DOC204.md ├── DOC207.md ├── DOC209.md ├── DOC900.md ├── DOC901.md ├── PortabilityRules.md ├── Refactorings.md ├── StyleRules.md └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /DocumentationAnalyzers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers.sln -------------------------------------------------------------------------------- /DocumentationAnalyzers/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/Directory.Build.props -------------------------------------------------------------------------------- /DocumentationAnalyzers/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/Directory.Build.targets -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.CodeFixes.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.Metadata.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.Metadata.nuspec -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/DocumentationAnalyzers.nuspec -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/CustomBatchFixAllProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/CustomBatchFixAllProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/CustomFixAllProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/CustomFixAllProviders.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/FixAllContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/FixAllContextHelper.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/XmlSyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Helpers/XmlSyntaxFactory.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC200CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC200CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC201CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC201CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC202CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC202CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC203CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC203CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC204CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/PortabilityRules/DOC204CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider+DocumentationCommentPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider+DocumentationCommentPrinter.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider+DocumentationCommentTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider+DocumentationCommentTextWriter.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC900CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC901CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/RefactoringRules/DOC901CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/BlockLevelDocumentationCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/BlockLevelDocumentationCodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC103CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC103CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC104CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC104CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC105CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC105CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC106CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC106CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC107CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC107CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC108CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/StyleRules/DOC108CodeFixProvider.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/tools/install.ps1 -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.CodeFixes/tools/uninstall.ps1 -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Internal.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Internal.ruleset -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/CodeFixStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/CodeFixStatus.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/DocumentationAnalyzers.Status.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/DocumentationAnalyzers.Status.Generator.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/DocumentationDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/DocumentationDiagnostic.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/FixAllStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/FixAllStatus.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/Program.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/Properties/launchSettings.json -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/SolutionReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/SolutionReader.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Status.Generator/app.config -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/AnalyzerConfigurationTestsCSharp7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/AnalyzerConfigurationTestsCSharp7.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/DocumentationAnalyzers.Test.CSharp7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/DocumentationAnalyzers.Test.CSharp7.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC200CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC200CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC201CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC201CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC202CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC202CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC203CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC203CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC204CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC204CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC207CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC207CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC209CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/PortabilityRules/DOC209CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/RefactoringRules/DOC900CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/RefactoringRules/DOC900CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/RefactoringRules/DOC901CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/RefactoringRules/DOC901CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC100CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC100CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC101CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC101CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC102CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC102CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC103CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC103CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC104CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC104CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC105CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC105CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC106CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC106CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC107CSharp7UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test.CSharp7/StyleRules/DOC107CSharp7UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/AnalyzerConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/AnalyzerConfigurationTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/AttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/AttributeTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/DocumentationAnalyzers.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/DocumentationAnalyzers.Test.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/ExportCodeFixProviderAttributeNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/ExportCodeFixProviderAttributeNameTest.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC200UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC200UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC201UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC201UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC202UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC202UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC203UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC203UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC204UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC204UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC207UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC207UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC209UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PortabilityRules/DOC209UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/PublicApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/PublicApiTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/RefactoringRules/DOC900UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/RefactoringRules/DOC900UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/RefactoringRules/DOC901UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/RefactoringRules/DOC901UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/SequentialTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/SequentialTestCollection.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC100UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC100UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC101UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC101UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC102UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC102UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC103UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC103UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC104UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC104UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC105UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC105UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC106UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC106UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC107UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC107UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC108UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/StyleRules/DOC108UnitTests.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpAnalyzerVerifier`1+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpAnalyzerVerifier`1+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpAnalyzerVerifier`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpAnalyzerVerifier`1.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeFixVerifier`2+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeFixVerifier`2+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeFixVerifier`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeFixVerifier`2.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeRefactoringVerifier`1+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeRefactoringVerifier`1+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeRefactoringVerifier`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpCodeRefactoringVerifier`1.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpVerifierHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/CSharpVerifierHelper.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicAnalyzerVerifier`1+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicAnalyzerVerifier`1+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicAnalyzerVerifier`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicAnalyzerVerifier`1.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeFixVerifier`2+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeFixVerifier`2+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeFixVerifier`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeFixVerifier`2.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeRefactoringVerifier`1+Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeRefactoringVerifier`1+Test.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeRefactoringVerifier`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/Verifiers/VisualBasicCodeRefactoringVerifier`1.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Test/WorkItemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Test/WorkItemAttribute.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Vsix/DocumentationAnalyzers.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Vsix/DocumentationAnalyzers.Vsix.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Vsix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Vsix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Vsix/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Vsix/Properties/launchSettings.json -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers.ruleset -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/AnalyzerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/AnalyzerCategory.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/AnalyzerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/AnalyzerConstants.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/DocumentationAnalyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/DocumentationAnalyzers.csproj -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/ExcludeFromCodeCoverageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/ExcludeFromCodeCoverageAttribute.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/DocumentationCommentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/DocumentationCommentExtensions.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/HelpersResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/HelpersResources.Designer.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/HelpersResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/HelpersResources.resx -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SpacingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SpacingExtensions.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SpecializedTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SpecializedTasks.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SymbolExtensions.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SyntaxNodeExtensionsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/SyntaxNodeExtensionsEx.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Helpers/XmlCommentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Helpers/XmlCommentHelper.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/NoCodeFixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/NoCodeFixAttribute.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC200UseXmlDocumentationSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC200UseXmlDocumentationSyntax.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC201ItemShouldHaveDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC201ItemShouldHaveDescription.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC202UseSectionElementsCorrectly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC202UseSectionElementsCorrectly.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC203UseBlockElementsCorrectly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC203UseBlockElementsCorrectly.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC204UseInlineElementsCorrectly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC204UseInlineElementsCorrectly.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC207UseSeeLangwordCorrectly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC207UseSeeLangwordCorrectly.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC209UseSeeHrefCorrectly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/DOC209UseSeeHrefCorrectly.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/PortabilityResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/PortabilityResources.Designer.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/PortabilityResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/PortabilityRules/PortabilityResources.resx -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/DOC900RenderAsMarkdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/DOC900RenderAsMarkdown.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/DOC901ConvertToDocumentationComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/DOC901ConvertToDocumentationComment.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/RefactoringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/RefactoringResources.Designer.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/RefactoringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/RefactoringRules/RefactoringResources.resx -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/BlockLevelDocumentationAnalyzerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/BlockLevelDocumentationAnalyzerBase.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC100PlaceTextInParagraphs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC100PlaceTextInParagraphs.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC101UseChildBlocksConsistently.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC101UseChildBlocksConsistently.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC102UseChildBlocksConsistentlyAcrossElementsOfTheSameKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC102UseChildBlocksConsistentlyAcrossElementsOfTheSameKind.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC103UseUnicodeCharacters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC103UseUnicodeCharacters.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC104UseSeeLangword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC104UseSeeLangword.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC105UseParamref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC105UseParamref.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC106UseTypeparamref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC106UseTypeparamref.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC107UseSeeCref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC107UseSeeCref.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC108AvoidEmptyParagraphs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/DOC108AvoidEmptyParagraphs.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/InlineCodeAnalyzerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/InlineCodeAnalyzerBase.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/StyleResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/StyleResources.Designer.cs -------------------------------------------------------------------------------- /DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/StyleResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/DocumentationAnalyzers/StyleRules/StyleResources.resx -------------------------------------------------------------------------------- /DocumentationAnalyzers/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/stylecop.json -------------------------------------------------------------------------------- /DocumentationAnalyzers/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/DocumentationAnalyzers/version.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/DOC100.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC100.md -------------------------------------------------------------------------------- /docs/DOC101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC101.md -------------------------------------------------------------------------------- /docs/DOC102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC102.md -------------------------------------------------------------------------------- /docs/DOC103.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC103.md -------------------------------------------------------------------------------- /docs/DOC104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC104.md -------------------------------------------------------------------------------- /docs/DOC105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC105.md -------------------------------------------------------------------------------- /docs/DOC106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC106.md -------------------------------------------------------------------------------- /docs/DOC107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC107.md -------------------------------------------------------------------------------- /docs/DOC108.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC108.md -------------------------------------------------------------------------------- /docs/DOC200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC200.md -------------------------------------------------------------------------------- /docs/DOC201.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC201.md -------------------------------------------------------------------------------- /docs/DOC202.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC202.md -------------------------------------------------------------------------------- /docs/DOC203.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC203.md -------------------------------------------------------------------------------- /docs/DOC204.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC204.md -------------------------------------------------------------------------------- /docs/DOC207.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC207.md -------------------------------------------------------------------------------- /docs/DOC209.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC209.md -------------------------------------------------------------------------------- /docs/DOC900.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC900.md -------------------------------------------------------------------------------- /docs/DOC901.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/DOC901.md -------------------------------------------------------------------------------- /docs/PortabilityRules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/PortabilityRules.md -------------------------------------------------------------------------------- /docs/Refactorings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/Refactorings.md -------------------------------------------------------------------------------- /docs/StyleRules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/StyleRules.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/DocumentationAnalyzers/HEAD/docs/index.html --------------------------------------------------------------------------------