We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having a project without GenerateDocumentationFile property set to true and RCS0036 active shows an error.
Steps to reproduce
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <GenerateDocumentationFile>false</GenerateDocumentationFile> </PropertyGroup> </Project>
/// <summary> /// Test /// </summary> public class TestClass { /// <summary> /// Create instance /// </summary> public TestClass(string p1, string p2) { P1 = p1; P2 = p2; } /// <summary> /// P1 /// </summary> public string P1 { get; } /// <summary> /// P2 /// </summary> public string P2 { get; } }
error RCS0036: Remove blank line between single-line declarations of same kind
The text was updated successfully, but these errors were encountered:
@curcas I was not able to reproduce this bug. Afaik RCS0036 has nothing to do with GenerateDocumentationFile.
Where exactly in your code sample is the diagnostic reported?
Sorry, something went wrong.
No branches or pull requests
Having a project without GenerateDocumentationFile property set to true and RCS0036 active shows an error.
Steps to reproduce
The text was updated successfully, but these errors were encountered: