I am developing an application via EmguCV and Visual Studio Express 2010 in Win8.1x64. when I create a new project (C# windows application), it automatically choose x86 as target platform and there is no other choice. When I try to read an image with below code I get the error. I know that it makes this error when target platform is not choosen or when it's not like the operation system, but I don't know how to change target platform to x64 in this case!
Image<Gray, byte> OrginalImage = new Image<Gray, byte>(Openfile.FileName);
[System.BadImageFormatException] = {"An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"}