The redistributable package for Metalama.Extensions.CodeFixes, which does not implicitly cause referencing projects to use the Metalama compiler.
$ dotnet add package Metalama.Extensions.CodeFixes.RedistThe Metalama.Extensions.CodeFixes.Redist is the redistributable package for Metalama.Extensions.CodeFixes.
You can use it when you don't want the projects using your own packages to implicitly use Metalama.
To use this package, you should also set the PrivateAssets="all" property when referencing Metalama.Extensions.CodeFixes.
To use this package, use the following code in your csproj file:
<ItemGroup>
<PackageReference Include="Metalama.Extensions.CodeFixes" Version="TODO" PrivateAssets="all"/>
<PackageReference Include="Metalama.Extensions.CodeFixes.Redist" Version="TODO" />
</ItemGroup>