https://github.com/lk-code/msix-store-tool
A small tool (especially for WinUI 3 projects) to easily create a MSIXBUNDLE file for the Microsoft Store from several MSIX files.
https://github.com/lk-code/msix-store-tool
Last synced: 5 months ago
JSON representation
A small tool (especially for WinUI 3 projects) to easily create a MSIXBUNDLE file for the Microsoft Store from several MSIX files.
- Host: GitHub
- URL: https://github.com/lk-code/msix-store-tool
- Owner: lk-code
- License: mit
- Created: 2022-10-30T10:46:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-20T17:01:35.000Z (over 3 years ago)
- Last Synced: 2025-09-22T03:33:29.705Z (9 months ago)
- Language: C#
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# msix-store-tool

[](http://www.nuget.org/packages/hetznercloudapi/)
[](https://github.com/lk-code/msix-store-tool/blob/master/LICENSE)
[](https://github.com/lk-code/msix-store-tool/actions/workflows/dotnet.yml)
[](http://www.nuget.org/packages/msixtool/)
[](http://nuget.org/packages/msixtool)
[](https://sonarcloud.io/summary/new_code?id=lk-code_msix-store-tool)
[](https://sonarcloud.io/summary/new_code?id=lk-code_msix-store-tool)
A small tool (especially for WinUI 3 projects) to easily create a MSIXBUNDLE file for the Microsoft Store from several MSIX files.
This tool is based on this manual (as of October 2022) [bundle-msix-packages](https://learn.microsoft.com/en-us/windows/msix/packaging-tool/bundle-msix-packages).
## install the tool
`dotnet tool install --global msixtool`
## update the tool
`dotnet tool update --global msixtool`
## usage
### bundle msix-files to a single msixbundle for microsoft store
bundles all msix-files in the directory to a single msixbundle and signs it for store-upload
`msixtool bundle "{msix-source-directory}" "{msixbundle-filename}" "{path-to-pfx}" {hash-algorithm}`
**example**:
`msixtool bundle "D:\AppPackages" "MyApp_1.0.13.0.msixbundle" "D:\MyApp.pfx" SHA-256`
