Files
UnrealEngineUWP/Engine/Extras/ThirdPartyNotUE/crunchersharp/Program.cs
robert millar 947cbfaf27 Integrating RawPDB from Molecular Matters into crunchersharp.
Can load all types from a 2.5gb Win64 monolithic game pdb in ~15s, plus an additional 15s to update the winforms UI.

#rb none

[CL 23685300 by robert millar in ue5-main branch]
2023-01-13 15:31:28 -05:00

26 lines
685 B
C#

using System;
using System.Windows.Forms;
namespace CruncherSharp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var mainForm = new CruncherSharpForm();
if (args.Length > 0)
{
// Let's assume our arg is indeed the full path of a pdb file...
mainForm.LoadPdb(args[0], false);
}
Application.Run(mainForm);
}
}
}