This commit is contained in:
2026-03-29 23:47:31 +02:00
commit 216d5d2280
75 changed files with 5702 additions and 0 deletions

25
Directory.Build.props Normal file
View File

@@ -0,0 +1,25 @@
<Project>
<!--
Gemeinsame Eigenschaften für alle Projekte in der Solution.
Wird automatisch von MSBuild in jedem Projekt-Build eingebunden.
-->
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- Unterdrückt den .NET 9 STS-Ablauf-Hinweis im Build-Output -->
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
</PropertyGroup>
<!--
Gemeinsame Analysator-Einstellungen.
CS8618: Non-nullable field in MVVM oft falsch-positiv durch
[ObservableProperty] Source Generator.
-->
<PropertyGroup>
<NoWarn>CS8618</NoWarn>
</PropertyGroup>
</Project>