Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

64bit targeted Metro style app using C#

Metro style app 32bit / 64bit

I deployed a metro style app written in C#/xaml with target framework x64 Target Framework, but it shows up in task manager as 32-bit. Task Manager

Can any one tell what went wrong or what i am missing ?

like image 639
Hemant Bhatt Avatar asked Mar 19 '13 06:03

Hemant Bhatt


1 Answers

I compile and run my in development applications to "Any CPU" and it runs on x86 and x86-64, showing properly in the task manager.

Try to isolate you project to see if it's any library or dependency that's causing that. failing that, forcing it to run only as x64 should provide clues.

like image 91
MoDu Avatar answered Sep 27 '22 18:09

MoDu