chore: renamed solution

This commit is contained in:
2026-01-23 12:16:38 +01:00
parent e511610052
commit 640d9acbf6
27 changed files with 62 additions and 44 deletions

22
CarManagerV3/Program.cs Normal file
View File

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