msix 2.8.7 copy "msix: ^2.8.7" to clipboard
msix: ^2.8.7 copied to clipboard

outdated

A command-line tool that create Msix installer from your flutter windows-build files.

MSIX

pub package MSIX toolkit package issues-closed issues-open

MSIX is a Windows app packaging format from Microsoft that combines the best features of MSI, .appx, App-V, and ClickOnce to provide a modern and reliable packaging experience.

This package offers a command line tool for creating MSIX installers from your Flutter app, making it easy to publish your app to the Microsoft Store or host it on a website.

📋 Installation #

In your pubspec.yaml, add the msix package as a new dev dependency with the following command:

PS c:\src\flutter_project\> flutter pub add --dev msix

📦 Creating an MSIX installer #

To create a MSIX installer from your package, run the following two commands:

PS c:\src\flutter_project\> flutter build windows
PS c:\src\flutter_project\> flutter pub run msix:create

The flutter build windows command compiles release executables and dependencies into the build\ subdirectory. In turn, the msix:create command bundles those files along with other necessary dependencies into an MSIX install file.

⚙ Configuring your installer #

You will almost certainly want to customize various settings in the MSIX installer, such as the application title, the default icon, and which Windows capabilities your application needs. You can customize the generated MSIX installer by adding declarations to an msix_config: node in your pubspec.yaml file:

msix_config:
  display_name: MyAppName
  publisher_display_name: MyName
  identity_name: MyCompany.MySuite.MyApp
  msix_version: 1.0.0.0
  logo_path: C:\<PathToIcon>\<Logo.png>
  capabilities: "internetClient,location,microphone,webcam"
Full list of available configurations (click to expand)
YAML name Command-line argument Description (from Microsoft Package manifest schema reference) Example
display_name --display-name -d A friendly app name that can be displayed to users. Flutter Gallery
logo_path --logo-path -l Path to an image file for use as the app icon (at least 400x400px). C:\images\gallery.png
msix_version --version -v The version number of the package, in a.b.c.d format. 1.0.0.0
store --store Generate a MSIX file for publishing to the Microsoft Store. false
publisher_display_name --publisher-display-name -u A friendly name for the publisher that can be displayed to users. MyName
identity_name --identity-name -i Defines the unique identifier for the app. dev.flutter.Gallery
publisher --publisher -b Describes the publisher. CN=BF212345-5644-46DF-8668-014044C1B138
output_path --output-path -o The directory where the output MSIX file should be stored. C:\src\myapp\msix
output_name --output-name -n The filename that should be given to the created MSIX file. myApp_dev
languages --languages Declares the language resources contained in the package. en-us, ja-jp
capabilities --capabilities -e List of the capabilities the app requires. internetClient,location,microphone,webcam
architecture --architecture -h Describes the architecture of the code in the package. x64
certificate_path --certificate-path -c Path to the certificate content to place in the store. C:\certs\signcert.pfx
certificate_password --certificate-password -p Password for the certificate. 1234
signtool_options --signtool-options Options to be provided to the signtool for app signing (see below.) /v /fd SHA256 /f C:/Users/me/Desktop/my.cer
dont_install_cert --dont-install-certificate If true, don't try to install the certificate. false
file_extension --file-extension -f File extensions that the app may be registered to open. .picture, .image
protocol_activation --protocol-activation Protocol activation that will open the app. myapp
add_execution_alias --add-execution-alias Add an alias for running the app, using pubspec.yaml name: node true
--debug-signing Show more information about the certificate.

✒️ Signing options #

Published MSIX installers should be signed with a certificate, to help ensure that app installs and updates come from trustworthy sources.

  • For development purposes, this package is configured by default to automatically sign your app with a test certificate, which makes it easy to test your install prior to release.
  • If you publish your app to the Microsoft Store, the installation package will be signed automatically by the store.
  • If you need to use your own signing certificate, for example to release the app outside of the Microsoft Store, you can use the configuration fields certificate_path and certificate_password to configure a certificate of your choice.

You can also provide custom options to the signing tool with the --signtool-options command, as shown above. For more information on available options, see the signtool documentation. Note that using this option overrides the certificate_path and certificate_password fields.

Note: By default, the MSIX package will install the certificate on your machine. You can disable this by using the --dontInstallCert flag, or the YAML option dont_install_cert: true.

Microsoft Store logo Publishing to the Microsoft Store #

To generate an MSIX file for publishing to the Microsoft Store, use the --store flag, or alternatively add store: true to the YAML configuration.

Note: For apps published to the Microsoft Store, the configuration values publisher_display_name, identity_name, msix_version and publisher must all be configured and should match the registered publisher and app name from the Microsoft Store dashboard, as per this screenshot.


Tags: msi windows win10 win11 windows10 windows11 windows store windows installer windows packaging appx AppxManifest SignTool MakeAppx

779
likes
0
pub points
96%
popularity

Publisher

verified publisherkremer.software

A command-line tool that create Msix installer from your flutter windows-build files.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ansicolor, args, flutter, image, package_config, path, yaml

More

Packages that depend on msix