Unpackaged, self-contained apps share WinAppSDK dlls? #2936
-
Hi, Scenario is following: I have 2 (or more) unpackaged, self-contained WinAppSDK apps. In order to save disk space for apps users, I want to ship WinAppSDK DLLs only once (let's say in Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To be honest, symbolic links or hard links are probably the better option here. |
Beta Was this translation helpful? Give feedback.
To be honest, symbolic links or hard links are probably the better option here.
Because the Windows App SDK components are WinRT components, they need to be properly registered for the application to be able to use them. This normally occurs when you load the Windows App SDK package (either through the bootstrap API or through your application being packaged).
However, when your application is self contained, application needs to use another means of registering the Windows App SDK components. This is where registration free WinRT comes in. The components use the application manifest file to register the component.
So if you look at your application manifest, you will find a bunch of entr…