compile target

kepler

New member
Joined
Jun 3, 2017
Messages
3
Programming Experience
3-5
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 bites by default, or must I add something more (a switch) 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 bites by default, or must I add something more (a switch) to the compilation?

Cheers

JKepler
I don't know what the default is, but there's a Platform switch you can set to specify:

csc.exe.png

For example: Csc.exe /platform:x64
 
Hi again.

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?

Kind regards

Kepler
 

Latest posts

Back
Top Bottom