Skip to content

Commit f1a9a5f

Browse files
Updated to .net 9 for release of 1.0.2 of the nuget package
1 parent f5ca530 commit f1a9a5f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Demos/DevsRule.Demo.BasicConsole/DevsRule.Demo.BasicConsole.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="Autofac" Version="8.2.1" />
1212
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="10.0.0" />
13-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
14-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
15-
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
13+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
14+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
15+
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

Source/DevsRule.Core/DevsRule.Core.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<SignAssembly>True</SignAssembly>
@@ -18,12 +18,12 @@ enabling seamless integration and dynamic rule management.</Description>
1818
<PackageIcon>icon-128.png</PackageIcon>
1919
<RepositoryType></RepositoryType>
2020
<PackageProjectUrl>https://github.com/code-dispenser/DevsRule</PackageProjectUrl>
21-
<FileVersion>1.0.1</FileVersion>
21+
<FileVersion>1.0.2</FileVersion>
2222
<Copyright>Copyright (c) 2023 Paul Kent.</Copyright>
23-
<PackageVersion>1.0.1</PackageVersion>
24-
<AssemblyVersion>1.0.1</AssemblyVersion>
25-
<InformationalVersion>1.0.1</InformationalVersion>
26-
<Version>1.0.1</Version>
23+
<PackageVersion>1.0.2</PackageVersion>
24+
<AssemblyVersion>1.0.2</AssemblyVersion>
25+
<InformationalVersion>1.0.2</InformationalVersion>
26+
<Version>1.0.2</Version>
2727
<RepositoryUrl>https://github.com/code-dispenser/DevsRule</RepositoryUrl>
2828
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2929
<Deterministic>true</Deterministic>

Tests/DevsRule.Core.Tests.Integration/DevsRule.Core.Tests.Integration.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

Tests/DevsRule.Core.Tests.Unit/DevsRule.Core.Tests.Unit.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

Tests/DevsRule.Tests.SharedDataAndFixtures/DevsRule.Tests.SharedDataAndFixtures.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)