-
Notifications
You must be signed in to change notification settings - Fork 337
Description
Hello,
Is there any plan to port AvalonDock to .Net Core 3 (which is WPF supported)?
Currently .Net Core 3 stage is preview6, and it will release at 2019/09.
I have tried to modify .sln and .csproj for .Net Core 3 by creating a whole new .Net Core 3 WPF library project with <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> (new format .csproj). It almost can be compiled perfectly, just only remove some Xceed related compiling/project parameters.
In other way, I have tried to use current .NET 4.6.1 version nuget dll to .Net Core 3 preview WPF Desktop project. It works!! Only the docking visual indicator pictures are shifted to right-down position, not on the center normally.
In fact, you can parallel compile two version DLLs for .Net Framework and .Net Core 3 by setting library .csproj with <TargetFrameworks>net461;netcoreapp3.0</TargetFrameworks>.