[성현모] eCIAv2 솔루션, WindowsApp, library 프로젝트 생성

This commit is contained in:
SHM
2026-03-09 09:54:16 +09:00
parent 7847a9e729
commit cc5c6d572b
7 changed files with 247 additions and 0 deletions

View File

@ -0,0 +1,17 @@
namespace eCIAv2.WindowsApp
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}