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 /WaitingClovershellForm.cs
parent78d43197c2c7dfc778d2fd044ab9112e40d33a6a (diff)
ClickOnce ready. Finally installer and auto update.
Diffstat (limited to 'WaitingClovershellForm.cs')
-rw-r--r--WaitingClovershellForm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/WaitingClovershellForm.cs b/WaitingClovershellForm.cs
index 39a51045..2cf98571 100644
--- a/WaitingClovershellForm.cs
+++ b/WaitingClovershellForm.cs
@@ -59,7 +59,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();
}