Hi,
I have a wpf app and I have converted it to uwp app using Windows application packaging project from Visual Studio. I am trying to submit appxupload package on store but at last when validation happens I am getting the error like :
Declared package dependency unavailable: Microsoft.VCLibs.140.00.UWPDesktop, Neutral, Universal,Universal
The app is having dependency of Visual C++ runtime package. So I have included this dependency in the package.appxmanifest file.
This MinVersion is being taken from here :
https://learn.microsoft.com/en-us/windows/msix/desktop/desktop-to-uwp-prepare
Please check the Your app uses a VCLibs framework package in the above link.
This dependency should automatically get installed from the store when user installs the app. This is the retail version of the dependency. Why the package is not getting accepted on the store. I have also validated the package using Windows app certification kit and the overall result is passed.
I have also tried reducing the MinVersion of Microsoft.VCLibs.140.00.UWPDesktop package to "14.0.24217.0" as suggested here : https://support.microsoft.com/en-in/help/3176696/c-runtime-framework-packages-for-desktop-bridge. But then also after generating the package it is not getting accepted on store.
System Configuration:
OS: Windows 10 pro build 18362
System Type: X64
Please suggest the changes needs to be done.
Thanks
Akshay