I have projects with localized resources and x64 native dependencies. Is there any way to build them without warnings?
If I set the target platform to AnyCPU I get this warning because of the native references:
warning MSB3270: There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "Native64", "AMD64". This mismatch may cause runtime failures. Please consider changing the targeted processor architecture of your project through the Configuration Manager so as to align the processor architectures between your project and references, or take a dependency on references with a processor architecture that matches the targeted processor architecture of your project.
OK fair enough, but:
If I set the target platform to x64 I get this warning, because localized resources automatically create a satellite assembly with the wrong target architecture:
ALINK : warning AL1073: Referenced assembly 'mscorlib.dll' targets a different processor
Microsoft says it's a bug, but they wont fix it.
So now what?