Skip to content

Commit 4cd99b8

Browse files
committed
feat: add .net 9 support
1 parent c8f5931 commit 4cd99b8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/HeimGuard/HeimGuard.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -27,6 +27,10 @@
2727
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.11" />
2828
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
2929
</ItemGroup>
30+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
31+
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="9.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
33+
</ItemGroup>
3034

3135
<PropertyGroup>
3236
<AssemblyVersion>1.0.1</AssemblyVersion>

0 commit comments

Comments
 (0)