I'm creating a Windows Universal App in XAML and C#. I have 3 configurations:
I test it in local in all 3 configurations and the app works. I create the packages in X86 with the option to "not create app bundle" and don't include PDF files and in the project configuration I UNCHECK the .Net native options.
I upload the package to a Package Flight and follow the normal submission process. The app approves the process. I download the app go to the
C:\Program Files\WindowsApps
Folder and check that my app is listed there with the correct version. I open the app from the store and nothing happens. Looks like not even the OnLaunched event code in App.xaml.cs is being run. It happens the same to some other colleges in the company.
I'm using this nuget packages:
I'm targeting Windows 10586
I don't see any error, just the app don't even execute anything. Any ideas?
Regards.
Thank you all the problem I had was without noticing it I updated the package Microsoft.NETCore.UniversalWindowsPlatform from 5.1.0 to 5.2.1. That was making all the submisions to the store to fail certification so if you downgrade that package to 5.1.0 It's gonna be fine. There is a bug already reported in the msdn. Thanks!