before update
<ItemGroup>
<PackageReference Include="Fody" Version="3.0.0" PrivateAssets="None" />
<PackageReference Include="FodyPackaging" Version="3.0.0" PrivateAssets="All" />
</ItemGroup>
after update
<ItemGroup>
<PackageReference Include="Fody" Version="3.0.1" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="FodyPackaging" Version="3.0.1" PrivateAssets="All" />
</ItemGroup>
the problems is the first one results in the resultant nuget having a dependency on fody. the second one does not.
before update
after update
the problems is the first one results in the resultant nuget having a dependency on fody. the second one does not.