Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Benchmark Generator/Benchmark Generator/Program.cs @ 10059

Last change on this file since 10059 was 9693, checked in by bburlacu, 11 years ago

#2083: Initial commit of benchmark generator application skeleton.

File size: 412 bytes
Line 
1using System;
2using System.Windows.Forms;
3
4namespace Benchmark_Generator {
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);
13      Application.Run(new BenchmarkGeneratorView());
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.