This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/Program.cs

16 lines
402 B
C#
Raw Normal View History

2023-03-24 10:17:54 +01:00
namespace Password_Manager
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2023-03-24 12:39:50 +01:00
Fields.ListOfProfiles = new ProfileList();
2023-03-24 10:17:54 +01:00
ApplicationConfiguration.Initialize();
2023-03-24 11:14:49 +01:00
Application.Run(new MainForm());
}
2023-03-24 10:17:54 +01:00
}
}