Initial
This commit is contained in:
25
Directory.Build.props
Normal file
25
Directory.Build.props
Normal 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>
|
||||
Reference in New Issue
Block a user