Reputation: 383
I have a Win C++ console application that I want to always run as AppContainer. I know I can run it as AppContainer from external code using CreateAppContainerProfile
.
But is there an option to declare "Run As AppContainer" in applicaiton manifest file? such that when user double clicks the exe, it will run as AppContainer (similar to defining in manifest "Run as Administrator" using requestedExecutionLevel
element)
[I see that I can package my application, but this turns my C++ Application into packaged C# application that requires installation and just complicates it for me without need]
Upvotes: 0
Views: 102
Reputation: 4237
I checked the document: Application manifests. There is no option related to appcontainer.
Upvotes: 0