-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
37 lines (35 loc) · 1.8 KB
/
Program.cs
File metadata and controls
37 lines (35 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// File: Program.cs
// The main entry point for the application. Handles initialization, configuration,
// and execution of the core logic. This class is typically responsible for invoking
// services, managing dependencies, and coordinating application startup in a .NET
// console or WinForm environment.
// --------------------------------------------------------------------------------
// Author: Patrik Eigenmann
// eMail: p.eigenmann72@gmail.com
// GitHub: https://github.com/PatrikEigenmann72/HelloWorld
// --------------------------------------------------------------------------------
// Change Log:
// Sun 2025-07-27 File created. Version: 00.01
// Sun 2025-08-10 Samael.HuginAndMunin.Debug.cs included into the Project. Version: 00.02
// Sun 2025-08-10 Samael.HuginAndMunin.Log.cs included into the Project. Version: 00.03
// Sun 2025-08-10 Samael.HuginAndMunin.Config.cs included into the Project. Version: 00.04
// Thu 2025-08-21 Reorganized project structure and namespaces. Version: 00.05
// --------------------------------------------------------------------------------
using SHM = Samael.HuginAndMunin;
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// Initialize Samael Components
SHM.Debug.Bitmask = SHM.DebugLevel.Error | SHM.DebugLevel.Verbose | SHM.DebugLevel.Info;
SHM.Log.Bitmask = SHM.LogLevel.Error | SHM.LogLevel.Verbose;
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new ToneG.Gui.MainForm());
}
}