Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From f0e7bfcebd1c6d4d
To babe22b81719f64c
2017-08-02
| | |
17:33 |
|
check-in: 2945b9a59f user: mistachkin tags: vs2017
|
17:20 |
|
check-in: babe22b817 user: mistachkin tags: vs2017
|
2017-07-31
| | |
19:16 |
|
check-in: 64b4972972 user: mistachkin tags: trunk
|
2017-05-12
| | |
20:45 |
|
check-in: 6058d5f357 user: mistachkin tags: branch-1.0.105
|
2017-05-11
| | |
15:59 |
|
check-in: f0e7bfcebd user: mistachkin tags: branch-1.0.105
|
15:48 |
|
check-in: defe7832c2 user: mistachkin tags: branch-1.0.105
|
| | |
Changes to Doc/Extra/Core/lang_createtrigger.html.
︙ | | |
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
|
-
+
+
+
+
+
+
+
|
restrictions apply:</p>
<ul>
<li><p>
The name of the table to be modified in an <a href="lang_update.html">UPDATE</a>, <a href="lang_delete.html">DELETE</a>, or <a href="lang_insert.html">INSERT</a>
statement must be an unqualified table name. In other words, one must
use just "<i>tablename</i>" not "<i>database</i><b>.</b><i>tablename</i>"
when specifying the table. The table to be modified must exist in the
when specifying the table. </p></li>
<li><p>
For non-TEMP triggers,
the table to be modified or queried must exist in the
same database as the table or view to which the trigger is attached.
TEMP triggers are not subject to the same-database rule. A TEMP
trigger is allowed to query or modify any table in any <a href="lang_attach.html">ATTACH</a>-ed database.
</p></li>
<li><p>
The "INSERT INTO <i>table</i> DEFAULT VALUES" form of the <a href="lang_insert.html">INSERT</a> statement
is not supported.
</p></li>
|
︙ | | |
Changes to Doc/Extra/Core/pragma.html.
︙ | | |
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
|
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
|
-
+
+
|
<p>The foreign_key_check pragma checks the database, or the table
called "<i>table-name</i>", for
<a href="foreignkeys.html">foreign key constraints</a> that are violated and returns one row of
output for each violation. There are four columns in each result row.
The first column is the name of the table that contains the REFERENCES
clause. The second column is the <a href="lang_createtable.html#rowid">rowid</a> of the row that
contains the invalid REFERENCES clause. The third column is the name
contains the invalid REFERENCES clause, or NULL if the child table is a
<a href="withoutrowid.html">WITHOUT ROWID</a> table. The third column is the name
of the table that is referred to. The fourth column is the index of
the specific foreign key constraint that failed. The fourth column
in the output of the foreign_key_check pragma is the same integer as
the first column in the output of the <a href="pragma.html#pragma_foreign_key_list">foreign_key_list pragma</a>.
When a "<i>table-name</i>" is specified, the only foreign key constraints
checked are those created by REFERENCES clauses in the
CREATE TABLE statement for <i>table-name</i>.</p>
|
︙ | | |
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
|
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
|
-
+
-
-
+
+
-
-
-
+
+
+
-
-
-
+
-
-
-
+
+
-
|
<h _id=pragma_page_size style="display:none"> PRAGMA page_size</h><hr>
<p><b>PRAGMA </b><i>schema.</i><b>page_size;
<br>PRAGMA </b><i>schema.</i><b>page_size = </b><i>bytes</i><b>;</b></p>
<p>Query or set the page size of the database. The page
size must be a power of two between 512 and 65536 inclusive.
</p>
<p>When a new database is created, SQLite assigned a page size to
<p>When a new database is created, SQLite assigns a page size to
the database based on platform and filesystem. For many years,
the default page size was almost always 1024 bytes, but beginning
with SQLite <a href="releaselog/3_12_0.html">version 3.12.0</a> (2016-03-29),
the default page size increased
to 4096.
the default page size increased to 4096.
The default page size is recommended for most applications.
<p>The page_size pragma will only set in the
page size if it is issued before any other SQL statements that
cause I/O against the database file.
<p>Specifying a new page size does not change the page size
immediately. Instead, the new page size is remembered and is used
to set the page size when the database is first created, if it does
SQL statements that cause I/O against the database file include
"CREATE", "SELECT", "BEGIN IMMEDIATE", and "PRAGMA journal_mode=WAL".
If the page_size pragma is
not already exist when the page_size pragma is issued, or at the
used to specify a new page size just prior to
running the <a href="lang_vacuum.html">VACUUM</a> command and if the database is not in
<a href="wal.html">WAL journal mode</a> then <a href="lang_vacuum.html">VACUUM</a> will change the page
next <a href="lang_vacuum.html">VACUUM</a> command that is run on the same database connection
while not in <a href="wal.html">WAL mode</a>.</p>
size to the new value.</p>
<p>The <a href="compile.html#default_page_size">SQLITE_DEFAULT_PAGE_SIZE</a> compile-time option can be used
to change the default page size assigned to new databases.
<a name="pragma_parser_trace"></a>
<h _id=pragma_parser_trace style="display:none"> PRAGMA parser_trace</h><hr>
<p><b>PRAGMA parser_trace = </b><i>boolean</i><b>; </b></p>
|
︙ | | |
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
|
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
|
-
+
|
<a href="fileformat2.html#database_header">database header</a>.
<p> SQLite automatically increments the schema-version whenever the
schema changes. As each SQL statement runs, the schema version is
checked to ensure that the schema has not changed since the SQL
statement was <a href="c3ref/prepare.html">prepared</a>.
Subverting this mechanism by using "PRAGMA schema_version"
my cause SQL statement to run using an obsolete schema,
may cause SQL statement to run using an obsolete schema,
which can lead to incorrect answers and/or
<a href="howtocorrupt.html#cfgerr">database corruption</a>.
<p><span style='background-color: #ffff60;'>
<b>Warning:</b>
Misuse of this pragma can result in <a href="howtocorrupt.html#cfgerr">database corruption</a>.
|
︙ | | |
Changes to Doc/Extra/Core/syntax/column-name-list.html.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
+
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="../sqlite.css" rel="stylesheet">
<title>SQLite Syntax: column-name-list</title>
<!-- path=../ -->
</head>
<body>
<div class=nosearch>
<a href="../index.html">
<img class="logo" src="../images/sqlite370_banner.gif" alt="SQLite" border="0">
</a>
<div><!-- IE hack to prevent disappearing logo --></div>
|
︙ | | |
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
-
+
-
+
|
<li><a href='../docs.html'>Documentation</a>
<li><a href='../download.html'>Download</a>
<li><a href='../support.html'>Support</a>
<li><a href='../prosupport.html'>Purchase</a>
</ul>
</div>
<div class="searchmenu" id="searchmenu">
<form method="GET" action="search">
<form method="GET" action="../search">
<span class="desktoponly">Search for:</span> <input type="text" name="q">
<input type="submit" value="Go">
</form>
</div>
</div>
<script>
function toggle_div(nm) {
var w = document.getElementById(nm);
if( w.style.display=="block" ){
w.style.display = "none";
}else{
w.style.display = "block";
}
}
function div_off(nm){document.getElementById(nm).style.display="none";}
window.onbeforeunload = function(e){div_off("submenu");}
/* Disable the Search feature if we are not operating from CGI, since */
/* Search is accomplished using CGI and will not work without it. */
if( !location.origin.match(/http/) ){
if( !location.origin.match || !location.origin.match(/http/) ){
document.getElementById("search_menubutton").style.display = "none";
}
/* Used by the Hide/Show button beside syntax diagrams, to toggle the */
function hideorshow(btn,obj){
var x = document.getElementById(obj);
var b = document.getElementById(btn);
if( x.style.display!='none' ){
|
︙ | | |
Changes to Doc/Extra/Provider/dbfactorysupport.html.
︙ | | |
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
-
+
|
<configuration>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
description=".NET Framework Data Provider for SQLite"
type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite,
Version=1.0.105.1, Culture=neutral,
Version=1.0.106.0, Culture=neutral,
PublicKeyToken=db937bc2d44ff139"/>
</DbProviderFactories>
</system.data>
</configuration>
</pre>
</div>
<p>
|
︙ | | |
Changes to Doc/Extra/Provider/version.html.
︙ | | |
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
+
+
+
+
+
+
+
+
+
+
|
</td>
</tr>
</table>
</div>
<div id="mainSection">
<div id="mainBody">
<h1 class="heading">Version History</h1>
<p><b>1.0.106.0 - August XX, 2017 <font color="red">(release scheduled)</font></b></p>
<ul>
<li>Updated to <a href="https://www.sqlite.org/draft/releaselog/3_20_0.html">SQLite 3.20.0</a>.</li>
<li>Add preliminary support for Visual Studio 2017 and the .NET Framework 4.7.</li>
</ul>
<p><b>1.0.105.2 - June 12, 2017</b></p>
<ul>
<li>Updated to <a href="https://www.sqlite.org/releaselog/3_19_3.html">SQLite 3.19.3</a>.</li>
<li>Fix issues that prevented SQLiteBlob creation from succeeding for tables that did not have an integer primary key.</li>
</ul>
<p><b>1.0.105.1 - May 15, 2017</b></p>
<ul>
<li>Prevent culture settings from negatively impacting integer connection string defaults.</li>
<li>Make sure the "No_SQLiteConnectionNewParser" and "DefaultFlags_SQLiteConnection" setting values end up being cached.</li>
<li>Cache the XML file name and assembly directory used by the configuration subsystem.</li>
</ul>
<p><b>1.0.105.0 - April 9, 2017</b></p>
|
︙ | | |
Changes to Doc/Extra/Provider/welcome.html.
︙ | | |
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
-
+
|
<font color="red">
Itanium processor support not currently included.
</font>
</p>
<h1 class="heading">Distributing the Binaries (Compact Framework)</h1>
<p>Both the <b>System.Data.SQLite.DLL </b>and <b>SQLite.Interop.XXX.DLL</b> files
must be deployed on the Compact Framework. The XXX is the build number of
the System.Data.SQLite library (e.g. "105"). The
the System.Data.SQLite library (e.g. "106"). The
<b>SQLite.Interop.XXX.DLL</b> file is a fully native assembly compiled for
the ARM processor, and System.Data.SQLite is the fully-managed Compact
Framework assembly.</p>
<hr />
<div id="footer">
<p>
<a href="mailto:sqlite-users@mailinglists.sqlite.org?subject=SQLite.NET%20Class%20Library%20Documentation%20Feedback:%20Welcome">
|
︙ | | |
Changes to Doc/SQLite.NET.chm.
cannot compute difference between binary files
Changes to Doc/sync.eagle.
︙ | | |
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
+
|
[file join images sqlite370_banner.gif] \
[file join images syntax alter-table-stmt.gif] \
[file join images syntax analyze-stmt.gif] \
[file join images syntax attach-stmt.gif] \
[file join images syntax begin-stmt.gif] \
[file join images syntax column-constraint.gif] \
[file join images syntax column-def.gif] \
[file join images syntax column-name-list.gif] \
[file join images syntax comment-syntax.gif] \
[file join images syntax commit-stmt.gif] \
[file join images syntax common-table-expression.gif] \
[file join images syntax compound-operator.gif] \
[file join images syntax compound-select-stmt.gif] \
[file join images syntax conflict-clause.gif] \
[file join images syntax create-index-stmt.gif] \
|
︙ | | |
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
+
|
[file join images syntax with-clause.gif] \
[file join syntax alter-table-stmt.html] \
[file join syntax analyze-stmt.html] \
[file join syntax attach-stmt.html] \
[file join syntax begin-stmt.html] \
[file join syntax column-constraint.html] \
[file join syntax column-def.html] \
[file join syntax column-name-list.html] \
[file join syntax comment-syntax.html] \
[file join syntax commit-stmt.html] \
[file join syntax common-table-expression.html] \
[file join syntax compound-operator.html] \
[file join syntax compound-select-stmt.html] \
[file join syntax conflict-clause.html] \
[file join syntax create-index-stmt.html] \
|
︙ | | |
Added Externals/vswhere/vswhere.exe.
cannot compute difference between binary files
Changes to NuGet/SQLite.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Beta</id>
<title>System.Data.SQLite (x86/x64) Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. The official SQLite database engine for both x86 and x64 along with the ADO.NET provider. This package includes support for LINQ and Entity Framework 6.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.Core.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core.Beta</id>
<title>System.Data.SQLite Core (x86/x64) Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. The official SQLite database engine for both x86 and x64 along with the ADO.NET provider.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Core.MSIL.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.MSIL.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core.MSIL.Beta</id>
<title>System.Data.SQLite (MSIL) Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Core.MSIL.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.MSIL.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core.MSIL.Test</id>
<title>System.Data.SQLite (MSIL) Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Core.MSIL.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.MSIL.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core.MSIL</id>
<title>System.Data.SQLite Core (MSIL)</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Core.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core.Test</id>
<title>System.Data.SQLite Core (x86/x64) Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. The official SQLite database engine for both x86 and x64 along with the ADO.NET provider.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Core.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Core.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Core</id>
<title>System.Data.SQLite Core (x86/x64)</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>The official SQLite database engine for both x86 and x64 along with the ADO.NET provider.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.EF6.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.EF6.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.EF6.Beta</id>
<title>System.Data.SQLite EF6 Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. Support for Entity Framework 6 using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.EF6.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.EF6.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.EF6.Test</id>
<title>System.Data.SQLite EF6 Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. Support for Entity Framework 6 using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.EF6.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.EF6.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.EF6</id>
<title>System.Data.SQLite EF6</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>Support for Entity Framework 6 using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Linq.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Linq.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Linq.Beta</id>
<title>System.Data.SQLite LINQ Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Linq.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Linq.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Linq.Test</id>
<title>System.Data.SQLite LINQ Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.Linq.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Linq.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Linq</id>
<title>System.Data.SQLite LINQ</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>Support for LINQ using System.Data.SQLite.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
|
︙ | | |
Changes to NuGet/SQLite.MSIL.Beta.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.MSIL.Beta.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.MSIL.Beta</id>
<title>System.Data.SQLite (MSIL) Beta</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a "beta" package and is not intended for production use. This is a legacy package; if possible, please use either the "System.Data.SQLite.Beta" or "System.Data.SQLite.Core.Beta" package instead. An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Beta" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.MSIL.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.MSIL.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.MSIL.Test</id>
<title>System.Data.SQLite (MSIL) Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. This is a legacy package; if possible, please use either the "System.Data.SQLite.Test" or "System.Data.SQLite.Core.Test" package instead. An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.MSIL.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.MSIL.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.MSIL</id>
<title>System.Data.SQLite (MSIL)</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead. An ADO.NET provider for SQLite (managed-only).</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.MSIL" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.Test.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.Test.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.Test</id>
<title>System.Data.SQLite (x86/x64) Test</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a pre-release package and is not intended for production use. The official SQLite database engine for both x86 and x64 along with the ADO.NET provider. This package includes support for LINQ and Entity Framework 6.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core.Test" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq.Test" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6.Test" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite</id>
<title>System.Data.SQLite (x86/x64)</title>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>The official SQLite database engine for both x86 and x64 along with the ADO.NET provider. This package includes support for LINQ and Entity Framework 6.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Core" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Core" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Core" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Core" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Core" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Core" version="1.0.106.0" />
</group>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files />
</package>
|
Changes to NuGet/SQLite.x64.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.x64.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.x64</id>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead. The official SQLite database engine combined with a complete ADO.NET provider all rolled into a single mixed-mode assembly for x64.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\bin\2008\x64\ReleaseStatic\System.Data.SQLite.dll" target="lib\net20" />
<file src="..\bin\2008\Release\bin\System.Data.SQLite.xml" target="lib\net20" />
<file src="..\bin\2010\x64\ReleaseStatic\System.Data.SQLite.dll" target="lib\net40" />
|
︙ | | |
Changes to NuGet/SQLite.x86.nuspec.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
<?xml version="1.0" encoding="utf-8"?>
<!--
*
* SQLite.x86.nuspec -
*
* Written by Joe Mistachkin.
* Released to the public domain, use at your own risk!
*
-->
<package>
<metadata>
<id>System.Data.SQLite.x86</id>
<version>1.0.105.1</version>
<version>1.0.106.0</version>
<authors>SQLite Development Team</authors>
<description>This is a legacy package; if possible, please use either the "System.Data.SQLite" or "System.Data.SQLite.Core" package instead. The official SQLite database engine combined with a complete ADO.NET provider all rolled into a single mixed-mode assembly for x86.</description>
<language>en-US</language>
<projectUrl>https://system.data.sqlite.org/</projectUrl>
<iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl>
<licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl>
<tags>sqlite database ado.net provider interop</tags>
<copyright>Public Domain</copyright>
<dependencies>
<group targetFramework="net20">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.Linq" version="1.0.105.1" />
<dependency id="System.Data.SQLite.Linq" version="1.0.106.0" />
</group>
<group targetFramework="net40">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net45">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net451">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
<group targetFramework="net46">
<dependency id="System.Data.SQLite.EF6" version="1.0.105.1" />
<dependency id="System.Data.SQLite.EF6" version="1.0.106.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\bin\2008\Win32\ReleaseStatic\System.Data.SQLite.dll" target="lib\net20" />
<file src="..\bin\2008\Release\bin\System.Data.SQLite.xml" target="lib\net20" />
<file src="..\bin\2010\Win32\ReleaseStatic\System.Data.SQLite.dll" target="lib\net40" />
|
︙ | | |
Changes to SQLite.Designer/AssemblyInfo.cs.
︙ | | |
39
40
41
42
43
44
45
46
47
|
39
40
41
42
43
44
45
46
47
|
-
-
+
+
|
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.105.1")]
[assembly: AssemblyFileVersion("1.0.105.1")]
[assembly: AssemblyVersion("1.0.106.0")]
[assembly: AssemblyFileVersion("1.0.106.0")]
|
Added SQLite.Designer/SQLite.Designer.2017.csproj.