From e40d3b868aed891add43cf9bf10eaec4a436216f Mon Sep 17 00:00:00 2001 From: BM Devs Date: Mon, 20 Nov 2017 04:26:22 -0500 Subject: [PATCH] Delete Program.cs --- Windows/SOURCE/ArduinoEPROM/Program.cs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Windows/SOURCE/ArduinoEPROM/Program.cs diff --git a/Windows/SOURCE/ArduinoEPROM/Program.cs b/Windows/SOURCE/ArduinoEPROM/Program.cs deleted file mode 100644 index 694abfc..0000000 --- a/Windows/SOURCE/ArduinoEPROM/Program.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; - -namespace ArduinoEPROM -{ - static class Program - { - /// - /// Point d'entrée principal de l'application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); - } - } -}