From 10bd7cee605fbf60e3c32add76496dfc24aa34c0 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 20 Nov 2023 20:50:39 +0100 Subject: [PATCH] workflows/test: Add -verbosity:quiet --- .gitea/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 08a8bd2..9b86925 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -21,4 +21,4 @@ jobs: run: $(& nuget restore Elwig.sln; $a=$lastexitcode) | findstr x*; exit $a - name: Build Installer shell: powershell - run: $(& msbuild Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a + run: $(& msbuild -verbosity:quiet Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a