Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5622 was 5388, checked in by abeham, 14 years ago

#567

  • Updated default value for year in license snippet
  • Updated new view wizard
File size: 416 bytes
RevLine 
[4181]1using System;
2using System.Windows.Forms;
3
4namespace HeuristicLab.VS2010Wizards.Test {
5  static class Program {
6    /// <summary>
7    /// The main entry point for the application.
8    /// </summary>
9    [STAThread]
10    static void Main() {
11      Application.EnableVisualStyles();
12      Application.SetCompatibleTextRenderingDefault(false);
[5388]13      Application.Run(new ViewWizardForm());
[4181]14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.