System.Data.SQLite

Check-in [23e8ca95a9]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Minor build fixes.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | netStandard21
Files: files | file ages | folders
SHA1: 23e8ca95a99dbe17140b54c79252f7662f053442
User & Date: mistachkin 2019-10-06 05:01:45.520
Context
2019-10-06
05:05
Prepare to support an alternate Eagle binary directory targeting the .NET Core 3.0 runtime. check-in: a570446a0e user: mistachkin tags: netStandard21
05:01
Minor build fixes. check-in: 23e8ca95a9 user: mistachkin tags: netStandard21
02:31
Some test suite fixes. check-in: 2b57a8e0c8 user: mistachkin tags: netStandard21
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to SQLite.Interop/src/generic/interop.h.
1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17

18
1
2
3
4
5
6
7
8
9
10
11
12

13
14
15
16

17
18












-
+



-
+

/*
 * interop.h -
 *
 * Written by Joe Mistachkin.
 * Released to the public domain, use at your own risk!
 */

#ifndef INTEROP_VERSION
#define INTEROP_VERSION          "1.0.112.0"
#endif

#ifndef INTEROP_SOURCE_ID
#define INTEROP_SOURCE_ID        "767b97f17029698d929f3fd9be563f51942b1805"
#define INTEROP_SOURCE_ID        "0000000000000000000000000000000000000000"
#endif

#ifndef INTEROP_SOURCE_TIMESTAMP
#define INTEROP_SOURCE_TIMESTAMP "2019-05-16 03:23:41 UTC"
#define INTEROP_SOURCE_TIMESTAMP "0000-00-00 00:00:00 UTC"
#endif
Changes to testlinq/Program.cs.
892
893
894
895
896
897
898
899

900
901
902
903
904
905
906
892
893
894
895
896
897
898

899
900
901
902
903
904
905
906







-
+







          }
      }

      private static void DateTimeTest2(
          string dateTimeFormat
          )
      {
#if NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 || NET_47 || NET_471 || NET_472
#if !NET_STANDARD_20 && !NET_STANDARD_21
          TraceListener listener = new ConsoleTraceListener();
#else
          TraceListener listener = new TextWriterTraceListener(Console.Out);
#endif

          Trace.Listeners.Add(listener);
          Environment.SetEnvironmentVariable("SQLite_ForceLogPrepare", "1");