Metro style 64-bit target application using C #

Metro 32bit / 64bit style app

I deployed a metro style application written in C # / xaml, with target x64 infrastructure Target framework but it appears in the task manager as 32-bit. Task manager

Can anyone tell me what went wrong or that I am missing?

+7
source share
2 answers

I compile and run my development applications on "Any processor" and it runs on x86 and x86-64, displaying them correctly in the task manager.

Try isolating the project to see if it causes any library or dependency. otherwise, making it work only if x64 should provide hints.

+1
source

In the "Build β†’ Configuration Manager" menu, select the "Active Solution Platform" check box.

I think you chose "x86" instead of "Any CPU" (default) or "x64" (is this your target platform?).

0
source

All Articles