You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/RfidWeb/Program.cs

27 lines
724 B
C#

5 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RfidWeb
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
4 months ago
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
AppContext.SetSwitch("Npgsql.DisableDateTimeInfinityConversions", true);
5 months ago
Application.EnableVisualStyles();
4 months ago
Application.SetCompatibleTextRenderingDefault(false);
4 months ago
3 months ago
// Application.Run(new FromSQl());
Application.Run(new FormMain());
5 months ago
}
}
}