Добавьте файлы проекта.

This commit is contained in:
Vladimir
2024-05-15 18:06:17 +04:00
committed by Vladimir
parent a0ef3cf460
commit a103269e31
13 changed files with 2434 additions and 0 deletions

25
Program.cs Normal file
View File

@@ -0,0 +1,25 @@
using Process_Auto_Relaunch;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using System.Windows.Forms;
using RelaunchProcess.Properties;
namespace RelaunchProcess
{
internal static class Program
{
/// <summary>
/// Ãëàâíàÿ òî÷êà âõîäà äëÿ ïðèëîæåíèÿ.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}