简体   繁体   中英

How to build a 64 bit application on 32 bit OS? [c#]

I have a application which implements Geckofx web browser control. I have 64 bit compiled geckofx.dlls(compiled from a 64 bit OS). But currently i don't have access to 64 bit OS and i want to compile the whole application with the 64bit geckofx.dlls targetting 64 bit OS. How can i do that from my 32 bit OS?

I need a good tutorial to do this. Do i need to download and install 64 bit compilers in my pc? if so, how? and how to check if i already have that compilers?

I don't think I've ever done this, but can't you just set the code generation ("platform target") as x64 in the project's "Build" configuration?

Or, in the command line: csc.exe /platform:x64 ?

As far as I know, the C# compiler ( csc ) is a 32bit application, it should be able to generate code for any supported platform

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM