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
Example project file (as suggestion):
<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>netcoreapp2.2</TargetFramework> <GenerateDocumentationFile Condition="'$(Configuration)' == 'Release'">true</GenerateDocumentationFile> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.AspNetCore.App" /> <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" /> </ItemGroup> <ItemGroup> <Compile Update="Program.cs"> <NoWarn>CS1591;$(NoWarn)</NoWarn> </Compile> </ItemGroup> </Project>
No CS1591 warning for Program.cs.
Program.cs
I get a warning for Program.cs.
The text was updated successfully, but these errors were encountered:
This is a C#-compiler feature request, so I'll move it to the Roslyn repo.
Sorry, something went wrong.
This issue was moved to dotnet/roslyn#32672
No branches or pull requests
Steps to reproduce
Example project file (as suggestion):
Expected behavior
No CS1591 warning for
Program.cs
.Actual behavior
I get a warning for
Program.cs
.The text was updated successfully, but these errors were encountered: