Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use '6.0' as the assembly version for Entity Framework 6.1. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ef61 |
Files: | files | file ages | folders |
SHA1: |
9bc97523d171adb6a45e29c575acb71a |
User & Date: | mistachkin 2014-06-08 04:27:35.634 |
Context
2014-06-08
| ||
04:34 | Also remove the 'Potentially Incompatible Change' marker from the Entity Framework 6.1 update. Closed-Leaf check-in: 2018cc3adc user: mistachkin tags: ef61 | |
04:27 | Use '6.0' as the assembly version for Entity Framework 6.1. check-in: 9bc97523d1 user: mistachkin tags: ef61 | |
02:21 | Reverse version-stamping changes mistakenly done in the previous check-in. check-in: ef225744fe user: mistachkin tags: ef61 | |
Changes
Changes to testlinq/2010/EF6/App.config.
1 2 3 | <?xml version="1.0"?> <configuration> <configSections> | | | 1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </configSections> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.93.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> |
︙ | ︙ |
Changes to testlinq/2012/EF6/App.config.
1 2 3 | <?xml version="1.0"?> <configuration> <configSections> | | | 1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </configSections> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.93.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> |
︙ | ︙ |
Changes to testlinq/2013/EF6/App.config.
1 2 3 | <?xml version="1.0"?> <configuration> <configSections> | | | 1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </configSections> <system.data> <DbProviderFactories> <remove invariant="System.Data.SQLite" /> <remove invariant="System.Data.SQLite.EF6" /> <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.93.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" /> </DbProviderFactories> |
︙ | ︙ |
Changes to tools/install/Installer.cs.
︙ | ︙ | |||
3979 3980 3981 3982 3983 3984 3985 | private const string CLRv2ImageRuntimeVersion = "v2.0.50727"; private const string CLRv4ImageRuntimeVersion = "v4.0.30319"; /////////////////////////////////////////////////////////////////////// private const string Ef6AssemblyName = "EntityFramework, " + | | | 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 | private const string CLRv2ImageRuntimeVersion = "v2.0.50727"; private const string CLRv4ImageRuntimeVersion = "v4.0.30319"; /////////////////////////////////////////////////////////////////////// private const string Ef6AssemblyName = "EntityFramework, " + "Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"; /////////////////////////////////////////////////////////////////////// private const string NameAndValueFormat = "{0}: {1}"; private const string LogFileSuffix = ".log"; /////////////////////////////////////////////////////////////////////// |
︙ | ︙ |