|
Hello, We have a library with a dependency on Microsoft.Win32.Registry that we want to release as part of our product targeting .net 6, however, it seems this package has been left in a prerelease state for .net 6 for quite some months now. Do you have a release date for this package 6.0.0 version? |
Answered by
Joe4evr
Nov 25, 2021
Replies: 3 comments 8 replies
|
You shouldn't need an extra package. If you set |
5 replies
Answer selected by
huoyaoyuan
|
FYI: In .NET 10 NuGet removes transitive dependencies to Microsoft.Win32.Registry package automatically from the dependency graph, because package pruning is enabled by default: https://devblogs.microsoft.com/dotnet/nuget-package-pruning-in-dotnet-10/ |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


You shouldn't need an extra package. If you set
<TargetFramework>net6.0-windows</TargetFramework>in your .csproj, you should get access to those types.