File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,18 +12,10 @@ jobs:
1212
1313 - uses : microsoft/setup-msbuild@v2
1414
15- - name : Find the solution
16- shell : pwsh
17- run : |
18- Get-ChildItem -Path 'vc++2026' -Recurse -Include *.sln,*.vcxproj |
19- ForEach-Object { $_.FullName }
20-
2115 - name : Build
2216 shell : pwsh
2317 run : |
24- $sln = Get-ChildItem -Path 'vc++2026' -Recurse -Filter *.sln |
25- Select-Object -First 1
26- msbuild $sln.FullName /p:Configuration=Release /p:Platform=x64 /m
18+ msbuild 'vc++2026\bmjr.vcxproj' /p:Configuration=Release /p:Platform=x64 /m
2719
2820 - name : Collect the binaries
2921 shell : pwsh
3224 Get-ChildItem -Recurse -Include *.exe |
3325 Where-Object { $_.FullName -notmatch '\\obj\\' } |
3426 Copy-Item -Destination out
27+ Get-ChildItem out | ForEach-Object { $_.Name }
3528
3629 - uses : actions/upload-artifact@v4
3730 with :
You can’t perform that action at this time.
0 commit comments