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#

3 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()
{
1 month ago
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
AppContext.SetSwitch("Npgsql.DisableDateTimeInfinityConversions", true);
3 months ago
Application.EnableVisualStyles();
1 month ago
Application.SetCompatibleTextRenderingDefault(false);
1 month ago
1 week ago
// Application.Run(new FromSQl());
Application.Run(new FormMain());
3 months ago
}
}
}