Delete Program.cs
This commit is contained in:
parent
173e0d391d
commit
f433b10914
1 changed files with 0 additions and 31 deletions
|
@ -1,31 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows.Forms;
|
|
||||||
|
|
||||||
namespace Privatezilla
|
|
||||||
{
|
|
||||||
static class Program
|
|
||||||
{
|
|
||||||
|
|
||||||
internal static string GetCurrentVersionTostring() => new Version(Application.ProductVersion).ToString(3);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The main entry point for the application.
|
|
||||||
/// </summary>
|
|
||||||
[STAThread]
|
|
||||||
static void Main()
|
|
||||||
{
|
|
||||||
Application.EnableVisualStyles();
|
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
|
||||||
|
|
||||||
if (Environment.OSVersion.Version.Build < 9200)
|
|
||||||
|
|
||||||
MessageBox.Show(Properties.Resources.msgAppCompatibility, "Privatezilla", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
||||||
else
|
|
||||||
Application.Run(new MainWindow());
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue