Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Templates/HeuristicLab.VS2010Wizards.Test/Program.cs @ 5304

Last change on this file since 5304 was 4214, checked in by abeham, 14 years ago

#567

  • Added problem wizard
File size: 474 bytes
RevLine 
[4181]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5
6namespace HeuristicLab.VS2010Wizards.Test {
7  static class Program {
8    /// <summary>
9    /// The main entry point for the application.
10    /// </summary>
11    [STAThread]
12    static void Main() {
13      Application.EnableVisualStyles();
14      Application.SetCompatibleTextRenderingDefault(false);
[4214]15      Application.Run(new ProblemWizardForm());
[4181]16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.