︙ | | |
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
|
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
70
71
72
|
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
|
# the source code files, the built binaries, and the release packages.
# The revision number is reserved for NuGet package versioning.
#
set version(major) 1
set version(minor) 0
set version(build) 95; # NOTE: Incremented with each release.
set version(revision) 0
###############################################################################
#
# NOTE: What is the full version of the EntityFramework NuGet package (which
# is not [necessarily] the same version as the assembly itself) in use
# by the System.Data.SQLite NuGet packages?
#
set version(ef6) 6.1.2.0
###############################################################################
# ********************* END VOLATILE VERSION INFORMATION **********************
###############################################################################
#
# NOTE: Build the full version number using the components setup above. This
# should not have to be changed.
#
set version(full) [appendArgs $version(major) . $version(minor) . \
$version(build) . $version(revision)]
###############################################################################
#
# NOTE: Build the version number used for the NuGet packages. This should
# be the same as the above version number, with the exception of the
# revision, which may differ.
# NOTE: Build the version number regular expression used for the NuGet
# packages. This should be the same as the above version number,
# with the exception of the revision, which may differ.
#
set version(nuget) [appendArgs $version(major) . $version(minor) . \
$version(build) . \\d+]
set version(nuget) [appendArgs $version(major) \\. $version(minor) \\. \
$version(build) \\. \\d+]
###############################################################################
runTest {test version-1.1 {'System.Data.SQLite' binary version} -body {
file version $systemDataSQLiteDllFile
} -constraints {eagle file_System.Data.SQLite.dll} -result $version(full)}
|
︙ | | |
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
-
-
+
|
[appendArgs "\; [format %03d $version(build)] "\;]
###############################################################################
# SQLite.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
|
-
-
+
|
"\" "]
###############################################################################
# SQLite.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.Beta\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.Beta\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
-
-
+
-
-
-
+
|
$version(nuget) "\" "]
###############################################################################
# SQLite.Core.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Core.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Core.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Core.MSIL.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Core.MSIL.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Core.MSIL.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.EF6.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net40\".*? " \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>]
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "]
###############################################################################
# SQLite.EF6.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net40\".*? " \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>]
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "]
###############################################################################
# SQLite.EF6.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net40\".*? " \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>]
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"EntityFramework\" version=\"" [string map [list . \\.] \
$version(ef6)] "\" "]
###############################################################################
# SQLite.Linq.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Linq.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.Linq.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
[appendArgs <version> $version(nuget) </version>]
</version>]
###############################################################################
# SQLite.MSIL.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
|
-
-
+
|
"\" "]
###############################################################################
# SQLite.MSIL.Beta.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
|
-
-
+
|
$version(nuget) "\" "]
###############################################################################
# SQLite.MSIL.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
|
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
|
-
-
+
|
$version(nuget) "\" "]
###############################################################################
# SQLite.Test.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>] \
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.Test\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Core\\.Test\" version=\"" \
$version(nuget) "\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
|
︙ | | |
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
$version(nuget) "\" "]
###############################################################################
# SQLite.x64.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>]
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "]
###############################################################################
# SQLite.x86.nuspec
###############################################################################
lappend patterns \
[appendArgs <version> [string map [list . \\.] $version(nuget)] \
</version>]
[appendArgs <version> $version(nuget) </version>] \
[appendArgs " targetFramework=\"net20\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net40\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net45\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "] \
[appendArgs " targetFramework=\"net451\".*? " \
"id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \
"\" "]
###############################################################################
# SQLite.Designer/AssemblyInfo.cs
###############################################################################
lappend patterns \
[appendArgs AssemblyVersion\\(\" [string map [list . \\.] \
|
︙ | | |
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
|
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
|
+
+
+
+
+
+
+
+
+
|
[file join NuGet SQLite.Core.nuspec] \
[file join NuGet SQLite.Core.Beta.nuspec] \
[file join NuGet SQLite.Core.Test.nuspec] \
[file join NuGet SQLite.Core.MSIL.nuspec] \
[file join NuGet SQLite.Core.MSIL.Beta.nuspec] \
[file join NuGet SQLite.Core.MSIL.Test.nuspec] \
[file join NuGet SQLite.EF6.nuspec] \
[file join NuGet SQLite.EF6.nuspec] \
[file join NuGet SQLite.EF6.nuspec] \
[file join NuGet SQLite.EF6.nuspec] \
[file join NuGet SQLite.EF6.Beta.nuspec] \
[file join NuGet SQLite.EF6.Beta.nuspec] \
[file join NuGet SQLite.EF6.Beta.nuspec] \
[file join NuGet SQLite.EF6.Beta.nuspec] \
[file join NuGet SQLite.EF6.Test.nuspec] \
[file join NuGet SQLite.EF6.Test.nuspec] \
[file join NuGet SQLite.EF6.Test.nuspec] \
[file join NuGet SQLite.EF6.Test.nuspec] \
[file join NuGet SQLite.Linq.nuspec] \
[file join NuGet SQLite.Linq.Beta.nuspec] \
[file join NuGet SQLite.Linq.Test.nuspec] \
[file join NuGet SQLite.MSIL.nuspec] \
[file join NuGet SQLite.MSIL.nuspec] \
[file join NuGet SQLite.MSIL.nuspec] \
|
︙ | | |
939
940
941
942
943
944
945
946
947
948
949
950
951
952
|
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.Test.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x64.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join NuGet SQLite.x86.nuspec] \
[file join SQLite.Designer AssemblyInfo.cs] \
[file join SQLite.Designer AssemblyInfo.cs] \
[file join SQLite.Designer source.extension.vsixmanifest] \
[file join SQLite.Interop props SQLite.Interop.2005.vsprops] \
[file join SQLite.Interop props SQLite.Interop.2005.vsprops] \
[file join SQLite.Interop props SQLite.Interop.2005.vsprops] \
|
︙ | | |
︙ | | |
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
|
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
|
-
+
-
-
+
-
+
-
-
-
+
+
+
+
+
+
+
+
|
</td>
<td width="5"></td>
<td valign="top">
This NuGet package contains just the binaries to support Entity
Framework 6 using System.Data.SQLite 1.0.94.0 (3.8.6). The .NET
Framework 4.0, 4.5, or 4.5.1 is required.
<br />
<big><b>This package depends on both the
<big><b>This package depends on the "EntityFramework"
"System.Data.SQLite.Core" and "EntityFramework"
packages.</b></big>
package.</b></big>
<br />
(sha1: fc4b0046b083a9fc7a294df3af3b9d3918ee88d8)
</td>
</tr>
<tr>
<td width="10"> </td>
<td width="30%" valign="top" align="right">
<a href="https://www.nuget.org/api/v2/package/System.Data.SQLite.Linq/1.0.94.1">System.Data.SQLite.Linq.1.0.94.1.nupkg</a>
<br />
(0.17 MiB)
</td>
<td width="5"></td>
<td valign="top">
This NuGet package contains just the binaries to support LINQ using
System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1, 4.0,
4.5, or 4.5.1 is required.
<br />
<big><b>This package depends on the "System.Data.SQLite.Core"
<big><b>This package does not depend on any other package.</b></big>
package.</b></big>
<br />
(sha1: a08052b4d350e3ba830ebf0618bc8c221a2ef70e)
</td>
</tr>
<tr>
<td width="10"> </td>
<td width="30%" valign="top" align="right">
<a href="https://www.nuget.org/api/v2/package/System.Data.SQLite.MSIL/1.0.94.1">System.Data.SQLite.MSIL.1.0.94.1.nupkg</a>
<br />
(0.99 MiB)
</td>
<td width="5"></td>
<td valign="top">
This NuGet package contains the managed binaries for System.Data.SQLite
1.0.94.0. The .NET Framework 3.5 SP1, 4.0, 4.5, or 4.5.1 is required.
<br />
<big><b>This is a legacy package; if possible, please use either the
"System.Data.SQLite" or "System.Data.SQLite.Core"
package instead. This package depends on the "EntityFramework"
package.</b></big>
package instead.</b></big>
<br />
<br />
<big><b><i>This NuGet package does not include any code from the native
SQLite core library and will not work properly without the native
assembly "SQLite.Interop.dll" compiled for the processor
architecture of the host process being present in a directory in the
native library search path.</i></b></big>
<br />
<br />
<big><b><i>As of version 1.0.95.0, this package will not directly
contain any of the required binaries. Instead, this package will
depend on the "System.Data.SQLite.Core.MSIL",
"System.Data.SQLite.Linq", and
"System.Data.SQLite.EF6" packages.</i></b></big>
<br />
<br />
(sha1: 7689db66a5b1f2c9c751dbece99ec2faa840f48d)
</td>
</tr>
<tr>
<td width="10"> </td>
|
︙ | | |
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
|
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
|
-
-
+
|
System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1,
4.0, 4.5, or 4.5.1 is required. For the included native binaries, the
version of the Visual C++ runtime corresponding to the .NET Framework
used by the associated managed assembly is statically linked.
<br />
<big><b>This is a legacy package; if possible, please use either the
"System.Data.SQLite" or "System.Data.SQLite.Core"
package instead. This package depends on the "EntityFramework"
package.</b></big>
package instead.</b></big>
<br />
(sha1: 501c8252fc23134ab99bc6c170a66732578e4a73)
</td>
</tr>
<tr>
<td width="10"> </td>
|
︙ | | |
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
|
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
|
-
+
-
|
System.Data.SQLite 1.0.94.0 (3.8.6). The .NET Framework 3.5 SP1,
4.0, 4.5, or 4.5.1 is required. For the included native binaries, the
version of the Visual C++ runtime corresponding to the .NET Framework
used by the associated managed assembly is statically linked.
<br />
<big><b>This is a legacy package; if possible, please use either the
"System.Data.SQLite" or "System.Data.SQLite.Core"
package instead. This package depends on the
package instead.</b></big>
"EntityFramework" package.</b></big>
<br />
(sha1: 0c9fffde7bd3ed7181ad5aa4dba8e372abe54f0c)
</td>
</tr>
<tr>
<td colspan="4">
|
︙ | | |