using Slim; using System; using System.Windows.Extensions; using WpfExtended.Test; namespace WpfExtended.Tests { public class Launcher : ExtendedApplication { private static Launcher Instance { get; } = new Launcher(); [STAThread] public static int Main() { return Instance.Run(); } protected override void ApplicationClosing() { } protected override void ApplicationStarting() { } protected override bool HandleException(Exception e) { return false; } protected override void RegisterServices(IServiceProducer serviceProducer) { } } }