CineBook Projekt hinzugefügt

This commit is contained in:
2026-03-12 14:28:52 +01:00
commit b6357c9b8a
33 changed files with 2857 additions and 0 deletions

17
CineBook.csproj Normal file
View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyName>CineBook</AssemblyName>
<RootNamespace>CineBook</RootNamespace>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
</PropertyGroup>
<ItemGroup>
<!-- Quelle: https://mysqlconnector.net/ (abgerufen: 2026-01-29) -->
<PackageReference Include="MySqlConnector" Version="2.3.7" />
<!-- BCrypt nicht nötig, da SHA256 aus System.Security.Cryptography verwendet wird -->
</ItemGroup>
</Project>