Riorganizzazione progetti test
- test CLI unificato RestCitizen e Mitsubishi - test terze parti in unica folder (es SampleVCS Mitsubishi) - rimozione zip bETA del 2022 - riorganizzazione area SDK x IOB-MAN con libreria comunicazione (es x serialMoxa
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
// Program.cs : アプリケーションのメインエントリポイント
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2023 MITSUBISHI Electric Corporation All Rights Reserved
|
||||
//
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace SampleAppCS
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// アプリケーションのメイン エントリ ポイントです。
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new FormSampleApp());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user