ILRepack.IntegrationTests/Scenarios/WPFThemingAndLibraryStyles/Program.cs (22 lines of code) (raw):

using System; using System.Windows; namespace WPFThemingAndLibraryStyles { public class Program { [STAThread] public static int Main() { try { new Application().Run(new MainWindow()); return 0; } catch (Exception e) { Console.WriteLine(e); return 1; } } } }