From 0ded289b1fca20d743842b487fcdc870c3fa549d Mon Sep 17 00:00:00 2001 From: khwezi Date: Sun, 8 Mar 2026 14:47:01 +0200 Subject: [PATCH] Fixed pipeline to support .net 10 --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7990ca5..232f48e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,12 +18,12 @@ steps: - git checkout ${DRONE_COMMIT} - name: dotnet build - image: mcr.microsoft.com/dotnet/sdk:8.0 + image: mcr.microsoft.com/dotnet/sdk:10.0 commands: - dotnet build --configuration Release - name: dotnet test - image: mcr.microsoft.com/dotnet/sdk:8.0 + image: mcr.microsoft.com/dotnet/sdk:10.0 commands: - dotnet test --configuration Release --- @@ -58,7 +58,7 @@ steps: - git checkout ${DRONE_COMMIT} - name: dotnet publish - image: mcr.microsoft.com/dotnet/sdk:8.0 + image: mcr.microsoft.com/dotnet/sdk:10.0 commands: - dotnet publish --configuration Release