From 5093442ce359780c8fda9700e34529895e83cd2a Mon Sep 17 00:00:00 2001 From: Raphael Silva Date: Tue, 29 Aug 2023 22:38:28 +0000 Subject: [PATCH] Fix workflow for csharp --- .github/workflows/codeql.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1b0b40545a..872779647c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -114,7 +114,8 @@ jobs: if: ${{ matrix.target.language == 'csharp' }} - name: build dotnet - run: dotnet build + # Build all dotnet applications from this directory + run: find . -name '*.sln' -exec dotnet build '{}' \; working-directory: ${{ matrix.target.directory }} if: ${{ matrix.target.language == 'csharp' }}