Files
CineBook/CineBook.csproj

18 lines
689 B
XML

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