File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ jobs:
186186 } else {
187187 $thisProject = "Sdk.$env:PROJECT"
188188 }
189- $thisProjectPath = "$env:WORKING_DIR\src\Sdk\$thisProject"
189+ $thisProjectPath = "$env:WORKING_DIR\src\Sdk\SecureFolderFS. $thisProject"
190190 Add-Content -Path $env:GITHUB_ENV -Value "THIS_PROJECT_PATH=$thisProjectPath"
191191
192192 - name : Restore
@@ -250,6 +250,16 @@ jobs:
250250 dotnet-version : ${{ env.DOTNET_SDK }}
251251 run-uno-check : false
252252
253+ - name : Find appropriate project to build
254+ run : |
255+ if ($env:PROJECT -eq "Core") {
256+ $thisProject = "Core"
257+ } else {
258+ $thisProject = "Core.$env:PROJECT"
259+ }
260+ $thisProjectPath = "$env:WORKING_DIR\src\Core\SecureFolderFS.$thisProject"
261+ Add-Content -Path $env:GITHUB_ENV -Value "THIS_PROJECT_PATH=$thisProjectPath"
262+
253263 - name : Restore
254264 run : |
255265 msbuild $env:SOLUTION_PATH `
You can’t perform that action at this time.
0 commit comments