I was trying to convert my awesome WPF app to UWP using the Desktop App Converter. I converted the app using DesktopAppConverter successfully, installed on my local Windows 10 machine and works like a charm. All good so far.
However when I tried the Windows App Certification process, it fails with the below error.
- API _amsg_exit in msvcr100.dll is not supported for this application type.
- API _cexit in msvcr100.dll is not supported for this application type.
- API _commode in msvcr100.dll is not supported for this application type.
I actually use many essential functionalities via a CPP library which was created using some python code (which I don't have source code for).
(I guess "msvcr100.dll" is Microsoft C++ Re-distributable Package? )
Can any one help resolve this issue?