Files
UnrealEngineUWP/Engine/Source/ThirdParty/DotNetZip/Tools/WinFormsApp/Program.cs
Wes Hunt 451f73e5f5 Adding in the rest of the DotNetZip source that I missed earlier.
[CL 2656980 by Wes Hunt in Main branch]
2015-08-14 18:35:06 -04:00

20 lines
449 B
C#

using System;
using System.Windows.Forms;
namespace Ionic.Zip.Forms
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ZipForm(args));
}
}
}