From 6d2d2d8c6c0ff7a277a2c22b09aff92fc2abccd1 Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Tue, 2 Jul 2024 01:07:03 +0100 Subject: [PATCH] Added ability to skip building playground project for CI builds --- .github/workflows/_test.yml | 2 +- .../PinguApps.Appwrite.Playground.csproj | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 89b06128..710e525b 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -36,7 +36,7 @@ jobs: run: dotnet restore - name: Build - run: dotnet build -c Release --no-restore + run: dotnet build -c Release --no-restore /p:CIBuild=true - name: Test run: dotnet test -c Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage" diff --git a/src/PinguApps.Appwrite.Playground/PinguApps.Appwrite.Playground.csproj b/src/PinguApps.Appwrite.Playground/PinguApps.Appwrite.Playground.csproj index 8978c78d..2141b7e1 100644 --- a/src/PinguApps.Appwrite.Playground/PinguApps.Appwrite.Playground.csproj +++ b/src/PinguApps.Appwrite.Playground/PinguApps.Appwrite.Playground.csproj @@ -1,12 +1,16 @@ - + Exe net8.0 enable enable + + false + +