From e2ad5479c25b7e1172553094bc99c4c89a9754d3 Mon Sep 17 00:00:00 2001 From: mirolimmajidov Date: Wed, 26 Nov 2025 17:20:32 +0500 Subject: [PATCH 1/2] Update target framework to net10.0 and version to 10.0.0 --- src/InMemoryMessaging.csproj | 4 ++-- tests/InMemoryMessaging.Tests/InMemoryMessaging.Tests.csproj | 2 +- tests/Services/UsersService/UsersService.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/InMemoryMessaging.csproj b/src/InMemoryMessaging.csproj index 9639b70..80dec2d 100644 --- a/src/InMemoryMessaging.csproj +++ b/src/InMemoryMessaging.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable InMemoryMessaging MirolimMajidov @@ -14,7 +14,7 @@ en AlifCapital.InMemoryMessaging AlifCapital.InMemoryMessaging - 1.0.14 + 10.0.0 diff --git a/tests/InMemoryMessaging.Tests/InMemoryMessaging.Tests.csproj b/tests/InMemoryMessaging.Tests/InMemoryMessaging.Tests.csproj index 91be37d..54df8dc 100644 --- a/tests/InMemoryMessaging.Tests/InMemoryMessaging.Tests.csproj +++ b/tests/InMemoryMessaging.Tests/InMemoryMessaging.Tests.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable false diff --git a/tests/Services/UsersService/UsersService.csproj b/tests/Services/UsersService/UsersService.csproj index fa50f6c..aafe8d5 100644 --- a/tests/Services/UsersService/UsersService.csproj +++ b/tests/Services/UsersService/UsersService.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable From fb07950a31fd7da3835ffaed6e2e9c74462b608b Mon Sep 17 00:00:00 2001 From: mirolimmajidov Date: Wed, 26 Nov 2025 17:21:18 +0500 Subject: [PATCH 2/2] Update .NET version to 10.0.x in CI configuration files --- .github/workflows/build.yml | 2 +- .github/workflows/push-nuget-package.yml | 2 +- .github/workflows/run-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d99d955..3f805e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore "src/InMemoryMessaging.csproj" diff --git a/.github/workflows/push-nuget-package.yml b/.github/workflows/push-nuget-package.yml index 8f8aae1..6c728ca 100644 --- a/.github/workflows/push-nuget-package.yml +++ b/.github/workflows/push-nuget-package.yml @@ -24,7 +24,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Add GitHub Packages source run: dotnet nuget add source https://nuget.pkg.github.com/alifcapital/index.json --name github --username ${{ github.actor }} --password ${{ secrets.InMemoryMessaging_NuGet_SECRET }} --store-password-in-clear-text diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1519a39..8a7b468 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -34,7 +34,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore ${{ inputs.unit_and_functionality_tests_project_path }}