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
From @fubar-coder on January 21, 2019 13:57
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.
Copied from original issue: dotnet/msbuild#4087
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.
No branches or pull requests
From @fubar-coder on January 21, 2019 13:57
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
.Copied from original issue: dotnet/msbuild#4087
The text was updated successfully, but these errors were encountered: