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:
Samuele Locatelli
2024-11-20 16:08:00 +01:00
parent 382ceb6f01
commit ac1b018ad9
63 changed files with 8 additions and 22 deletions
+28
View File
@@ -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());
}
}
}