There're assemblies inside .NET 6 framework which I'm 100% sure I'll never use, however they still appear in the list of dependencies, ReSharper (and likely bare VS as well) still suggests them when importing types, and in general their existence is annoying.
For example, I'm 100% sure I'll never use Microsoft.Win32.Registry or System.Drawing, yet when writing Color I see IDE suggesting types I can't really use. I'm abandoning my Windows-only ways and I want to never see these again.
I tried pressing Delete after selecting the node, nothing happened. I tried adding <Reference Remove="System.Drawing" /> to my .csproj file, nothing happened. I tried using "Remove unused references", nothing happened.
Question: Is there any way to get rid of these references? Removing them from the list would be perfect, but just hiding them from suggestions of VS/R# would be fine too.
I've found multiple questions regarding removing references on SO, but they all seem to be about .NET 4.x, about adding an alternative, all this not being useful for my case.
VS2022 17.0.1, R# 2021.3 EAP, .NET 6.0, latest everything.
