Hi
I'm compiling a cs file sucessfully with csc. The target is winexe.
My question is: my windows is 64 bits. Is the app compiled in 32 b, or must I add something more to the compilation?
Cheers
JKepler
Hi
I'm compiling a cs file sucessfully with csc. The target is winexe.
My question is: my windows is 64 bits. Is the app compiled in 32 b, or must I add something more to the compilation?
Cheers
JKepler
Without specifying /platform, the default is AnyCPU. So 64-bit is preferred, but 32-bit will be used when 64-bit is not available.
My best code is written with the delete key.
ThanksGreat advise.
I've used /platformx86
Only one problem: I used dependecy walker to check it (to be sure it was 32 bits). Some libs are missing, even if the exe works. Any advise?
JKepler
Last edited by jkepler; 06-03-2017 at 07:08 AM.