-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
33 lines (30 loc) · 942 Bytes
/
Copy pathProgram.cs
File metadata and controls
33 lines (30 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Diagnostics;
using System.IO;
using Microsoft.Extensions.Configuration;
namespace Neuz_Launcher
{
internal class Program
{
static void Main(string[] args)
{
var configuration = new ConfigurationBuilder()
.SetBasePath(AppContext.BaseDirectory)
.AddJsonFile("neuz.json", optional: false, reloadOnChange: true)
.Build();
string exeName = configuration["ExecutableName"] ?? "Neuz.exe";
string bootString = configuration["BootString"] ?? "sunkist";
try
{
Process.Start(exeName, bootString);
}
catch (Exception ex)
{
Console.WriteLine($"Error launching process: {ex.Message}");
Console.ReadLine();
Environment.Exit(1);
}
Environment.Exit(0);
}
}
}