Skip to content

Commit af20918

Browse files
vkuttypCopilot
andcommitted
feat: upgrade target framework to net10.0
- Update all csproj files: net9.0 → net10.0 - Update CI workflow: dotnet-version 9.0.x → 10.0.x Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 76fb4de commit af20918

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET 9.0
1818
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: '9.0.x'
20+
dotnet-version: '10.0.x'
2121

2222
- name: Restore dependencies
2323
run: dotnet restore

src/SqlDotnetty.Core/SqlDotnetty.Core.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>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>CosmoSQLClient.Core</AssemblyName>
66
<RootNamespace>CosmoSQLClient.Core</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>

src/SqlDotnetty.MsSql/SqlDotnetty.MsSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<PropertyGroup>
16-
<TargetFramework>net9.0</TargetFramework>
16+
<TargetFramework>net10.0</TargetFramework>
1717
<AssemblyName>CosmoSQLClient.MsSql</AssemblyName>
1818
<RootNamespace>CosmoSQLClient.MsSql</RootNamespace>
1919
<ImplicitUsings>enable</ImplicitUsings>

src/SqlDotnetty.MySql/SqlDotnetty.MySql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<PropertyGroup>
16-
<TargetFramework>net9.0</TargetFramework>
16+
<TargetFramework>net10.0</TargetFramework>
1717
<AssemblyName>CosmoSQLClient.MySql</AssemblyName>
1818
<RootNamespace>CosmoSQLClient.MySql</RootNamespace>
1919
<ImplicitUsings>enable</ImplicitUsings>

src/SqlDotnetty.Postgres/SqlDotnetty.Postgres.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<PropertyGroup>
16-
<TargetFramework>net9.0</TargetFramework>
16+
<TargetFramework>net10.0</TargetFramework>
1717
<AssemblyName>CosmoSQLClient.Postgres</AssemblyName>
1818
<RootNamespace>CosmoSQLClient.Postgres</RootNamespace>
1919
<ImplicitUsings>enable</ImplicitUsings>

src/SqlDotnetty.Sqlite/SqlDotnetty.Sqlite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<PropertyGroup>
12-
<TargetFramework>net9.0</TargetFramework>
12+
<TargetFramework>net10.0</TargetFramework>
1313
<AssemblyName>CosmoSQLClient.Sqlite</AssemblyName>
1414
<RootNamespace>CosmoSQLClient.Sqlite</RootNamespace>
1515
<ImplicitUsings>enable</ImplicitUsings>

tests/SqlDotnetty.Core.Tests/SqlDotnetty.Core.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-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>CosmoSQLClient.Core.Tests</AssemblyName>
66
<RootNamespace>CosmoSQLClient.Core.Tests</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>

tests/SqlDotnetty.MsSql.Tests/SqlDotnetty.MsSql.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-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>CosmoSQLClient.MsSql.Tests</AssemblyName>
66
<RootNamespace>CosmoSQLClient.MsSql.Tests</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>

tests/SqlDotnetty.MySql.Tests/SqlDotnetty.MySql.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-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>CosmoSQLClient.MySql.Tests</AssemblyName>
66
<RootNamespace>CosmoSQLClient.MySql.Tests</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>

tests/SqlDotnetty.Postgres.Tests/SqlDotnetty.Postgres.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-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>CosmoSQLClient.Postgres.Tests</AssemblyName>
66
<RootNamespace>CosmoSQLClient.Postgres.Tests</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)