workflows/test: Add -verbosity:quiet
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 24s
Test MS build / Build (Release, x64) (push) Successful in 2m20s

This commit is contained in:
2023-11-20 20:50:39 +01:00
parent fc0b3e3337
commit 10bd7cee60

View File

@ -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