Holger Boerchers d7919fbe79 Added Autofac
2016-07-25 21:37:43 +02:00

16 lines
346 B
C#

using System.Windows;
namespace MaterialModernWPF
{
/// <summary>
/// Interaktionslogik für "App.xaml"
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
new Bootstrapper().Run();
}
}
}