Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor correction to the conditional framework version check in the LINQ test project. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vs2013 |
Files: | files | file ages | folders |
SHA1: |
5bac89ed82a9ce9a0a0aebf480fbb52c |
User & Date: | mistachkin 2013-11-27 01:28:04.411 |
Context
2013-11-27
| ||
01:32 | Use the proper compile-time option to check for the .NET Framework 4.5.1. check-in: 1beae37abe user: mistachkin tags: vs2013 | |
01:28 | Minor correction to the conditional framework version check in the LINQ test project. check-in: 5bac89ed82 user: mistachkin tags: vs2013 | |
01:24 | Add project and solution files for Visual Studio 2013. check-in: 3daf352762 user: mistachkin tags: vs2013 | |
Changes
Changes to testlinq/testlinq.2013.csproj.
︙ | ︙ | |||
51 52 53 54 55 56 57 | <Compile Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2008.edmx</DependentUpon> </Compile> <Compile Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or | | > | > | > | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | <Compile Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2008.edmx</DependentUpon> </Compile> <Compile Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" Include="NorthwindModel2013.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>NorthwindModel2013.edmx</DependentUpon> </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> <None Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="2008\App.Config" /> <None Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" Include="2013\App.Config" /> <None Include="northwindEF.db"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v3.5'" Include="NorthwindModel2008.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2008.Designer.cs</LastGenOutput> </EntityDeploy> <EntityDeploy Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" Include="NorthwindModel2013.edmx"> <Generator>EntityModelCodeGenerator</Generator> <LastGenOutput>NorthwindModel2013.Designer.cs</LastGenOutput> </EntityDeploy> </ItemGroup> <ItemGroup> <Service Include="{C8F2D6AC-F9F4-4E40-A399-22F9A9A5CBD2}" /> |
︙ | ︙ |