diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index ca37e80..401721a 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -25,7 +25,7 @@ jobs: scheme: calver - name: Publish Application - run: dotnet publish HardwareMonitorStatusWindow.csproj -r win-x64 -c Debug -o publish + run: dotnet publish StatusWindow.csproj -r win-x64 -c Debug -o publish - name: Create Velopack Release run: | diff --git a/Service/Service.csproj b/Service/Service.csproj index 42be8f8..c6e3835 100644 --- a/Service/Service.csproj +++ b/Service/Service.csproj @@ -7,6 +7,7 @@ enable HardwareMonitorStatusWindow.Service app.manifest + HardwareMonitorService diff --git a/StatusWindow/StatusWindow.csproj b/StatusWindow/StatusWindow.csproj index ad455f1..e523247 100644 --- a/StatusWindow/StatusWindow.csproj +++ b/StatusWindow/StatusWindow.csproj @@ -12,6 +12,7 @@ Resources\Application.ico true HardwareMonitorStatusWindow.StatusWindow + HardwareMonitorStatusWindow diff --git a/StatusWindow/WindowSource.cs b/StatusWindow/WindowSource.cs index c36db9c..d924e3b 100644 --- a/StatusWindow/WindowSource.cs +++ b/StatusWindow/WindowSource.cs @@ -40,7 +40,7 @@ internal class WindowSource : IWindowSource, IDisposable if (path != null) { - var fileName = Path.Combine(path, "Service.exe"); + var fileName = Path.Combine(path, "HardwareMonitorService.exe"); var startInfo = new ProcessStartInfo {