Skip to content
This repository was archived by the owner on Feb 13, 2026. It is now read-only.

Commit fb801d2

Browse files
author
Merrick Zhang
committed
Add OutDir parameter to msbuild command
1 parent a72f0ab commit fb801d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727

2828
- name: Build project
2929
run: |
30-
msbuild build/VisualStudio/Notepad4.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /verbosity:minimal
30+
$outDir = "build/bin/${{ matrix.configuration }}/${{ matrix.platform }}"
31+
msbuild build/VisualStudio/Notepad4.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /p:OutDir=$outDir\ /verbosity:minimal
3132
3233
- name: Debug - List directory structure after build
3334
run: |

0 commit comments

Comments
 (0)