From faa07e682f7c08b3e092f74c0205dc064c667108 Mon Sep 17 00:00:00 2001 From: jtalborough Date: Fri, 26 Apr 2024 10:06:56 -0400 Subject: [PATCH] feat: Add PackageOutputPath to msbuild command --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7fe106d3..7daf377c 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -65,7 +65,7 @@ jobs: run: nuget restore .\$($Env:SOLUTION_FILE).sln # Build the solutions in the docker image - name: Build Solution - run: msbuild .\$($Env:SOLUTION_FILE).sln /p:Platform="Any CPU" /p:Configuration="Debug" /p:Version="${{ steps.setVersion.outputs.version }}" -m + run: msbuild .\$($Env:SOLUTION_FILE).sln /p:Platform="Any CPU" /p:Configuration="Debug" /p:Version="${{ steps.setVersion.outputs.version }}" /p:PackageOutputPath=".\output" -m - name: Create tag for non-rc builds if: contains(steps.setVersion.outputs.version, 'alpha') run: |