Skip to content

Commit 3f762f2

Browse files
committed
making sure we're all good with .NET 9. Bumps to 1.9
1 parent f6a5ffd commit 3f762f2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

src/JasperFx.Core/JasperFx.Core.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>Common extension methods and reflection helpers used by JasperFx projects</Description>
5-
<Version>1.8.0</Version>
5+
<Version>1.9.0</Version>
66
<Authors>Jeremy D. Miller</Authors>
77
<AssemblyName>JasperFx.Core</AssemblyName>
88
<PackageId>JasperFx.Core</PackageId>
@@ -20,4 +20,8 @@
2020
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
2121
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
2222
</ItemGroup>
23+
24+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
25+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
26+
</ItemGroup>
2327
</Project>

0 commit comments

Comments
 (0)