Try to fix configuration of service

This commit is contained in:
2018-05-24 21:04:53 -04:00
parent 3c961ba28d
commit e956bf6553
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@
<tags>cpu</tags>
</metadata>
<files>
<file src="Window\bin\$configuration$\**\*" target="lib\net45\Window" exclude="*.pdb;*.nupkg;*.vshost.*" />
<file src="Window\bin\$configuration$\**\*" target="lib\net45" exclude="*.pdb;*.nupkg;*.vshost.*" />
<file src="Service\bin\$configuration$\**\*" target="lib\net45\Service" exclude="*.pdb;*.nupkg;*.vshost.*" />
</files>
</package>

View File

@@ -45,7 +45,7 @@ namespace SystemTemperatureStatusWindow
if (path != null)
{
var fileName = Path.Combine(path, "SystemTemperatureService.exe");
var fileName = Path.Combine(path, "Service", "SystemTemperatureService.exe");
Process.Start(fileName, "-install");
}