mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-23 19:46:27 +00:00
7d3c2fbb9b
Testing project for source generator
36 lines
729 B
C#
36 lines
729 B
C#
using Slim;
|
|
using System;
|
|
using System.Windows.Extensions;
|
|
using WpfExtended.Test;
|
|
|
|
namespace WpfExtended.Tests
|
|
{
|
|
public class Launcher : ExtendedApplication<MainWindow>
|
|
{
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
}
|