From e44c57ff3a9ecc87f2a727629cd1c8a65a6498a3 Mon Sep 17 00:00:00 2001 From: PhyxionNL <7643972+PhyxionNL@users.noreply.github.com> Date: Fri, 13 May 2022 20:02:50 +0200 Subject: [PATCH] Update .NET SDK to 6.0 Fixes #176. --- .github/workflows/dotnet.yml | 6 +++--- Test/Test.csproj | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 26c1f85f..897e2476 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Install .net dependencies run: dotnet restore - name: Install libpcap @@ -24,7 +24,7 @@ jobs: - name: Build run: dotnet build PacketDotNet/PacketDotNet.csproj --framework "netstandard2.0" -c Release - name: Test - run: dotnet test --framework "net5.0" + run: dotnet test --framework "net6.0" windows: runs-on: windows-latest @@ -34,7 +34,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Clear NuGet cache run: dotnet nuget locals all --clear - name: Install .net dependencies diff --git a/Test/Test.csproj b/Test/Test.csproj index 13b58a13..df4fcbec 100644 --- a/Test/Test.csproj +++ b/Test/Test.csproj @@ -1,7 +1,7 @@  - net5.0 + net6.0 false @@ -18,4 +18,4 @@ - + \ No newline at end of file