Any CPU allows the application or library to run as either a 64bit process or a 32bit process, depending of the bitness of the operating system the process is launched on.
x86 applications will always run as 32bit application regardless of the bitness of the operating system.
x64 applications will only run on a 64bit operating system. This is also sometimes called AMD64 as AMD created this 64bit instruction set.
Itanium is for the Itanium CPU.
If you have an Any CPU application and it loads an x86 library the application will work under 32bit Windows, but will throw an exception under 64bit Windows.
When you specify the architecture for your application or library you are telling the framework that your application will only work with that architecture. For instance if your applications does something that is specific to the x86 architecture you want to make sure it is not loaded into a 64bit process or an Itanium process. You do this by setting the target CPU.
If you do something specific to the x86 architecture and you compile to Any CPU your application will work under 32bit windows as the .NET runtime will be in 32bit mode. If your application is run under a 64Bit os or an Itanium os the runtime will look at your application seeing AnyCPU and try to use native 64bit code. Your application will then fail. If your specify x86 then the runtime will start in 32bit mode and your application will run correctly.
The setting is telling the Framework what architectures it is safe to run under.
What is actually happening is some of the metadata for the application is set differently. You can see this information with dumpbin.exe Here is an example of the output for a AnyCPU library and a x86 library.
bin\Debug>dumpbin /CLRHEADER bitnesstest.dll
Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file bitnesstest.dll
File Type: DLL
clr Header:
48 cb
2.05 runtime version
2058 [ 5D0] RVA [size] of MetaData Directory
1 flags
IL Only
0 entry point token
0 [ 0] RVA [size] of Resources Directory
0 [ 0] RVA [size] of StrongNameSignature Directory
0 [ 0] RVA [size] of CodeManagerTable Directory
0 [ 0] RVA [size] of VTableFixups Directory
0 [ 0] RVA [size] of ExportAddressTableJumps Directory
0 [ 0] RVA [size] of ManagedNativeHeader Directory
bin\Debug>dumpbin /CLRHEADER bitnesstest.dll
Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file bitnesstest.dll
File Type: DLL
clr Header:
48 cb
2.05 runtime version
2058 [ 5D0] RVA [size] of MetaData Directory
3 flags
IL Only
32-Bit Required
0 entry point token
0 [ 0] RVA [size] of Resources Directory
0 [ 0] RVA [size] of StrongNameSignature Directory
0 [ 0] RVA [size] of CodeManagerTable Directory
0 [ 0] RVA [size] of VTableFixups Directory
0 [ 0] RVA [size] of ExportAddressTableJumps Directory
0 [ 0] RVA [size] of ManagedNativeHeader Directory
To show the difference between x64 and IA64 - Itanium you can use dumpbin with the /HEADERS switch. The /CLRHEADERS are the same for both as was noted in the comments.