Fix up some project/executable names
Some checks failed
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Failing after 9s

This commit is contained in:
2026-01-27 19:07:18 -05:00
parent 853e8eab0d
commit 85aabd93da
4 changed files with 4 additions and 2 deletions

View File

@@ -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: |

View File

@@ -7,6 +7,7 @@
<Nullable>enable</Nullable>
<RootNamespace>HardwareMonitorStatusWindow.Service</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>HardwareMonitorService</AssemblyName>
</PropertyGroup>
<ItemGroup>

View File

@@ -12,6 +12,7 @@
<ApplicationIcon>Resources\Application.ico</ApplicationIcon>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RootNamespace>HardwareMonitorStatusWindow.StatusWindow</RootNamespace>
<AssemblyName>HardwareMonitorStatusWindow</AssemblyName>
</PropertyGroup>
<ItemGroup>

View File

@@ -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
{