Skip to content

Commit

Permalink
add msix core
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed Oct 30, 2023
1 parent 9d992d9 commit a80c2a4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.16.5

- add support for older versions of windows [#243](https://github.com/YehudaKremer/msix/pull/243)

## 3.16.4

- permanent fix for [#235](https://github.com/YehudaKremer/msix/issues/235)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ To create a App Installer file, first set the `publish_folder_path` configuratio
then run the following command:

```console
PS c:\src\flutter_project> flutter pub run msix:publish
PS c:\src\flutter_project> dart run msix:publish
```

<details>
Expand Down Expand Up @@ -194,15 +194,15 @@ We added the most common features of Msix in this package, however, if you need
First, create the unpackaged msix files with the following command

```console
PS c:\src\flutter_project> flutter pub run msix:build
PS c:\src\flutter_project> dart run msix:build
```

Then edit the files that were created in the build folder.

After that create a msix installer file from those files with the following command

```console
PS c:\src\flutter_project> flutter pub run msix:pack
PS c:\src\flutter_project> dart run msix:pack
```

---
Expand Down
4 changes: 2 additions & 2 deletions lib/src/appx_manifest.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class AppxManifest {
${_config.languages!.map((language) => '<Resource Language="$language" />').join('')}
</Resources>
<Dependencies>
<TargetDeviceFamily Name="MSIXCore.Desktop" MinVersion="${_config.osMinVersion}" MaxVersionTested="10.0.22621.1778" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="${_config.osMinVersion}" MaxVersionTested="10.0.22621.1778" />
<TargetDeviceFamily Name="MSIXCore.Desktop" MinVersion="${_config.osMinVersion}" MaxVersionTested="10.0.22621.2506" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="${_config.osMinVersion}" MaxVersionTested="10.0.22621.2506" />
</Dependencies>
<Capabilities>
${_getCapabilities()}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: msix
description: A command-line tool that create Msix installer from your flutter windows-build files.
version: 3.16.4
version: 3.16.5
maintainer: Yehuda Kremer ([email protected])
homepage: https://github.com/YehudaKremer/msix
issue_tracker: https://github.com/YehudaKremer/msix/issues
Expand Down

0 comments on commit a80c2a4

Please sign in to comment.