We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8155302 commit b3f70b8Copy full SHA for b3f70b8
1 file changed
FlashpointInstaller/src/Forms/Finish.cs
@@ -15,11 +15,11 @@ private void FinishDownload_Exit(object sender, EventArgs e)
15
{
16
if (RunOnClose.Checked)
17
18
- var flashpointProcess = new Process();
19
- flashpointProcess.StartInfo.UseShellExecute = true;
20
- flashpointProcess.StartInfo.FileName = "Flashpoint.exe";
21
- flashpointProcess.StartInfo.WorkingDirectory = Path.Combine(FPM.Main.DestinationPath.Text, "Launcher");
22
- flashpointProcess.Start();
+ new Process() { StartInfo = {
+ UseShellExecute = true,
+ FileName = "Flashpoint.exe",
+ WorkingDirectory = Path.Combine(FPM.Main.DestinationPath.Text, "Launcher")
+ }}.Start();
23
}
24
25
Environment.Exit(0);
0 commit comments