diff --git a/.github/workflows/release-all.yaml b/.github/workflows/release-all.yaml index 5007f5c..1ba2e22 100644 --- a/.github/workflows/release-all.yaml +++ b/.github/workflows/release-all.yaml @@ -69,7 +69,7 @@ jobs: shell: pwsh run: | dir - msbuild . /p:Configuration=Release /p:Version=${{ steps.release.outputs.version }} /p:Verbosity=minimal + dotnet build . -c Release -p:Version=${{ steps.release.outputs.version }} -v minimal - name: Test solution shell: pwsh diff --git a/.github/workflows/release-cli.yaml b/.github/workflows/release-cli.yaml index addbcb1..1a40cc1 100644 --- a/.github/workflows/release-cli.yaml +++ b/.github/workflows/release-cli.yaml @@ -82,7 +82,7 @@ jobs: shell: pwsh run: | dir - msbuild . /p:Configuration=Release /p:Version=${{ steps.release.outputs.version }} /p:Verbosity=minimal + dotnet build . -c Release -p:Version=${{ steps.release.outputs.version }} -v minimal - name: Test solution if: steps.release.outputs.module == 'cli' && ((matrix.targetFramework == 'net461' && matrix.runtime == 'win-x64') || matrix.targetFramework == 'netcoreapp3.1')