00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 using System; 00013 using System.Windows.Forms; 00014 using Mcs.Epm.MicrosoftProject.mpFx.Client.Forms; 00015 00016 namespace Mcs.Epm.MicrosoftProject.mpFx.Client 00017 { 00018 /// <summary> 00019 /// Implements the mpFxClient application. 00020 /// </summary> 00021 internal static class Program 00022 { 00023 /// <summary> 00024 /// The main entry point for the application. 00025 /// </summary> 00026 [STAThread] 00027 private static void Main() 00028 { 00029 Application.EnableVisualStyles(); 00030 Application.SetCompatibleTextRenderingDefault(false); 00031 Application.Run(new MainForm()); 00032 00033 } 00034 } 00035 }
1.5.8