Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FauFau to .NET 8 & update dependencies #3

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading