From b234db191448b60d0b658434510b272d60af0b14 Mon Sep 17 00:00:00 2001 From: Konstantin Dinev Date: Thu, 6 Feb 2025 12:03:46 +0200 Subject: [PATCH] feat: updating to .net9 --- .github/workflows/dotnet.yml | 4 ++-- StarCraft2Models/StarCraft2Models.csproj | 6 +++--- azure-pipelines.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 3577c12..f2bf778 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -14,9 +14,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/StarCraft2Models/StarCraft2Models.csproj b/StarCraft2Models/StarCraft2Models.csproj index 619a3f7..5ebe5c5 100644 --- a/StarCraft2Models/StarCraft2Models.csproj +++ b/StarCraft2Models/StarCraft2Models.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 True README.md https://github.com/BellumGens/StarCraft2Models @@ -9,9 +9,9 @@ Bellum Gens https://bellumgens.com 2019-2022 Bellum Gens - 8.0.1.0 + 9.0.0.0 Konstantin Dinev - 8.0.1 + 9.0.0 avatar_BG_blood.png .NET models for StarCraft 2 battle.net API entities. LICENSE diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ae4b66e..02afe04 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,9 +16,9 @@ variables: steps: - task: UseDotNet@2 - displayName: 'Use .Net sdk 8.x' + displayName: 'Use .Net sdk 9.x' inputs: - version: 8.x + version: 9.x - task: NuGetToolInstaller@0