initial commit

This commit is contained in:
2025-06-13 23:48:23 +02:00
parent ff24a123dd
commit 22b8e185b5
83 changed files with 75161 additions and 0 deletions

21
Watcher/Watcher.csproj Normal file
View File

@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- EF Core Design Tools -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6" />
<!-- Pomelo MySQL EF Core Provider -->
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.0" />
<!-- Auth via OpenID Connect + Cookies -->
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.6" />
</ItemGroup>
</Project>