1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2025-08-18 18:24:55 +02:00
Files
.github
BrotliBuilder
Blocks
Components
Dialogs
Properties
Resources
State
Utils
BrotliBuilder.csproj
FormMain.Designer.cs
FormMain.Menu.BrotliImpl.cs
FormMain.Menu.File.cs
FormMain.Menu.Tools.cs
FormMain.Menu.View.cs
FormMain.cs
FormMain.resx
Program.cs
BrotliCalc
BrotliImpl
BrotliLib
Paper
UnitTests
.gitignore
BrotliBuilder.sln
LICENSE
README.md

26 lines
839 B
C#

using System;
using System.Globalization;
using System.Threading;
using System.Windows.Forms;
namespace BrotliBuilder{
static class Program{
public static CultureInfo Culture { get; }
static Program(){
Culture = Thread.CurrentThread.CurrentCulture;
Thread.CurrentThread.CurrentCulture = CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
Thread.CurrentThread.CurrentUICulture = CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InvariantCulture;
}
[STAThread]
private static void Main(){
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}
}
}