Skip to content

Commit

Permalink
Update to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS authored Mar 29, 2024
1 parent 379d611 commit 14ead61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '7.0.x' ]
dotnet-version: [ '8.0.x' ]

steps:
- uses: actions/checkout@v4
Expand All @@ -29,7 +29,7 @@ jobs:
run: dotnet build

- name: Create zip
run: cd ${debugPath} && mv net7.0 $dllName && zip -r ${dllName}.zip ${dllName}
run: cd ${debugPath} && mv net8.0 $dllName && zip -r ${dllName}.zip ${dllName}

- name: Create Release
id: create_release
Expand Down
4 changes: 2 additions & 2 deletions RockTheVote.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>cs2_rockthevote</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.166" />
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.202" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 14ead61

Please sign in to comment.