Code that goes into production should not rely on a nightly build or a pre-release version of a package. This rule reports on packages that are not considered stable releases.
Note that packages references that are a private asset for all output, are ignored.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="9.0.0-preview.7.24405.7" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="9.0.0" />
</ItemGroup>
</Project>