git-svn-id: http://svn.sourceforge.jp/svnroot/lipsync@6 b1f601f4-4f45-0410-8980-aecacb008692

This commit is contained in:
kbinani
2009-06-25 14:16:22 +00:00
parent 775d25e7fa
commit 90d1578878
373 changed files with 111302 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
namespace NicoComment {
static class Program {
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault( false );
#if !DEBUG
//DEBUGのときはIDEでエラーをハンドルしたいので。
try {
#endif
Application.Run( new Form1() );
#if !DEBUG
} catch ( Exception e ) {
using ( StreamWriter sw = new StreamWriter( "error.log", true ) ) {
sw.WriteLine( e.Message );
sw.WriteLine( e.StackTrace );
}
}
#endif
}
}
}