Forum Discussion
Victor Vica
Sep 07, 2020Copper Contributor
Optional Package Cross Publisher Scenario - different publisher than Base Package
As stated https://docs.microsoft.com/en-us/archive/blogs/appinstaller/uwpoptionalpackages, Optional Packages should work with different publishers that the Base Package's one: "Cross Publisher Scena...
- Sep 08, 2020
Hi Victor Vica,
You will need to specify the Publisher of the main application if they are different. Like so <uap4:MainPackageDependency Name="Main_app" Publisher="CN=xxxxxx" />
Note that this is not supported in the Store.
Thank you,
Dian
Dian Hartono
Microsoft
Sep 08, 2020Hi Victor Vica,
You will need to specify the Publisher of the main application if they are different. Like so <uap4:MainPackageDependency Name="Main_app" Publisher="CN=xxxxxx" />
Note that this is not supported in the Store.
Thank you,
Dian
- Victor VicaSep 11, 2020Copper Contributor
Hi, Dian Hartono
Thanks for your reply. Your advice was correct and it works. I was mislead by the Optional Package https://github.com/AppInstaller/OptionalPackageSample - <uap3:MainPackageDependency Name="29270depappf.AtomicSuite" />
Victor