From 5aaf46bcde633215f5ba70059c737ef2d611ead1 Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Mon, 18 Mar 2024 12:03:36 +0100 Subject: [PATCH] Setting MSBuild log verbosity to minimal in the compile workflow --- .github/workflows/compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 8b4518b866d..6e6e2028903 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -27,7 +27,7 @@ jobs: uses: microsoft/setup-msbuild@v1.3.1 - name: Compile - run: msbuild Orchard.proj /m /t:Compile /p:MvcBuildViews=true /p:TreatWarningsAsErrors=true -WarnAsError + run: msbuild Orchard.proj /m /v:minimal /t:Compile /p:MvcBuildViews=true /p:TreatWarningsAsErrors=true -WarnAsError - name: Test - run: msbuild Orchard.proj /m /t:Test + run: msbuild Orchard.proj /m /v:minimal /t:Test