From ea745e541c66d3cfa8d56765d6f83ed3dfe3ff10 Mon Sep 17 00:00:00 2001 From: masesdevelopers <94312179+masesdevelopers@users.noreply.github.com> Date: Mon, 15 Nov 2021 17:17:03 +0100 Subject: [PATCH] #61 (https://github.com/masesgroup/JCOReflector/issues/61#issuecomment-969069228): add compilation for .NET 6 --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e96ec1ff27d..1da2251b2ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,8 @@ jobs: - name: Build JCOReflectorCLI run: | dotnet build --no-incremental --framework netcoreapp3.1 --configuration Release src\JCOReflectorCLI.sln - dotnet build --no-incremental --framework net5.0 --configuration Release src\JCOReflectorCLI.sln + dotnet build --no-incremental --framework net5.0 --configuration Release src\JCOReflectorCLI.sln + dotnet build --no-incremental --framework net6.0 --configuration Release src\JCOReflectorCLI.sln dotnet build --no-incremental --framework net461 --configuration Release src\JCOReflectorCLI.sln # Runs a set of commands using the runners shell