Skip to content

Commit 7f948c7

Browse files
authored
Add support for net9.0
2 parents 608b54f + 3369d29 commit 7f948c7

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Splitio.Redis/Splitio.Redis.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netstandard2.0;net461;net45</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netstandard2.0;net461;net45</TargetFrameworks>
55
<AssemblyName>Splitio.Redis</AssemblyName>
66
<PackageId>Splitio.Redis</PackageId>
77
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
@@ -16,7 +16,7 @@
1616
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1717
</PropertyGroup>
1818

19-
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
19+
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net9.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
2020
<DefineConstants>NET_LATEST</DefineConstants>
2121
</PropertyGroup>
2222

src/Splitio/Splitio.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netstandard2.0;net461;net45</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netstandard2.0;net461;net45</TargetFrameworks>
55
<AssemblyName>Splitio</AssemblyName>
66
<PackageId>Splitio</PackageId>
77
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
@@ -17,7 +17,7 @@
1717
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1818
</PropertyGroup>
1919

20-
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
20+
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net9.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
2121
<DefineConstants>NET_LATEST</DefineConstants>
2222
</PropertyGroup>
2323

@@ -27,7 +27,7 @@
2727
<PackageReference Include="murmurhash-signed" Version="1.0.3" />
2828
</ItemGroup>
2929

30-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
30+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net9.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net5.0'">
3131
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.32" />
3232
<PackageReference Include="System.IO.FileSystem.Watcher" Version="4.3.0" />
3333
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />

tests/Splitio-tests/Splitio-tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
<RootNamespace>Splitio_Tests</RootNamespace>
66
</PropertyGroup>
77

@@ -16,7 +16,7 @@
1616
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
1717
</ItemGroup>
1818

19-
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
19+
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'">
2020
<DefineConstants>NETCORE</DefineConstants>
2121
</PropertyGroup>
2222

tests/Splitio.Integration-events-tests/Splitio.Integration-events-tests.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-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
<RootNamespace>Splitio.Integration_events_tests</RootNamespace>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

tests/Splitio.Integration-redis-tests/Splitio.Integration-redis-tests.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-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
<RootNamespace>Splitio.Integration_redis_tests</RootNamespace>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

tests/Splitio.Integration-tests/Splitio.Integration-tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
<RootNamespace>Splitio.Integration_tests</RootNamespace>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -13,7 +13,7 @@
1313
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
1414
</ItemGroup>
1515

16-
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
16+
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'">
1717
<DefineConstants>NET_LATEST</DefineConstants>
1818
</PropertyGroup>
1919

tests/Splitio.TestSupport/Splitio.TestSupport.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-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
<Version>3.3.1</Version>
66
</PropertyGroup>
77

tests/Splitio.Tests.Common/Splitio.Tests.Common.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-
<TargetFrameworks>net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net472</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)