This commit is contained in:
Rich
2010-03-26 12:10:02 +00:00
parent 53cc599846
commit 2eb5d9d6bc
32 changed files with 12506 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace SyncMany
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmSyncMany());
}
}
}