From 019aa1de376262740c7f938d0a1383e533130f07 Mon Sep 17 00:00:00 2001 From: Alex Maitland Date: Sat, 13 Jul 2024 11:01:58 +1000 Subject: [PATCH] dotnet.yml - Update to .Net 6 and version 4.x --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9d923f7..96ce18c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -39,15 +39,15 @@ jobs: - name: Build run: | - echo "Buid version is 3.0.${{github.run_number}}" - dotnet build PuppeteerSharp.Dom.sln /p:Version=3.0.${{github.run_number}} --configuration Release + echo "Buid version is 4.0.${{github.run_number}}" + dotnet build PuppeteerSharp.Dom.sln /p:Version=4.0.${{github.run_number}} --configuration Release - name: Test run: | Xvfb :1 -screen 5 1024x768x8 & export DISPLAY=:1.5 cd PuppeteerSharp.Dom.Tests - dotnet test -f net5.0 -s test.runsettings -c Debug --logger "trx;LogFileName=TestResults.xml" + dotnet test -f net6.0 -s test.runsettings -c Debug --logger "trx;LogFileName=TestResults.xml" - name: Publish Nuget packages run: |