28 lines
818 B
C#
28 lines
818 B
C#
|
using PdbFind.Gui.Properties;
|
||
|
|
||
|
namespace PdbFind.Gui
|
||
|
{
|
||
|
internal static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
// To customize application configuration such as set high DPI settings or default font,
|
||
|
// see https://aka.ms/applicationconfiguration.
|
||
|
ApplicationConfiguration.Initialize();
|
||
|
|
||
|
if (Settings.Default.UpgradeNeeded)
|
||
|
{
|
||
|
Settings.Default.Upgrade();
|
||
|
Settings.Default.UpgradeNeeded = false;
|
||
|
Settings.Default.Save();
|
||
|
Settings.Default.Reload();
|
||
|
}
|
||
|
|
||
|
Application.Run(new FormPdbFind());
|
||
|
}
|
||
|
}
|
||
|
}
|