I have an app that's built on UWP in C#. It is a share target for a few types - photos, URLs, text. When ran in isolation, those share contracts work just fine. However, if the app was already running when the share target is activated, things become unpredictable. MSDN [...] read more
I am facing a problem with implementing a share target contract in a Windows 8 store application. I am doing a file upload in the share target. After clicking on my share button I start with: _shareArgs.ShareOperation.ReportStarted(); _shareArgs.ShareOperation.ReportSubmittedBackgroundTask(); Followe by uplaoding the files and awaiting their tasks. After that I [...] read more
I am trying to activate my app from its own share contract (please - don't comment about whether or not this is okay to do from a Certification point of view... The app activation is done through a button on the share contract UI and will not happen unless the [...] read more