I am trying to create a website application and designate the target CPU as x86 instead of any CPU . Under the "Active Solutions Platform:" drop-down list, I have only one option in the Configuration Manager: "Any CPU", "Edit ..", and "New ...".
In the "Project Containes" section of the "Configuration Manager" window, it lists the 3 columns: "Project", "Configuration" and "Platform". Under the "Platform" column, my only choice is "Net". When "Active Solutions Configuration" is set to "Release" when "Active Solutions Configuration" is set to "Debug"
, then under "Plate" column, ".Net" or " Any CPU "can choose.
> I am using Visual Studio 2005 Professional Edition. This website was first created using Visual Studio .NET and was recently upgraded using Visual Studio 2005 Professional Edition Upgrade Wizard.
I especially need to target x86 because the components used in the project are only x86 compliant.
ASPN code is run in CLR (normal language runtime). It is never compiled in an original x86-compatible binary, it is ready for CIL (Common Intermediate Language) byte-code file, which goes into CLR.
CLR is an executable environment that is comparable to the Java Virtual Machine. Once compiled, and then it does not matter what kind of CPU you are running it, as long as the platform is a common language infrastructure interpreter (Mono Project is an open source CII interpreter, CLR Microsoft's CLI interpreter) .
Comments
Post a Comment