begin work: base version 0993 move original program for orgnization golang work snapshot decompiled code it builds! (but doesnt run) source code bump library stash decompile 0.1.2, make it build
16 lines
363 B
C#
16 lines
363 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ControlApp;
|
|
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
private static void Main()
|
|
{
|
|
ApplicationConfiguration.Initialize();
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
|
|
Application.Run(new MyCustomApplicationContext());
|
|
}
|
|
}
|