From 9faf2742e7eb4c74948272463bd781ff8962ff8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Poul=20Kjeldager=20S=C3=B8rensen?= Date: Wed, 13 Nov 2024 01:37:14 +0100 Subject: [PATCH] feat!: updated for .net9 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/todo.yml | 4 ++-- Directory.Build.props | 4 ++-- .../EAVFW.Extensions.Documents.csproj | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e92ca3b..6a2bb4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' - name: Cleaning run: dotnet clean diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d5c4ea..a252f36 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,11 +16,11 @@ jobs: - uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' - uses: actions/setup-node@v2 with: - node-version: '20' + node-version: '22' - name: Add plugin for conventional commits run: npm install conventional-changelog-conventionalcommits@7.0.2 diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml index d4e2e96..ba060ec 100644 --- a/.github/workflows/todo.yml +++ b/.github/workflows/todo.yml @@ -1,4 +1,4 @@ -name: "Create issues from todo" +name: "Create issues from todo" on: push: @@ -14,7 +14,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 - name: "TODO to Issue" - uses: "alstr/todo-to-issue-action@v2.4" + uses: "alstr/todo-to-issue-action@v5" id: "todo" with: TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/Directory.Build.props b/Directory.Build.props index fd4b3e2..21a02ce 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,8 @@ - 10.0 - 4.2.8 + 13.0 + 5.0.0-dev.1 true $(MSBuildThisFileDirectory)/external/EAVFramework $(MSBuildThisFileDirectory)/external diff --git a/src/EAVFW.Extensions.Documents/EAVFW.Extensions.Documents.csproj b/src/EAVFW.Extensions.Documents/EAVFW.Extensions.Documents.csproj index 42d74bc..803443f 100644 --- a/src/EAVFW.Extensions.Documents/EAVFW.Extensions.Documents.csproj +++ b/src/EAVFW.Extensions.Documents/EAVFW.Extensions.Documents.csproj @@ -1,7 +1,7 @@ - net6.0;net8.0 + net8.0;net9.0 EAVFW.Extensions.Documents Poul Kjeldager