From 85c09f6d84ff1dc6742ed6174a5f92cd0ba19f39 Mon Sep 17 00:00:00 2001 From: Jamess-Lucass Date: Fri, 12 Jan 2024 17:19:14 +0000 Subject: [PATCH 1/2] chore: Updated to dotnet 8 --- examples/example1/example1.csproj | 6 +++--- src/goatquery-dotnet.csproj | 2 +- tests/tests.csproj | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/example1/example1.csproj b/examples/example1/example1.csproj index 142425d..b21da3e 100644 --- a/examples/example1/example1.csproj +++ b/examples/example1/example1.csproj @@ -1,15 +1,15 @@ - net7.0 + net8.0 enable enable - - + + diff --git a/src/goatquery-dotnet.csproj b/src/goatquery-dotnet.csproj index dd65024..66bc485 100644 --- a/src/goatquery-dotnet.csproj +++ b/src/goatquery-dotnet.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 goatquery-dotnet enable enable diff --git a/tests/tests.csproj b/tests/tests.csproj index 895ecfb..4b0b2d1 100644 --- a/tests/tests.csproj +++ b/tests/tests.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable enable @@ -9,11 +9,11 @@ - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all From 31da3c292d675c36c3202d01acdc3f906c27b716 Mon Sep 17 00:00:00 2001 From: Jamess-Lucass Date: Fri, 12 Jan 2024 17:22:50 +0000 Subject: [PATCH 2/2] wip --- .github/dependabot.yml | 2 ++ .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 5 ++--- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1b7927e..22415fb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,10 +4,12 @@ updates: directory: "/" schedule: interval: "weekly" + - package-ecosystem: "nuget" directory: "/src" schedule: interval: "weekly" + - package-ecosystem: "nuget" directory: "/tests" schedule: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d25327..1d37ccc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ["7.0.x"] + dotnet-version: ["8.0.x",] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d92587d..82a3c0f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ["7.0.x"] + dotnet-version: ["8.0.x"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index af04253..9eee826 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ["7.0.x"] + dotnet-version: ["8.0.x"] steps: - uses: actions/checkout@v4 @@ -26,5 +26,4 @@ jobs: working-directory: ./tests - name: Test - run: dotnet test --no-restore --verbosity normal - working-directory: ./tests + run: make test