From 60dcc3aa5239192ce4c38012422b0da69538959a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:49:08 +0000 Subject: [PATCH 1/2] Bump Microsoft.Extensions.DependencyInjection from 9.0.13 to 10.0.5 --- updated-dependencies: - dependency-name: Microsoft.Extensions.DependencyInjection dependency-version: 10.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- DIDemo/DIDemo.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DIDemo/DIDemo.csproj b/DIDemo/DIDemo.csproj index 4158507..75f73cc 100644 --- a/DIDemo/DIDemo.csproj +++ b/DIDemo/DIDemo.csproj @@ -10,7 +10,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + From d9010b6480cec06bd55769bff8dbb6653dd3dad4 Mon Sep 17 00:00:00 2001 From: Copilot Date: Sun, 29 Mar 2026 18:58:13 -0400 Subject: [PATCH 2/2] Fix CI: update .NET SDK version to 9.0.x and actions to v4 The CI workflow was using .NET 6.0.x SDK and outdated action versions, causing build failures with .NET 9.0 target framework and 10.x packages. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/aspnetcore.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/aspnetcore.yml b/.github/workflows/aspnetcore.yml index c7f2cce..5ac7631 100644 --- a/.github/workflows/aspnetcore.yml +++ b/.github/workflows/aspnetcore.yml @@ -8,11 +8,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: '6.0.x' + dotnet-version: '9.0.x' - name: Install dependencies run: dotnet restore - name: Build