Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update SQLite to the latest from the 3.8.2 branch. Include the EF6 assembly in the setup packages. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4d6bf37e4ad398fa4ea5cfbfb7fdd470 |
User & Date: | mistachkin 2014-01-15 01:10:31.022 |
Context
2014-01-15
| ||
20:57 | Fix NuGet package file syntax by moving the <dependencies> element to inside the <metadata> element. check-in: 43553b3474 user: mistachkin tags: trunk | |
01:10 | Update SQLite to the latest from the 3.8.2 branch. Include the EF6 assembly in the setup packages. check-in: 4d6bf37e4a user: mistachkin tags: trunk | |
2014-01-14
| ||
23:24 | Add full support for Entity Framework 6. check-in: e1b4212827 user: mistachkin tags: trunk | |
2014-01-13
| ||
05:53 | Update setup packages to include the EF6 assembly. Closed-Leaf check-in: c97147849f user: mistachkin tags: ef6-redist | |
Changes
Changes to SQLite.Interop/src/core/sqlite3.c.
︙ | ︙ | |||
133 134 135 136 137 138 139 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.2" #define SQLITE_VERSION_NUMBER 3008002 | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.2" #define SQLITE_VERSION_NUMBER 3008002 #define SQLITE_SOURCE_ID "2014-01-15 00:24:22 c697d2f83c2d8ea0a100b84b0debb6a322c3a876" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version, sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros |
︙ | ︙ | |||
2399 2400 2401 2402 2403 2404 2405 2406 | ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the build-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** | > | | | > | | 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 | ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the build-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** ^If N is less than one, then P can be a NULL pointer. ** ** ^If this routine has not been previously called or if the previous ** call had N less than one, then the PRNG is seeded using randomness ** obtained from the xRandomness method of the default [sqlite3_vfs] object. ** ^If the previous call to this routine had an N of 1 or more then ** the pseudo-randomness is generated ** internally and without recourse to the [sqlite3_vfs] xRandomness ** method. */ SQLITE_API void sqlite3_randomness(int N, void *P); /* ** CAPI3REF: Compile-Time Authorization Callbacks |
︙ | ︙ | |||
12225 12226 12227 12228 12229 12230 12231 | SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Expr*, Expr*, int); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext*,ExprList*); SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr*, SrcList*); SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse*); SQLITE_PRIVATE void sqlite3PrngSaveState(void); SQLITE_PRIVATE void sqlite3PrngRestoreState(void); | < | 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 | SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Expr*, Expr*, int); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext*,ExprList*); SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr*, SrcList*); SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse*); SQLITE_PRIVATE void sqlite3PrngSaveState(void); SQLITE_PRIVATE void sqlite3PrngRestoreState(void); SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3*,int); SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse*, int); SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse*, const char *zDb); SQLITE_PRIVATE void sqlite3BeginTransaction(Parse*, int); SQLITE_PRIVATE void sqlite3CommitTransaction(Parse*); SQLITE_PRIVATE void sqlite3RollbackTransaction(Parse*); SQLITE_PRIVATE void sqlite3Savepoint(Parse*, int, Token*); |
︙ | ︙ | |||
20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 | # define wsdPrng sqlite3Prng #endif #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG); sqlite3_mutex_enter(mutex); #endif /* Initialize the state of the random number generator once, ** the first time this routine is called. The seed value does ** not need to contain a lot of randomness since we are not ** trying to do secure encryption or anything like that... ** ** Nothing in this file or anywhere else in SQLite does any kind of | > > > > > > | 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 | # define wsdPrng sqlite3Prng #endif #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG); sqlite3_mutex_enter(mutex); #endif if( N<=0 ){ wsdPrng.isInit = 0; sqlite3_mutex_leave(mutex); return; } /* Initialize the state of the random number generator once, ** the first time this routine is called. The seed value does ** not need to contain a lot of randomness since we are not ** trying to do secure encryption or anything like that... ** ** Nothing in this file or anywhere else in SQLite does any kind of |
︙ | ︙ | |||
20776 20777 20778 20779 20780 20781 20782 | t = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = wsdPrng.s[i]; wsdPrng.s[i] = t; } wsdPrng.isInit = 1; } | | > | | 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 | t = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = wsdPrng.s[i]; wsdPrng.s[i] = t; } wsdPrng.isInit = 1; } assert( N>0 ); do{ wsdPrng.i++; t = wsdPrng.s[wsdPrng.i]; wsdPrng.j += t; wsdPrng.s[wsdPrng.i] = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = t; t += wsdPrng.s[wsdPrng.i]; *(zBuf++) = wsdPrng.s[t]; }while( --N ); sqlite3_mutex_leave(mutex); } #ifndef SQLITE_OMIT_BUILTIN_TEST /* ** For testing purposes, we sometimes want to preserve the state of ** PRNG and restore the PRNG to its saved state at a later time, or |
︙ | ︙ | |||
20813 20814 20815 20816 20817 20818 20819 | SQLITE_PRIVATE void sqlite3PrngRestoreState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3Prng), &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), sizeof(sqlite3Prng) ); } | < < < | 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 | SQLITE_PRIVATE void sqlite3PrngRestoreState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3Prng), &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), sizeof(sqlite3Prng) ); } #endif /* SQLITE_OMIT_BUILTIN_TEST */ /************** End of random.c **********************************************/ /************** Begin file utf.c *********************************************/ /* ** 2004 April 13 ** |
︙ | ︙ | |||
23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 | #ifdef SQLITE_TEST /* In test mode, increase the size of this structure a bit so that ** it is larger than the struct CrashFile defined in test6.c. */ char aPadding[32]; #endif }; /* ** Allowed values for the unixFile.ctrlFlags bitmask: */ #define UNIXFILE_EXCL 0x01 /* Connections from one process only */ #define UNIXFILE_RDONLY 0x02 /* Connection is read only */ #define UNIXFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ | > > > > > > | 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 | #ifdef SQLITE_TEST /* In test mode, increase the size of this structure a bit so that ** it is larger than the struct CrashFile defined in test6.c. */ char aPadding[32]; #endif }; /* This variable holds the process id (pid) from when the xRandomness() ** method was called. If xOpen() is called from a different process id, ** indicating that a fork() has occurred, the PRNG will be reset. */ static int randomnessPid = 0; /* ** Allowed values for the unixFile.ctrlFlags bitmask: */ #define UNIXFILE_EXCL 0x01 /* Connections from one process only */ #define UNIXFILE_RDONLY 0x02 /* Connection is read only */ #define UNIXFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ |
︙ | ︙ | |||
28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 | /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_MASTER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); memset(p, 0, sizeof(unixFile)); if( eType==SQLITE_OPEN_MAIN_DB ){ UnixUnusedFd *pUnused; pUnused = findReusableFd(zName, flags); if( pUnused ){ | > > > > > > > > > > | 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 | /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_MASTER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); /* Detect a pid change and reset the PRNG. There is a race condition ** here such that two or more threads all trying to open databases at ** the same instant might all reset the PRNG. But multiple resets ** are harmless. */ if( randomnessPid!=getpid() ){ randomnessPid = getpid(); sqlite3_randomness(0,0); } memset(p, 0, sizeof(unixFile)); if( eType==SQLITE_OPEN_MAIN_DB ){ UnixUnusedFd *pUnused; pUnused = findReusableFd(zName, flags); if( pUnused ){ |
︙ | ︙ | |||
29330 29331 29332 29333 29334 29335 29336 29337 29338 | ** in the random seed. ** ** When testing, initializing zBuf[] to zero is all we do. That means ** that we always use the same random number sequence. This makes the ** tests repeatable. */ memset(zBuf, 0, nBuf); #if !defined(SQLITE_TEST) { | > | < | | | | 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 | ** in the random seed. ** ** When testing, initializing zBuf[] to zero is all we do. That means ** that we always use the same random number sequence. This makes the ** tests repeatable. */ memset(zBuf, 0, nBuf); randomnessPid = getpid(); #if !defined(SQLITE_TEST) { int fd, got; fd = robust_open("/dev/urandom", O_RDONLY, 0); if( fd<0 ){ time_t t; time(&t); memcpy(zBuf, &t, sizeof(t)); memcpy(&zBuf[sizeof(t)], &randomnessPid, sizeof(randomnessPid)); assert( sizeof(t)+sizeof(randomnessPid)<=(size_t)nBuf ); nBuf = sizeof(t) + sizeof(randomnessPid); }else{ do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR ); robust_close(0, fd, __LINE__); } } #endif return nBuf; |
︙ | ︙ | |||
34079 34080 34081 34082 34083 34084 34085 | } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { winModeBit(pFile, WINFILE_PSOW, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { | | | 34100 34101 34102 34103 34104 34105 34106 34107 34108 34109 34110 34111 34112 34113 34114 | } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { winModeBit(pFile, WINFILE_PSOW, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_WIN32_AV_RETRY: { int *a = (int*)pArg; if( a[0]>0 ){ winIoerrRetry = a[0]; |
︙ | ︙ | |||
34184 34185 34186 34187 34188 34189 34190 | */ static void winShmEnterMutex(void){ sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); } static void winShmLeaveMutex(void){ sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); } | | | 34205 34206 34207 34208 34209 34210 34211 34212 34213 34214 34215 34216 34217 34218 34219 | */ static void winShmEnterMutex(void){ sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); } static void winShmLeaveMutex(void){ sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); } #ifndef NDEBUG static int winShmMutexHeld(void) { return sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); } #endif /* ** Object used to represent a single file opened and mmapped to provide |
︙ | ︙ | |||
122092 122093 122094 122095 122096 122097 122098 | /* ** Reset the PRNG back to its uninitialized state. The next call ** to sqlite3_randomness() will reseed the PRNG using a single call ** to the xRandomness method of the default VFS. */ case SQLITE_TESTCTRL_PRNG_RESET: { | | | 122113 122114 122115 122116 122117 122118 122119 122120 122121 122122 122123 122124 122125 122126 122127 | /* ** Reset the PRNG back to its uninitialized state. The next call ** to sqlite3_randomness() will reseed the PRNG using a single call ** to the xRandomness method of the default VFS. */ case SQLITE_TESTCTRL_PRNG_RESET: { sqlite3_randomness(0,0); break; } /* ** sqlite3_test_control(BITVEC_TEST, size, program) ** ** Run a test against a Bitvec object of size. The program argument |
︙ | ︙ |
Changes to SQLite.Interop/src/core/sqlite3.h.
︙ | ︙ | |||
105 106 107 108 109 110 111 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.2" #define SQLITE_VERSION_NUMBER 3008002 | | | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.8.2" #define SQLITE_VERSION_NUMBER 3008002 #define SQLITE_SOURCE_ID "2014-01-15 00:24:22 c697d2f83c2d8ea0a100b84b0debb6a322c3a876" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version, sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros |
︙ | ︙ | |||
2371 2372 2373 2374 2375 2376 2377 2378 | ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the build-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** | > | | | > | | 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 | ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the build-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** ^If N is less than one, then P can be a NULL pointer. ** ** ^If this routine has not been previously called or if the previous ** call had N less than one, then the PRNG is seeded using randomness ** obtained from the xRandomness method of the default [sqlite3_vfs] object. ** ^If the previous call to this routine had an N of 1 or more then ** the pseudo-randomness is generated ** internally and without recourse to the [sqlite3_vfs] xRandomness ** method. */ SQLITE_API void sqlite3_randomness(int N, void *P); /* ** CAPI3REF: Compile-Time Authorization Callbacks |
︙ | ︙ |
Changes to Setup/SQLite.iss.
︙ | ︙ | |||
202 203 204 205 206 207 208 | #endif Components: Application\LINQ; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.Linq.dll; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete Components: Application\LINQ and Application\Symbols; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.Linq.pdb; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete #endif #if Year != "2005" && Year != "2008" | | | > > | 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | #endif Components: Application\LINQ; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.Linq.dll; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete Components: Application\LINQ and Application\Symbols; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.Linq.pdb; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete #endif #if Year != "2005" && Year != "2008" #if Year == "2010" Components: Application\EF6; Source: ..\Externals\EntityFramework\lib\net40\EntityFramework.dll; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete #elif Year == "2012" || Year == "2013" Components: Application\EF6; Source: ..\Externals\EntityFramework\lib\net45\EntityFramework.dll; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete #endif Components: Application\EF6; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.EF6.dll; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete Components: Application\EF6 and Application\Symbols; Source: ..\bin\{#Year}\{#BaseConfiguration}\bin\System.Data.SQLite.EF6.pdb; DestDir: {app}\bin; Flags: restartreplace uninsrestartdelete #endif #if Pos("NativeOnly", AppConfiguration) != 0 |
︙ | ︙ |
Changes to Setup/verify.lst.
︙ | ︙ | |||
745 746 747 748 749 750 751 752 753 | # # NOTE: This is the list of core interop files that should be present in the # standard setup archives (i.e. those not containing the mixed-mode # assembly) that support EF6 (i.e. available with the desktop .NET # Framework 4.0 and later). # set sds_manifests(setupEf6Interop) { {{app}\bin\System.Data.SQLite.EF6.dll} } | > < < < < < < < < < < < | 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 | # # NOTE: This is the list of core interop files that should be present in the # standard setup archives (i.e. those not containing the mixed-mode # assembly) that support EF6 (i.e. available with the desktop .NET # Framework 4.0 and later). # set sds_manifests(setupEf6Interop) { {{app}\bin\EntityFramework.dll} {{app}\bin\System.Data.SQLite.EF6.dll} } ############################################################################### # # NOTE: This is the list of files that should be present in all setup archives # supporting the .NET Framework 2.0 for x86. # set sds_manifests(setupX86Vs2005) { |
︙ | ︙ | |||
874 875 876 877 878 879 880 | # 3. Finally, the final list of files for this archive file name is built # by combining all the file names in the file lists discovered in the # previous step. Duplicate file names, if any, should be harmless. # # $result == $eagle_manifests(core) UNION $eagle_manifests(library) # ############################################################################### | | > | 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 | # 3. Finally, the final list of files for this archive file name is built # by combining all the file names in the file lists discovered in the # previous step. Duplicate file names, if any, should be harmless. # # $result == $eagle_manifests(core) UNION $eagle_manifests(library) # ############################################################################### ############################ Source Code Packages ############################# ############################################################################### set manifests(sqlite-netFx-source-.zip) [list sds \ source] ############################################################################### ################### Visual Studio 2005 / .NET Framework 2.0 ################### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx20-binary-Win32-2005-.zip) [list sds \ binaryCore binaryExtra binaryInterop] ############################################################################### |
︙ | ︙ | |||
923 924 925 926 927 928 929 930 931 932 933 934 935 936 | ############################################################################### set manifests(sqlite-netFx20-static-binary-bundle-x64-2005-.zip) [list sds \ binaryCore binaryExtra] ############################################################################### set manifests(sqlite-netFx20-setup-x86-2005-.exe) [list sds \ setupCore setupInterop setupX86Vs2005] ############################################################################### set manifests(sqlite-netFx20-setup-x64-2005-.exe) [list sds \ | > > > | 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 | ############################################################################### set manifests(sqlite-netFx20-static-binary-bundle-x64-2005-.zip) [list sds \ binaryCore binaryExtra] ############################################################################### ################### Visual Studio 2005 / .NET Framework 2.0 ################### ############################### Setup Packages ################################ ############################################################################### set manifests(sqlite-netFx20-setup-x86-2005-.exe) [list sds \ setupCore setupInterop setupX86Vs2005] ############################################################################### set manifests(sqlite-netFx20-setup-x64-2005-.exe) [list sds \ |
︙ | ︙ | |||
944 945 946 947 948 949 950 951 952 953 954 955 956 957 | ############################################################################### set manifests(sqlite-netFx20-setup-bundle-x64-2005-.exe) [list sds \ setupCore setupBundle setupX64Vs2005] ############################################################################### ################### Visual Studio 2008 / .NET Framework 3.5 ################### ############################################################################### set manifests(sqlite-netFx35-binary-Win32-2008-.zip) [list sds \ binaryCore binaryLinq binaryExtra binaryInterop] ############################################################################### | > | 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 | ############################################################################### set manifests(sqlite-netFx20-setup-bundle-x64-2005-.exe) [list sds \ setupCore setupBundle setupX64Vs2005] ############################################################################### ################### Visual Studio 2008 / .NET Framework 3.5 ################### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx35-binary-Win32-2008-.zip) [list sds \ binaryCore binaryLinq binaryExtra binaryInterop] ############################################################################### |
︙ | ︙ | |||
985 986 987 988 989 990 991 992 993 994 995 996 997 998 | ############################################################################### set manifests(sqlite-netFx35-static-binary-bundle-x64-2008-.zip) [list sds \ binaryCore binaryLinq binaryExtra] ############################################################################### set manifests(sqlite-netFx35-setup-x86-2008-.exe) [list sds \ setupCore setupLinqCore setupInterop setupLinqInterop setupX86Vs2008] ############################################################################### set manifests(sqlite-netFx35-setup-x64-2008-.exe) [list sds \ | > > > | 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 | ############################################################################### set manifests(sqlite-netFx35-static-binary-bundle-x64-2008-.zip) [list sds \ binaryCore binaryLinq binaryExtra] ############################################################################### ################### Visual Studio 2008 / .NET Framework 3.5 ################### ############################### Setup Packages ################################ ############################################################################### set manifests(sqlite-netFx35-setup-x86-2008-.exe) [list sds \ setupCore setupLinqCore setupInterop setupLinqInterop setupX86Vs2008] ############################################################################### set manifests(sqlite-netFx35-setup-x64-2008-.exe) [list sds \ |
︙ | ︙ | |||
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 | ############################################################################### set manifests(sqlite-netFx35-setup-bundle-x64-2008-.exe) [list sds \ setupCore setupLinqCore setupBundle setupLinqBundle setupX64Vs2008] ############################################################################### ############### Visual Studio 2008 / .NET Compact Framework 3.5 ############### ############################################################################### set manifests(sqlite-netFx35-binary-PocketPC-ARM-2008-.zip) [list sds \ binaryCore binaryCompact] set manifests(sqlite-netFx35-binary-PocketPC-ARM-2008-.zip,subst) ""; # dynamic ############################################################################### ################### Visual Studio 2010 / .NET Framework 4.0 ################### ############################################################################### set manifests(sqlite-netFx40-binary-Win32-2010-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra binaryInterop] ############################################################################### | > > | 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 | ############################################################################### set manifests(sqlite-netFx35-setup-bundle-x64-2008-.exe) [list sds \ setupCore setupLinqCore setupBundle setupLinqBundle setupX64Vs2008] ############################################################################### ############### Visual Studio 2008 / .NET Compact Framework 3.5 ############### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx35-binary-PocketPC-ARM-2008-.zip) [list sds \ binaryCore binaryCompact] set manifests(sqlite-netFx35-binary-PocketPC-ARM-2008-.zip,subst) ""; # dynamic ############################################################################### ################### Visual Studio 2010 / .NET Framework 4.0 ################### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx40-binary-Win32-2010-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra binaryInterop] ############################################################################### |
︙ | ︙ | |||
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | ############################################################################### set manifests(sqlite-netFx40-static-binary-bundle-x64-2010-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### set manifests(sqlite-netFx40-setup-x86-2010-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2010] ############################################################################### set manifests(sqlite-netFx40-setup-x64-2010-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2010] ############################################################################### set manifests(sqlite-netFx40-setup-bundle-x86-2010-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ | > > > | | > | 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 | ############################################################################### set manifests(sqlite-netFx40-static-binary-bundle-x64-2010-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### ################### Visual Studio 2010 / .NET Framework 4.0 ################### ############################### Setup Packages ################################ ############################################################################### set manifests(sqlite-netFx40-setup-x86-2010-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2010] ############################################################################### set manifests(sqlite-netFx40-setup-x64-2010-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2010] ############################################################################### set manifests(sqlite-netFx40-setup-bundle-x86-2010-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX86Vs2010] ############################################################################### set manifests(sqlite-netFx40-setup-bundle-x64-2010-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX64Vs2010] ############################################################################### ################### Visual Studio 2012 / .NET Framework 4.5 ################### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx45-binary-Win32-2012-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra binaryInterop] ############################################################################### |
︙ | ︙ | |||
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 | ############################################################################### set manifests(sqlite-netFx45-static-binary-bundle-x64-2012-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### set manifests(sqlite-netFx45-setup-x86-2012-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2012] ############################################################################### set manifests(sqlite-netFx45-setup-x64-2012-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2012] ############################################################################### set manifests(sqlite-netFx45-setup-bundle-x86-2012-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ | > > > | | > > | 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 | ############################################################################### set manifests(sqlite-netFx45-static-binary-bundle-x64-2012-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### ################### Visual Studio 2012 / .NET Framework 4.5 ################### ############################### Setup Packages ################################ ############################################################################### set manifests(sqlite-netFx45-setup-x86-2012-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2012] ############################################################################### set manifests(sqlite-netFx45-setup-x64-2012-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2012] ############################################################################### set manifests(sqlite-netFx45-setup-bundle-x86-2012-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX86Vs2012] ############################################################################### set manifests(sqlite-netFx45-setup-bundle-x64-2012-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX64Vs2012] ############################################################################### ############### Visual Studio 2012 / .NET Compact Framework 3.9 ############### ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx39-binary-WinCE-ARM-2012-.zip) [list sds \ binaryCore binaryCompact] set manifests(sqlite-netFx39-binary-WinCE-ARM-2012-.zip,subst) ""; # dynamic ############################################################################### set manifests(sqlite-netFx39-binary-WinCE-x86-2012-.zip) [list sds \ binaryCore binaryCompact] set manifests(sqlite-netFx39-binary-WinCE-x86-2012-.zip,subst) ""; # dynamic ############################################################################### ################## Visual Studio 2013 / .NET Framework 4.5.1 ################## ############################### Binary Packages ############################### ############################################################################### set manifests(sqlite-netFx451-binary-Win32-2013-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra binaryInterop] ############################################################################### |
︙ | ︙ | |||
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 | ############################################################################### set manifests(sqlite-netFx451-static-binary-bundle-x64-2013-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### set manifests(sqlite-netFx451-setup-x86-2013-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2013] ############################################################################### set manifests(sqlite-netFx451-setup-x64-2013-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2013] ############################################################################### set manifests(sqlite-netFx451-setup-bundle-x86-2013-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ | > > > | | | 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 | ############################################################################### set manifests(sqlite-netFx451-static-binary-bundle-x64-2013-.zip) [list sds \ binaryCore binaryLinq binaryEf6 binaryExtra] ############################################################################### ################## Visual Studio 2013 / .NET Framework 4.5.1 ################## ############################### Setup Packages ################################ ############################################################################### set manifests(sqlite-netFx451-setup-x86-2013-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX86Vs2013] ############################################################################### set manifests(sqlite-netFx451-setup-x64-2013-.exe) [list sds \ setupCore setupInterop setupLinqCore setupEf6Core setupLinqInterop \ setupEf6Interop setupX64Vs2013] ############################################################################### set manifests(sqlite-netFx451-setup-bundle-x86-2013-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX86Vs2013] ############################################################################### set manifests(sqlite-netFx451-setup-bundle-x64-2013-.exe) [list sds \ setupCore setupBundle setupLinqCore setupEf6Core setupLinqBundle \ setupEf6Interop setupX64Vs2013] ############################################################################### # end of file |