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