21 lines
607 B
C#
Raw Normal View History

2024-06-13 20:25:11 -04:00
using AssemblyRemapper.Utils;
namespace AssemblyRemapperGUI;
internal static class Program
2024-06-13 18:09:31 -04:00
{
2024-06-13 20:25:11 -04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
2024-06-13 18:09:31 -04:00
{
2024-06-13 20:25:11 -04:00
DataProvider.LoadAppSettings();
DataProvider.LoadMappingFile();
DataProvider.LoadAssemblyDefinition();
// To customize application configuration such as set high DPI settings or default font, see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new AssemblyToolGUI());
2024-06-13 18:09:31 -04:00
}
}