Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-05-07 22:18:04 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-05-07 22:24:39 +0300
commitdf556366579cbe9c28bb71a876c64e7b90f3ebf7 (patch)
treeebaa6aca25f8b184906a1dc37f853cad2f385b19 /WaitingFelForm.cs
parent78d43197c2c7dfc778d2fd044ab9112e40d33a6a (diff)
ClickOnce ready. Finally installer and auto update.
Diffstat (limited to 'WaitingFelForm.cs')
-rw-r--r--WaitingFelForm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/WaitingFelForm.cs b/WaitingFelForm.cs
index 1cc8f37b..6d8a6788 100644
--- a/WaitingFelForm.cs
+++ b/WaitingFelForm.cs
@@ -74,7 +74,7 @@ namespace com.clusterrr.hakchi_gui
try
{
var process = new Process();
- var fileName = Path.Combine(Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "driver"), "nesmini_driver.exe");
+ var fileName = Path.Combine(Path.Combine(Program.BaseDirectoryInternal, "driver"), "nesmini_driver.exe");
process.StartInfo.FileName = fileName;
process.Start();
}