Hide contentFiles from your nuget packages
<Project>
<ItemGroup>
<Compile Update="@(Compile)">
<Visible Condition="'%(NuGetItemType)' == 'Compile' and '%(NuGetPackageId)' == 'Foo'">false</Visible>
</Compile>
</ItemGroup>
</Project>Last updated