Basics based on Richard's comments I decided the following:
- I installed the application as the default application (see figure)
- When I need to restart the application, just close it and the operating system will open again.
Default application setup

Code to close the application:
private void Exit()
{
Windows.ApplicationModel.Core.CoreApplication.Exit();
}
source
share