Context
Electrobun (v1.18.1) has zero built-in support for Windows Store distribution — confirmed by grepping node_modules/electrobun/src/cli/index.ts (no matches for msix, appx, partner center, sideload) and the full docs site. Its Windows packaging pipeline only produces a custom self-extracting Setup.exe + .tar.zst + .metadata.json, zipped — not an MSIX/APPX package.
To ship via the Microsoft Store, the build output needs to be wrapped externally, on top of Electrobun's own build, not through it.
What's needed
Scope
Store distribution only. GitHub Releases distribution (unsigned .zip) is handled separately in #3 and does not block this.
Context
Electrobun (v1.18.1) has zero built-in support for Windows Store distribution — confirmed by grepping
node_modules/electrobun/src/cli/index.ts(no matches formsix,appx,partner center,sideload) and the full docs site. Its Windows packaging pipeline only produces a custom self-extractingSetup.exe+.tar.zst+.metadata.json, zipped — not an MSIX/APPX package.To ship via the Microsoft Store, the build output needs to be wrapped externally, on top of Electrobun's own build, not through it.
What's needed
build/stable-win-x64/letora-Setup.exe+ its contents, or the raw app files before zipping) into an MSIX package — likely via the MSIX Packaging Tool orMakeAppx.exe, using the Desktop Bridge approach for a classic Win32 appAppxManifest.xml) with identity/capabilities matching the Partner Center reservationelectrobun build --env=stableto produce and upload the.msix/.msixbundleto Partner CenterScope
Store distribution only. GitHub Releases distribution (unsigned
.zip) is handled separately in #3 and does not block this.