Skip to content

Commit

Permalink
Add periods
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangao-ms committed Oct 4, 2023
1 parent f3ea0cb commit 5ca0fb9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/packaging/msix-packaging-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@ on the size of the package.
**Note**: Isolated win32 applications are not compatible with other application types within the same package.

* Add `xmlns:previewsecurity2="http://schemas.microsoft.com/appx/manifest/preview/windows10/security/2"`
to the `<Package>` element if it's not there already
to the `<Package>` element if it's not there already.

* Add `previewsecurity2` to `IgnorableNamespaces` at the end of the `<Package>` element
* Add `previewsecurity2` to `IgnorableNamespaces` at the end of the `<Package>` element.

* Add `xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"` to the `<Package>` element
if it's not there already.

* Add `uap10` to `IgnorableNamespaces` at the end of the `<Package>` element
* Add `uap10` to `IgnorableNamespaces` at the end of the `<Package>` element.

* In `<Dependencies>` change `TargetDeviceFamily` to
`<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.25357.0" MaxVersionTested="10.0.25357.0" />`
`<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.25357.0" MaxVersionTested="10.0.25357.0" />`.

* **Note**: Not all features are available in the minimun build, check out the [release notes](../../relnotes/windows-release-notes.md) for more detailed information.

* In `<Application>` replace any existing entrypoint/trustlevel/runtimebehavior with
`uap10:TrustLevel="appContainer" previewsecurity2:RuntimeBehavior="appSilo"`
`uap10:TrustLevel="appContainer" previewsecurity2:RuntimeBehavior="appSilo"`.

* **Note**: By default, MPT will automatically add `<rescap:Capability name="runFullTrust">` to
`<Capabilities>` due to the app being a packaged Win32. This should be removed unless
Expand Down

0 comments on commit 5ca0fb9

Please sign in to comment.