I know this is a common error for people compiling with mismatched project settings, and I've looked through a lot of those questions and answers. However, I don't appear to have mismatched project settings.
I've recently "inherited" a C# codebase that came with about 250 compile warnings. I've gotten rid of all the others, but I can't figure out how to get rid of this one:
2>C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1820,5): warning MSB3270: There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "C:{my DLL project path}{my lib}.dll", "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.
Both projects are built using the "Developer" and "x64" configurations/platform combo. When I look in the Configuration Manager, both projects are showing that same configuration and platform. I went and checked their .csproj files, and the section for that config for both is identical:
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|x64'">
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
So where's the mismatch? How do I fix this?