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 7737906 + b8a3c84 commit 6281ca7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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
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
8 changes: 4 additions & 4 deletions src/SteamModels.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>8.0.0</Version>
<TargetFramework>net9.0</TargetFramework>
<Version>9.0.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>steam, dotnetcore, models, csgo, steam user, steam group, steam user stats</PackageTags>
<PackageReleaseNotes>Version bump</PackageReleaseNotes>
Expand All @@ -14,8 +14,8 @@
<RepositoryUrl>https://github.com/BellumGens/SteamModels</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<FileVersion>8.0.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.0.0.0</FileVersion>
<Company>Bellum Gens</Company>
<PackageIcon>avatar_BG_blood.png</PackageIcon>
<PackageIconUrl />
Expand Down

0 comments on commit 6281ca7

Please sign in to comment.