Skip to content

Commit

Permalink
Merge pull request #9 from ahanoff/feat/net8
Browse files Browse the repository at this point in the history
feat: add .NET 8 support
  • Loading branch information
benmccallum authored Jan 23, 2024
2 parents 20993f1 + 29c134a commit 9e04985
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
name: test and publish if allowed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"

- name: Run tests
run: dotnet test src/ --collect:"XPlat Code Coverage"
Expand Down
6 changes: 3 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Product>Polymorphic IDs.</Product>
<Description>Polymorphic Relay IDs for HotChocolate</Description>
<PackageTags>GraphQL HotChocolate Relay</PackageTags>
<Version>4.0.0</Version>
<Version>4.1.0</Version>

<PackageProjectUrl>https://github.com/autoguru-au/hotchocolate-polymorphic-ids</PackageProjectUrl>
<RepositoryUrl>https://github.com/autoguru-au/hotchocolate-polymorphic-ids</RepositoryUrl>
Expand All @@ -19,8 +19,8 @@

<HotChocolateVersion>13.0.0</HotChocolateVersion>

<TargetFrameworks>net7.0; net6.0; netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="$(MSBuildProjectName.EndsWith('Tests'))">net7.0; net6.0</TargetFrameworks>
<TargetFrameworks>net8.0; net7.0; net6.0; netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="$(MSBuildProjectName.EndsWith('Tests'))">net8.0; net7.0; net6.0</TargetFrameworks>
</PropertyGroup>

</Project>

0 comments on commit 9e04985

Please sign in to comment.