migrated all projects over to .net8

This commit is contained in:
Bobbie Hodgetts
2024-05-10 11:16:32 +01:00
parent 97fff18e7e
commit daa4e91e81
97 changed files with 159 additions and 827 deletions

View File

@@ -0,0 +1,17 @@
namespace bnhtrade.gui
{
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 Form1());
}
}
}