Added scheduler and added more graceful error handling

This commit is contained in:
2026-04-14 18:26:09 +05:00
parent 3aa8b85c59
commit 5329b69c2e
5 changed files with 124 additions and 17 deletions
+17
View File
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="AppSettings.txt" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="TaskScheduler" Version="2.12.0" />
</ItemGroup>
</Project>