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: |
23e8ca95a99dbe17140b54c79252f766 |
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
Changes to SQLite.Interop/src/generic/interop.h.
1 2 3 4 5 6 7 8 9 10 11 12 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.112.0" #endif #ifndef INTEROP_SOURCE_ID | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.112.0" #endif #ifndef INTEROP_SOURCE_ID #define INTEROP_SOURCE_ID "0000000000000000000000000000000000000000" #endif #ifndef INTEROP_SOURCE_TIMESTAMP #define INTEROP_SOURCE_TIMESTAMP "0000-00-00 00:00:00 UTC" #endif |
Changes to testlinq/Program.cs.
︙ | ︙ | |||
892 893 894 895 896 897 898 | } } private static void DateTimeTest2( string dateTimeFormat ) { | | | 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 | } } private static void DateTimeTest2( string dateTimeFormat ) { #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"); |
︙ | ︙ |