-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (22 loc) · 891 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (22 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<WarningsAsErrors>CS0108</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.2.5</AvaloniaVersion>
</PropertyGroup>
<PropertyGroup>
<!-- AVLN3001: Not using the default Avalonia runtime loader so this doesn't matter -->
<NoWarn>$(NoWarn);AVLN3001</NoWarn>
</PropertyGroup>
<PropertyGroup>
<!--Some bug with SDK 8.0.403
https://github.com/dotnet/sdk/issues/44026-->
<NoWarn>$(NoWarn);CsWinRT1028</NoWarn>
</PropertyGroup>
</Project>