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
While settings in an ItemGroup work well for this project, when one starts using them, they really clutter the project view.
ItemGroup
An example is the following opt-out section:
<ItemGroup> <CakeContribGuidelinesOmitRecommendedConfigFile Include="stylecop.json" /> <CakeContribGuidelinesOmitRecommendedConfigFile Include=".editorconfig" /> <CakeContribGuidelinesOmitRecommendedReference Include="StyleCop.Analyzers" /> </ItemGroup>
results in the following:
The text was updated successfully, but these errors were encountered:
Obviously, one workaround would be to change the above ItemGroup like this:
<ItemGroup> <CakeContribGuidelinesOmitRecommendedConfigFile Include="stylecop.json" Visible="false"/> <CakeContribGuidelinesOmitRecommendedConfigFile Include=".editorconfig" Visible="false"/> <CakeContribGuidelinesOmitRecommendedReference Include="StyleCop.Analyzers" Visible="false"/> </ItemGroup>
Sorry, something went wrong.
nils-a
No branches or pull requests
While settings in an
ItemGroup
work well for this project, when one starts using them, they really clutter the project view.An example is the following opt-out section:
results in the following:
The text was updated successfully, but these errors were encountered: