Update project configuration, add service installation scripts, and create README documentation

This commit is contained in:
2026-01-05 07:44:35 +11:00
parent 9fcad874b9
commit 9070768fe7
7 changed files with 236 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
@@ -21,4 +21,13 @@
<Compile Remove="bin/**/*.cs" />
</ItemGroup>
<ItemGroup>
<None Update="install-service.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="uninstall-service.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>