Files
LehrerApp/Directory.Build.props
2026-03-29 23:47:31 +02:00

26 lines
812 B
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>