We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1034f87 commit 7b22b6cCopy full SHA for 7b22b6c
.github/workflows/build-win-arm64.yml
@@ -220,7 +220,17 @@ jobs:
220
Write-Host "Fixed jpeg.lib path in main vcxproj"
221
}
222
223
- msbuild OpenCVSharpExtern.sln /t:build /p:Configuration=Release /p:Platform=ARM64 /m:2
+ # Find the actual solution file generated by CMake
224
+ Write-Host "Looking for solution file..."
225
+ $slnFile = Get-ChildItem -Filter "*.sln" | Select-Object -First 1
226
+ if ($slnFile) {
227
+ Write-Host "Found solution file: $($slnFile.Name)"
228
+ msbuild $slnFile.Name /t:build /p:Configuration=Release /p:Platform=ARM64 /m:2
229
+ } else {
230
+ Write-Error "No .sln file found in build directory"
231
+ Get-ChildItem
232
+ exit 1
233
+ }
234
235
236
- name: Upload Native Artifacts
0 commit comments