Skip to content

Commit

Permalink
Merge PR #18 from nblockchain/wip/dotnet8
Browse files Browse the repository at this point in the history
Move from dotnet7 to dotnet8.
  • Loading branch information
knocte authored Feb 5, 2024
2 parents 4c7aad2 + 0205671 commit 1c63640
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
name: Build and Run Tests
runs-on: ubuntu-22.04
container:
image: "ubuntu:22.04"
# TODO: move to 24.04 as soon as it is published in Apr2024
image: "ubuntu:23.10"
steps:
- uses: actions/checkout@v2
- name: Install required dependencies
Expand All @@ -29,7 +30,7 @@ jobs:
# The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot
apt install --yes --no-install-recommends ca-certificates
apt install --yes --no-install-recommends dotnet7
apt install --yes --no-install-recommends dotnet8
- name: Restore nuget dependencies
run: dotnet restore
Expand Down
16 changes: 0 additions & 16 deletions Directory.Build.targets

This file was deleted.

1 change: 1 addition & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
<PackageVersion Include="Giraffe.Razor" Version="1.3.0" />
<PackageVersion Include="Microsoft.AspNetCore.WebSockets" Version="2.1.1" />
<PackageVersion Include="TaskBuilder.fs" Version="2.1.0" />
<PackageVersion Include="FSharp.Core" Version="8.0.101" />
</ItemGroup>
</Project>
3 changes: 2 additions & 1 deletion src/FX.Tests/FX.Tests.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>
</PropertyGroup>

<ItemGroup>
Expand All @@ -10,6 +10,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="StackExchange.Redis" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="FSharp.Core" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Class1.cs" />
Expand Down

0 comments on commit 1c63640

Please sign in to comment.