unify some common project properties into Directory.Build.props, bump to .net 10

This commit is contained in:
LukeFZ
2025-12-15 04:55:56 +01:00
parent 5253bfb34a
commit 9718c3025b
10 changed files with 15 additions and 30 deletions

View File

@@ -1,17 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Any'">
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>