2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-03 20:08:21 +00:00
This commit is contained in:
2022-11-05 17:48:30 +03:00
parent e83f51f952
commit f1d5b0a38b
12 changed files with 746 additions and 54 deletions

View File

@@ -0,0 +1,17 @@
namespace Esiur.Analysis.Test
{
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 FMain());
}
}
}