From e3a9e8cc05b6a86c0f27e2421f57edfddf1ffb08 Mon Sep 17 00:00:00 2001 From: David Hock Date: Sat, 16 Nov 2024 00:49:53 +0100 Subject: [PATCH] change to .csproj --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 73e9414..df16b2e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -34,7 +34,7 @@ jobs: dotnet-version: 9.0.x - name: Build - run: find . -name "*.sln" -o -name "*.slnx" | xargs -I {} dotnet build "{}" --configuration ${{ matrix.configuration }} + run: find . -name "*.csproj" | xargs -I {} dotnet build "{}" --configuration ${{ matrix.configuration }} test: name: Test ${{ matrix.display-name }} @@ -71,5 +71,5 @@ jobs: id: tests continue-on-error: true # proceed if tests fail to allow for the report generation in master or next step failure in PR run: | - find . -name "*.sln" -o -name "*.slnx" | xargs -I {} dotnet test "{}" \ + find . -name "*.csproj" | xargs -I {} dotnet test "{}" \ --framework ${{ matrix.framework }} \ \ No newline at end of file