Merge pull request #13 from sjackson0109/fix/offsetfinder-sln-workflow

fix(ci): build RDPWrapOffsetFinder via .sln not .vcxproj
pull/4062/head
Simon Jackson 1 month ago committed by GitHub
commit 4bc0f7c0c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -119,8 +119,12 @@ jobs:
/p:PlatformToolset=v143 ` /p:PlatformToolset=v143 `
/v:minimal /v:minimal
# Build RDPWrapOffsetFinder # Build via .sln so $(SolutionDir) resolves to the submodule root
msbuild src-csharp/RDPOffsetFinder/RDPWrapOffsetFinder/RDPWrapOffsetFinder.vcxproj ` # where zydis/ lives - vcxproj AdditionalIncludeDirectories and
# AdditionalDependencies both use $(SolutionDir)\zydis\... and
# fail with C1083 when the vcxproj is targeted directly.
msbuild src-csharp/RDPOffsetFinder/RDPWrapOffsetFinder.sln `
/t:RDPWrapOffsetFinder `
/p:Configuration=Release ` /p:Configuration=Release `
/p:Platform="$($cfg.Platform)" ` /p:Platform="$($cfg.Platform)" `
/p:PlatformToolset=v143 ` /p:PlatformToolset=v143 `

Loading…
Cancel
Save