From dc83569e4ff273e63acf4949713d21c5f05b5c5b Mon Sep 17 00:00:00 2001 From: halvarsson Date: Wed, 8 May 2024 19:25:25 +0200 Subject: [PATCH] try split build --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2682323..0206538 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,5 +27,12 @@ jobs: with: dotnet-version: 6.0.x - - name: Build - run: dotnet build -c Release \ No newline at end of file + - name: Build .NET Standard 2.1 + run: dotnet build -c Release -f netstandard2.1 + + - name: Build .NET Framework 4.7.2 + run: dotnet build -c Release -f net472 + + - name: List build artifacts + shell: pwsh + run: Get-ChildItem -Path .\bin\Release -Recurse \ No newline at end of file