We have a WPF application that we're packaging as MSIX to deploy to our internal store.
Together with that app I would like to deploy a registry key (FEATURE_BROWSER_EMULATION to control the behavior of the WebBrowser
control).
I keep finding info about how it works underneath, Registry.dat
, which is a registry hive, inside the msix, I also found a tool (MSIXTweaker) that adds this to the msix file, but the msix file is an intermediate product, the final one being either a msixbundle
or msixupload
.
What is the correct way of adding a registry key to the package? Like in the wapproj
or appxmanifest
or as a dependency or ...?