using Mapster;
|
using System.Reflection;
|
|
namespace HStation.Desktop
|
{
|
internal static class Program
|
{
|
/// <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();
|
|
//if (!LoginHelper.Login())
|
//{
|
// return;
|
//}
|
|
//ɨÃèÈ«¾ÖDTOÓ³Éä
|
//TypeAdapterConfig.GlobalSettings.Scan(Assembly.Load("Yw.BLL.Auth.Core"), Assembly.Load("HStation.BLL.Xhs.Core"));
|
DbFirstHelper.Initial();
|
//TestHelper.AddTestProject();
|
Application.Run(new MainForm());
|
}
|
}
|
}
|