Skip to content

Commit 8ce4b15

Browse files
committed
[ksqlDB.RestApi.Client]: solution upgraded to .NET 9
1 parent 801fbcf commit 8ce4b15

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
4-
<LangVersion>12.0</LangVersion>
3+
<TargetFramework>net9.0</TargetFramework>
4+
<LangVersion>13.0</LangVersion>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

Samples/ksqlDB.RestApi.Client.Sample/ksqlDB.RestApi.Client.Samples.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
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
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="ksqlDb.RestApi.Client" Version="6.5.0" />
13-
<!-- <ProjectReference Include="..\..\ksqlDb.RestApi.Client\ksqlDb.RestApi.Client.csproj" /> -->
12+
<!-- <PackageReference Include="ksqlDb.RestApi.Client" Version="7.0.0" /> -->
13+
<ProjectReference Include="..\..\ksqlDb.RestApi.Client\ksqlDb.RestApi.Client.csproj" />
1414
<!-- <PackageReference Include="ksqlDb.RestApi.Client.ProtoBuf" Version="4.0.0" /> -->
1515
<ProjectReference Include="..\..\ksqlDb.RestApi.Client.ProtoBuf\ksqlDb.RestApi.Client.ProtoBuf.csproj" />
1616

ksqlDb.RestApi.Client.ProtoBuf/ksqlDb.RestApi.Client.ProtoBuf.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
55
<Authors>Tomas Fabian</Authors>
66
<Company />
77
<PackageProjectUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/tree/main/ksqlDb.RestApi.Client.ProtoBuf</PackageProjectUrl>
88
<RepositoryUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet</RepositoryUrl>
99
<Copyright>@tomasfabian</Copyright>
1010
<Description>
1111
ksqlDB.RestApi.Client.ProtoBuf adds support for Protobuf content type. ksqlDB.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push queries.
12-
Targets .NET 6, .NET 7, and .NET 8.
12+
Targets .NET 7, .NET 8, and .NET 9.
1313
Documentation for the library can be found at https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/README.md.
1414
</Description>
1515
<PackageTags>ksql ksqlDB ProtoBuf LINQ .NET csharp push query</PackageTags>
1616
<Version>4.0.0</Version>
1717
<AssemblyVersion>4.0.0.0</AssemblyVersion>
18-
<LangVersion>12.0</LangVersion>
18+
<LangVersion>13.0</LangVersion>
1919
<ImplicitUsings>enable</ImplicitUsings>
2020
<Nullable>enable</Nullable>
2121
<PackageReleaseNotes>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/ksqlDb.RestApi.Client.ProtoBuf/ChangeLog.md</PackageReleaseNotes>
@@ -24,8 +24,8 @@
2424
</PropertyGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="ksqlDb.RestApi.Client" Version="6.0.0" />
28-
<!-- <ProjectReference Include="..\ksqlDb.RestApi.Client\ksqlDb.RestApi.Client.csproj" /> -->
27+
<!-- <PackageReference Include="ksqlDb.RestApi.Client" Version="7.0.0" /> -->
28+
<ProjectReference Include="..\ksqlDb.RestApi.Client\ksqlDb.RestApi.Client.csproj" />
2929
<PackageReference Include="protobuf-net" Version="3.2.0" />
3030
</ItemGroup>
3131

ksqlDb.RestApi.Client/ksqlDb.RestApi.Client.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net7.0;net8.0;net9.0</TargetFrameworks>
55
<Authors>Tomas Fabian</Authors>
66
<Company />
77
<PackageProjectUrl>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/tree/main/ksqlDb.RestApi.Client</PackageProjectUrl>
@@ -11,13 +11,13 @@
1111
ksqlDB.RestApi.Client is a C# LINQ-enabled client API for issuing and consuming ksqlDB push queries.
1212
You can continually process computations over unbounded streams of data.
1313
It also enables the execution of SQL statements via the Rest API such as inserting records into streams and creating tables, types, etc. or executing admin operations such as listing streams.
14-
Targets .NET 6, .NET 7, .NET 8, and .NET Standard 2.0.
14+
Targets .NET 7, .NET 8, .NET 9, and .NET Standard 2.0.
1515
Documentation for the library can be found at https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/README.md.
1616
</Description>
1717
<PackageTags>ksql ksqlDB LINQ .NET csharp push query</PackageTags>
18-
<Version>6.5.0</Version>
19-
<AssemblyVersion>6.5.0.0</AssemblyVersion>
20-
<LangVersion>12.0</LangVersion>
18+
<Version>7.0.0</Version>
19+
<AssemblyVersion>7.0.0.0</AssemblyVersion>
20+
<LangVersion>13.0</LangVersion>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222
<PackageReleaseNotes>https://github.com/tomasfabian/ksqlDB.RestApi.Client-DotNet/blob/main/ksqlDb.RestApi.Client/ChangeLog.md</PackageReleaseNotes>
2323
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)