Setting MSBuild log verbosity to minimal in the compile workflow

This commit is contained in:
Benedek Farkas 2024-03-18 12:03:36 +01:00
parent 005338403d
commit 5aaf46bcde

View File

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