I have two projects in my VS2013 solution:
A UWP app that consumes/produces data from/to local json files
- this gets sideloaded and works a treat
A Windows Form that gets the data from a remote server with Web Services
I want a button on my Form to launch the UWP app once the data is fetched. (I cannot integrate the two as the webservice authentication libraries won't work with W8.1 )
This method launches only my UWP splash screen however. It doesn't get into the code.
Process.Start("MyUWPApp:");
Do I need something like this:
Process.Start("MyUWPApp:MyEntryPoint");
Where MyEntryPoint is going to go in the Manifest File on the UWP? I've been trying out all sorts of values for MyentryPoint in the file like: App, MainPage.cs, Main() etc.. I'm not sure if this is the way to go.. anyone?