Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Reverse version-stamping changes mistakenly done in the previous check-in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ef61 |
Files: | files | file ages | folders |
SHA1: |
ef225744feca8e857688c18cdd93e563 |
User & Date: | mistachkin 2014-06-08 02:21:49.481 |
Context
2014-06-08
| ||
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 | |
02:19 | Update to Entity Framework 6.1. check-in: e18bd46df5 user: mistachkin tags: ef61 | |
Changes
Changes to SQLite.Interop/src/win/interop.h.
1 2 3 4 5 6 7 8 9 10 11 12 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.93.0" #endif #ifndef INTEROP_SOURCE_ID | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.93.0" #endif #ifndef INTEROP_SOURCE_ID #define INTEROP_SOURCE_ID "0000000000000000000000000000000000000000" #endif #ifndef INTEROP_SOURCE_TIMESTAMP #define INTEROP_SOURCE_TIMESTAMP "0000-00-00 00:00:00 UTC" #endif |
Changes to System.Data.SQLite/SQLitePatchLevel.cs.
1 2 3 4 5 6 7 8 9 10 11 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Data.SQLite; /////////////////////////////////////////////////////////////////////////////// | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Data.SQLite; /////////////////////////////////////////////////////////////////////////////// [assembly: AssemblySourceId(null)] /////////////////////////////////////////////////////////////////////////////// [assembly: AssemblySourceTimeStamp(null)] |