22 lines
625 B
C#
22 lines
625 B
C#
using SQLitePCL;
|
|
|
|
namespace trakker
|
|
{
|
|
internal static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
// Initialize SQLite early
|
|
Batteries_V2.Init(); // ← Modern version (recommended)
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
// see https://aka.ms/applicationconfiguration.
|
|
ApplicationConfiguration.Initialize();
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|
|
} |