Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix incorrect external assembly hint paths in the EF6 projects for Visual Studio 2012 and 2013. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ef6 |
Files: | files | file ages | folders |
SHA1: |
918f0072c8bb6da89b0392644807c6fb |
User & Date: | mistachkin 2014-01-11 01:01:07.473 |
Context
2014-01-11
| ||
01:05 | Remove an apparently superfluous assembly reference. check-in: da5148e7e1 user: mistachkin tags: ef6 | |
01:01 | Fix incorrect external assembly hint paths in the EF6 projects for Visual Studio 2012 and 2013. check-in: 918f0072c8 user: mistachkin tags: ef6 | |
00:52 | Typo fix. check-in: cac4e93241 user: mistachkin tags: ef6 | |
Changes
Changes to System.Data.SQLite.Linq/System.Data.SQLite.Core.2012.csproj.
︙ | ︙ | |||
52 53 54 55 56 57 58 | </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' == 'false'"> <Reference Include="System.Data.Entity" /> </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' != 'false'"> <Reference Include="System.ComponentModel.DataAnnotations" /> <Reference Include="EntityFramework"> | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' == 'false'"> <Reference Include="System.Data.Entity" /> </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' != 'false'"> <Reference Include="System.ComponentModel.DataAnnotations" /> <Reference Include="EntityFramework"> <HintPath>$(SQLiteNetDir)\Externals\EntityFramework\lib\net45\EntityFramework.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Compile Include="AssemblyInfo.cs" /> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> |
︙ | ︙ |
Changes to System.Data.SQLite.Linq/System.Data.SQLite.Core.2013.csproj.
︙ | ︙ | |||
52 53 54 55 56 57 58 | </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' == 'false'"> <Reference Include="System.Data.Entity" /> </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' != 'false'"> <Reference Include="System.ComponentModel.DataAnnotations" /> <Reference Include="EntityFramework"> | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' == 'false'"> <Reference Include="System.Data.Entity" /> </ItemGroup> <ItemGroup Condition="'$(UseEntityFramework6)' != 'false'"> <Reference Include="System.ComponentModel.DataAnnotations" /> <Reference Include="EntityFramework"> <HintPath>$(SQLiteNetDir)\Externals\EntityFramework\lib\net45\EntityFramework.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Compile Include="AssemblyInfo.cs" /> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> |
︙ | ︙ |