Initial project tweaks

Sets the UI and Library up to be in a good spot to start work
This commit is contained in:
2024-04-26 10:45:39 +02:00
parent 81d129713e
commit b584174707
5 changed files with 56 additions and 45 deletions

View File

@ -1,17 +1,16 @@
namespace PostmanCloneUI
namespace PostmanCloneUI;
internal static class Program
{
internal static class Program
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
/// <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 Form1());
}
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Dashboard());
}
}