Sto migrando la mia app desktop WPF da .NET Framwork a Core 3.0. Stavo usando System.Windows.Forms.FolderBrowserDialog () e ora sono bloccato su come aggiungere questo riferimento al progetto Core. Non è disponibile un pacchetto NuGet "System.Windows.Forms", vero? Esiste un modo alternativo per visualizzare il FolderBrowserDialog nel Core?
Aggiornare
Ho creato il progetto Core utilizzando il modello predefinito e quindi copiato i file .cs e .xaml incollati. Il file .csproj è simile al seguente:
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
The type or namespace name 'Forms' does not exist in the namespace 'System.Windows'
e nessun suggerimento per l'importazione di riferimento.