Skip to content

Commit c40ab9f

Browse files
Update single-project-msix.md (MicrosoftDocs#4255)
Update steps for converting a C++ WinAppSDK app using Windows Application Packaging to Single-project MSIX Packaging; setting `AppContainerApplication` to `true` is no longer correct.
1 parent 28ef6f9 commit c40ab9f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

hub/apps/windows-app-sdk/single-project-msix.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ Next, edit some configuration settings to use the single-project MSIX feature. T
143143

144144
1. Add `<EnableMsixTooling>true</EnableMsixTooling>` to the main `<PropertyGroup>` element.
145145
2. Change the value of `<AppxPackage>` to `true`.
146-
3. Change the value of the `<AppContainerApplication>` element to `true`.
147146

148147
When you're done, the contents of the **.vcxproj** file should look similar to this.
149148

@@ -153,7 +152,7 @@ Next, edit some configuration settings to use the single-project MSIX feature. T
153152
<PropertyGroup Label="Globals">
154153
...
155154
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
156-
<AppContainerApplication>true</AppContainerApplication>
155+
<AppContainerApplication>false</AppContainerApplication>
157156
<AppxPackage>true</AppxPackage>
158157
<ApplicationType>Windows Store</ApplicationType>
159158
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>

0 commit comments

Comments
 (0)