Skip to content

Commit

Permalink
Merge pull request #10 from BellumGens/dotnet9
Browse files Browse the repository at this point in the history
feat: updating to .net9
  • Loading branch information
kdinev authored Feb 6, 2025
2 parents f414f68 + b234db1 commit 9d9dd7d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions StarCraft2Models/StarCraft2Models.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/BellumGens/StarCraft2Models</RepositoryUrl>
<PackageTags>starcraft, starcraft 2, models, starcraft 2 models</PackageTags>
<Company>Bellum Gens</Company>
<PackageProjectUrl>https://bellumgens.com</PackageProjectUrl>
<Copyright>2019-2022 Bellum Gens</Copyright>
<AssemblyVersion>8.0.1.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<Authors>Konstantin Dinev</Authors>
<Version>8.0.1</Version>
<Version>9.0.0</Version>
<PackageIcon>avatar_BG_blood.png</PackageIcon>
<Description>.NET models for StarCraft 2 battle.net API entities.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9d9dd7d

Please sign in to comment.