-
|
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? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
|
You shouldn't need an extra package. If you set |
Beta Was this translation helpful? Give feedback.
-
|
@ViktorHofer in case he has more to add |
Beta Was this translation helpful? Give feedback.
-
|
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/ |
Beta Was this translation helpful? Give feedback.


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.