picoe / Eto

Cross platform GUI framework for desktop and mobile applications in .NET
Other
3.55k stars 323 forks source link

Could not detect platform. Are you missing a platform assembly? #2527

Closed danilwhale closed 1 year ago

danilwhale commented 1 year ago

Expected Behavior

Start application

Actual Behavior

I get "Could not detect platform. Are you missing a platform assembly?" exception, though I have installed WPF and WinForms platform assemblies

Code that Demonstrates the Problem

class Program
{
    [STAThread]
    static void Main()
    {
        new Application().Run(new MainForm());
    }
}

MainForm class is just empty form

Specifications