From 12c43c86494926d426949428a02ea7b76da5f4b4 Mon Sep 17 00:00:00 2001 From: Todd Lang Date: Mon, 15 Dec 2025 11:58:50 -0500 Subject: [PATCH] Updating to .net10 and package references --- .github/dependabot.yml | 4 +-- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/deploy.yml | 4 +-- Directory.Build.props | 4 +-- Directory.Packages.props | 26 +++++++++---------- .../Core/Common.Core/Common.Core.csproj | 2 +- .../DynamoDb/WorldDynamoDbRepository.cs | 4 +-- .../WorldDynamoDbRepositoryOptions.cs | 2 +- .../Core/Server.Core/Server.Core.csproj | 2 +- .../Program.cs | 2 ++ 11 files changed, 28 insertions(+), 26 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d50c93a..8888b22 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,8 +3,8 @@ updates: - package-ecosystem: "nuget" directory: "/" schedule: - interval: "weekly" + interval: "monthly" - package-ecosystem: "github-actions" directory: ".github/workflows/" schedule: - interval: "weekly" + interval: "monthly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f497f1..9c933bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ on: - '.github/workflows/ci.yml' env: - DOTNET_VERSION: 9.0.305 + DOTNET_VERSION: 10.0.101 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index bdbd01b..e4af393 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,7 +13,7 @@ on: - '.github/workflows/codeql.yml' env: - DOTNET_VERSION: 9.0.305 + DOTNET_VERSION: 10.0.101 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 42ad59d..294a94c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,8 +23,8 @@ on: - '.github/workflows/deploy.yml' env: - TERRAFORM_VERSION: 1.13.3 - DOTNET_VERSION: 9.0.305 + TERRAFORM_VERSION: 1.14.2 + DOTNET_VERSION: 10.0.101 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} diff --git a/Directory.Build.props b/Directory.Build.props index 86fb708..1f794e2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,9 +1,9 @@ - 0.1.0 + 0.2.0 - net9.0 + net10.0 enable enable true diff --git a/Directory.Packages.props b/Directory.Packages.props index 5145cfa..3ca80ea 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,22 +6,22 @@ - - - - - + + + + - + - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/src/Common/Core/Common.Core/Common.Core.csproj b/src/Common/Core/Common.Core/Common.Core.csproj index a7fd210..5d4ad26 100644 --- a/src/Common/Core/Common.Core/Common.Core.csproj +++ b/src/Common/Core/Common.Core/Common.Core.csproj @@ -1,7 +1,7 @@ - + diff --git a/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepository.cs b/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepository.cs index f5cc07a..bec8e94 100644 --- a/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepository.cs +++ b/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepository.cs @@ -1,5 +1,5 @@ -using InjectableAWS; -using InjectableAWS.Repository; +using Kiyote.AWS; +using Kiyote.AWS.DynamoDb; namespace Server.Core.DynamoDb; diff --git a/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepositoryOptions.cs b/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepositoryOptions.cs index d6ef8b8..80c0555 100644 --- a/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepositoryOptions.cs +++ b/src/Server/Core/Server.Core/DynamoDb/WorldDynamoDbRepositoryOptions.cs @@ -1,4 +1,4 @@ -using InjectableAWS.Repository; +using Kiyote.AWS; namespace Server.Core.DynamoDb; diff --git a/src/Server/Core/Server.Core/Server.Core.csproj b/src/Server/Core/Server.Core/Server.Core.csproj index 5a58c8c..04c8131 100644 --- a/src/Server/Core/Server.Core/Server.Core.csproj +++ b/src/Server/Core/Server.Core/Server.Core.csproj @@ -1,6 +1,6 @@ - + diff --git a/test/Common/Worlds/Common.Worlds.Builder.DelaunayVoronoi.Benchmarks/Program.cs b/test/Common/Worlds/Common.Worlds.Builder.DelaunayVoronoi.Benchmarks/Program.cs index 94afb61..be35183 100644 --- a/test/Common/Worlds/Common.Worlds.Builder.DelaunayVoronoi.Benchmarks/Program.cs +++ b/test/Common/Worlds/Common.Worlds.Builder.DelaunayVoronoi.Benchmarks/Program.cs @@ -1,4 +1,6 @@ using BenchmarkDotNet.Running; using Common.Worlds.Builder.DelaunayVoronoi.Benchmarks; +/* BenchmarkRunner.Run(); +*/ \ No newline at end of file