How to publish self-contained WinUI3 app to Microsoft store? #3295
-
Is it possible to publish a self-contained WinUI3 app to the Microsoft store? By self-contained I mean an app which bundles the .NET runtime. Currently, the app we're making prompts the users to install the runtime when installing the app from the Microsoft Store. We're using Visual Studio 2022 "Package and publish > Create App Packages > Microsoft Store" wizard to generate the package. Here's an excerpt from the csproj-file in the project.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
A far easier approach is to set the self-contained property in your application project- This way the MSIX installer project will build a self-contained package. |
Beta Was this translation helpful? Give feedback.
@mikebattista ?