*** empty log message ***

This commit is contained in:
2007-04-22 07:49:38 +00:00
parent e322083b90
commit 9a30897a41
18 changed files with 1015 additions and 60 deletions

20
ase/test/cnt/Program.cs Normal file
View File

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