Windows Store app not working AppContainerCheck

I get the following error when I try to run the application certification test in my Windows 8.1 application. I looked around a bit and can not find a solution for this. The application is written in C # / xaml, which I did not know about, even had a linker.

I hope that someone can lead me in the right direction, how should I start investigating an error such as web searches so far I have failed

Binary analyzer

β€’ An error was detected: The binary analyzer test detected the following errors: β—¦File [MyTabletApplication.exe] skipped the AppContainerCheck check.

β€’ Impact, if not fixed: if the application does not use the available Windows protection tools, this may increase the vulnerability of the client computer from malware.

β€’ How to fix it: apply the necessary linker parameters - SAFESEH, DYNAMICBASE, NXCOMPAT and APPCONTAINER - when connecting the application. See the links below for more information:

+6
source share
1 answer

If you are using Visual Studio 2015, and this is a new solution / project, make sure that the "Compile with .NET Native tool chain" checkbox is cleared in the launch project properties in the Release configuration.

-1
source

Source: https://habr.com/ru/post/969553/


All Articles