What is the future of Caliburn Micro for .net core 3.0 and WPF. I get an error that it might not work in Nuget. I found nothing on Caliburn's site or on the github repository and the github entry does say that unless its a bug, ask here.
I have used Nuget and get an error of:
Warning NU1701 Package 'Caliburn.Micro 3.2.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.0'. This package may not be fully compatible with your project. WpfApp1 C:\Users\Super\Source\Repos\WpfApp1\WpfApp1\WpfApp1.csproj 1
namespace CM.WPFApp1.Views
{
/// <summary>
/// Interaction logic for ShellView.xaml
/// </summary>
public partial class ShellView : Window
{
public ShellView()
{
InitializeComponent();
}
}
}
Removing InitializeComponet and it seems to work. So what are the hazards of using this if any. Should I be using the alpha V 4.x?