Add project files.

This commit is contained in:
2022-04-30 10:46:44 -05:00
parent 3848a11a46
commit b432db6af7
23 changed files with 1444 additions and 0 deletions

19
GpsTestApp/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GpsTestApp {
static class Program {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}