Skip to content

Commit

Permalink
Update FauFau to .NET 8 & update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eXpl0it3r committed Apr 29, 2024
1 parent 97299a0 commit 11bf848
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/buildAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
- { name: Windows VS2022, os: windows-2022 }
- { name: MacOS, os: macos-12 }
dotnet:
- { name: .NET 7, version: '7.0.x' }
- { name: .NET 8, version: '8.0.x' }

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Setup .NET ${{ matrix.dotnet.version }} SDK
id: setup-dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet.version }}
- name: Enforce SDK Version
Expand All @@ -50,7 +50,7 @@ jobs:
run: dotnet pack -c Release FauFau/FauFau.csproj --output ${{ env.NuGetDirectory }}
- name: Publish NuGet package as artifact
if: ${{ matrix.platform.name == 'Linux' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: FauFau.nupkg
if-no-files-found: error
Expand All @@ -63,7 +63,7 @@ jobs:
needs: [ build ]

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: FauFau.nupkg
path: ${{ env.NuGetDirectory }}
Expand Down
14 changes: 7 additions & 7 deletions FauFau/FauFau.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Platforms>AnyCPU;x86;x64</Platforms>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/themeldingwars/FauFau</RepositoryUrl>
<PackageVersion>1.2.1</PackageVersion>
<AssemblyVersion>1.2.1</AssemblyVersion>
<Version>1.2.1</Version>
<FileVersion>1.2.1</FileVersion>
<PackageVersion>1.3.1</PackageVersion>
<AssemblyVersion>1.3.1</AssemblyVersion>
<Version>1.3.1</Version>
<FileVersion>1.3.1</FileVersion>
<LangVersion>9</LangVersion>
<Authors>TheMeldingWars</Authors>
<Description>FauFau is a library for manipulating FireFall's various file formats and protocols</Description>
Expand Down Expand Up @@ -55,8 +55,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="7.0.5" />
<PackageReference Include="SharpCompress" Version="0.33.0" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="8.0.4" />
<PackageReference Include="SharpCompress" Version="0.37.2" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9</LangVersion>
</PropertyGroup>

Expand All @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
</ItemGroup>

</Project>

0 comments on commit 11bf848

Please sign in to comment.