Skip to content

Instantly share code, notes, and snippets.

@AndyWatt83
Created April 20, 2018 15:17
Show Gist options
  • Save AndyWatt83/7eb670534909ad6f25066fb16106ed57 to your computer and use it in GitHub Desktop.
Save AndyWatt83/7eb670534909ad6f25066fb16106ed57 to your computer and use it in GitHub Desktop.
using System.Windows;
namespace TaskList.Shell
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var bootstrapper = new Bootstrapper();
bootstrapper.Run();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment