The EntityFramework.SqlServerCompact project has four build configurations, 3 of them has Platform Target "AnyCPU", but the "Release" configuration has Platform taget: x86 - I believe that in all cases the platform target should be "AnyCPU" (in fact the "x86" option causes build warnings)
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\EntityFramework.SqlServerCompact.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1591;1573;1572;1570</NoWarn>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\Strict.ruleset</CodeAnalysisRuleSet>
< __PlatformTarget>x86</PlatformTarget__ >
</PropertyGroup>
Comments: If issues 915, 916 and 919 should be fixed (if they are real issues), I will be happy to submit a pull request.
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\EntityFramework.SqlServerCompact.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1591;1573;1572;1570</NoWarn>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\Strict.ruleset</CodeAnalysisRuleSet>
< __PlatformTarget>x86</PlatformTarget__ >
</PropertyGroup>
Comments: If issues 915, 916 and 919 should be fixed (if they are real issues), I will be happy to submit a pull request.