In my VS2017
solution, I created a UWP
and .NET Standard Library 2.0.3
projects. Referenced Library project from UWP. Library project is using a System.Diagnostics.Process
to start a process. In debug mode, I get access denied error at line Process.Start(...)
of the code inside Library project.
I thought the purpose of new .NET Standard Library project was to support various platforms (.NET, .NET Core, UWP etc) uniformly. But I guess, the sandbox nature of UWP apps is probably not allowing me to run Process.Start(...)
albeit the process is running inside Library project. Question: What I may be missing and/or how can we resolve the above issue?