Failure finding cab files
./bin/xwin --accept-license --cache-dir /tmp/xwincache --arch x86,x86_64,aarch64 splat --include-debug-libs --preserve-ms-arch-notation --output ./../dist/win
As of today I'm receiving this error:
Error: no cab files were referenced by the MSI
I'd be happy to help more with digging into whatever MS changed, but unfortunately I don't have the capability presently to get a more detailed error.
It's the new SDK version: 10.0.26100.0
Yes, adding --sdk-version 10.0.22621 seems to work.
This still seems to be an issue and is isolated to xwin --arch aarch64 splat; it doesn't affect --arch x86_64. Using the older SDK fixes it.
This is still an issue unfortunately. I cannot download the latest manifests for aarch or aarch64 right now.
Same here only affecting aarch64 with SKD version >= 10.0.26100. x86_64 is not affected and works as expected.
| command | outcome |
|---|---|
xwin --accept-license --arch aarch64 --variant desktop --manifest-version 17 splat |
failure |
xwin --accept-license --arch x86_64 --variant desktop --manifest-version 17 splat |
success |
xwin --accept-license --arch aarch64 --variant desktop --manifest-version 16 splat |
success |
xwin --accept-license --arch aarch64 --variant desktop --manifest-version 17 --sdk-version 10.0.22621 splat |
success |
Workaround
Explicitly setting --sdk-version 10.0.22621or --manifest-version 16.
Thanks @Jake-Shadle, this is working now without explicit --sdk-version downgrade 🎉