source: extensions/Picasa2Piwigo/Picasa2Piwigo/Program.cs @ 21241

Last change on this file since 21241 was 21241, checked in by kenl, 11 years ago
File size: 525 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5
6namespace Picasa2Piwigo
7{
8    static class Program
9    {
10        /// <summary>
11        /// The main entry point for the application.
12        /// </summary>
13        [STAThread]
14        static void Main(string[] args)
15        {
16            Application.EnableVisualStyles();
17            Application.SetCompatibleTextRenderingDefault(false);
18            Application.Run(new MainForm(args));
19        }
20    }
21}
Note: See TracBrowser for help on using the repository browser.