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

outdated

Create and sign Msix installer for flutter windows-build files.

MSIX

Msix #

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

Breaking configuration changes in version >=0.1.2:
  1. publisher_name is now: publisher_display_name

  2. certificate_subject is now: publisher

Install #

In your pubspec.yaml, add msix as a new dependency.

dev_dependencies:
  flutter_test:
    sdk: flutter
  msix: ^0.1.2  # Or the latest version

Create Msix #

Run:

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

The flutter build windows is required to build the executable that flutter pub run msix:create bundles up in the MSIX install file.

Configuration (Optional) #

Add msix_config: configuration at the end of your pubspec.yaml file:

msix_config:
  display_name: MyApp
  publisher_display_name: MyName
  identity_name: MyCompany.MySuite.MyApp
  msix_version: 1.0.0.0
  certificate_path: C:/<PathToCertificate>/<MyCertificate.pfx>
  certificate_password: 1234 (require if using .pfx certificate)
  publisher: CN=MyName
  logo_path: C:\<PathToIcon>\<Logo.png>
  start_menu_icon_path: C:\<PathToIcon>\<Icon.png>
  tile_icon_path: C:\<PathToIcon>\<Icon.png>
  icons_background_color: transparent (or some color like: '#ffffff')
  architecture: x64
  capabilities: 'documentsLibrary,internetClient,location,microphone,webcam'

tags: msi windows win10 windows10 windows store windows installer windows packaging appx AppxManifest SignTool MakeAppx

779
likes
0
pub points
96%
popularity

Publisher

verified publisherkremer.software

Create and sign Msix installer for flutter windows-build files.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ansicolor, flutter, path, yaml

More

Packages that depend on msix