From 85aabd93da5f3d0c6254530dec7ccb49c02a628c Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 27 Jan 2026 19:07:18 -0500 Subject: [PATCH] Fix up some project/executable names --- .gitea/workflows/main.yml | 2 +- Service/Service.csproj | 1 + StatusWindow/StatusWindow.csproj | 1 + StatusWindow/WindowSource.cs | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) 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 {