System.Data.SQLite

Check-in [695e80e91f]
Login

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

Overview
Comment:Fix comment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | netStandard20
Files: files | file ages | folders
SHA1: 695e80e91f3e127303e1e5e21dcf2db4fd8d4177
User & Date: mistachkin 2018-04-06 18:29:39.632
Context
2018-04-06
19:18
More work in progress on making the native library preloader more portable. check-in: 6546019824 user: mistachkin tags: netStandard20
18:29
Fix comment. check-in: 695e80e91f user: mistachkin tags: netStandard20
17:10
More portability work on the native library preloader. check-in: 61d5e43af1 user: mistachkin tags: netStandard20
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
              AppDomain.CurrentDomain.BaseDirectory,
#endif
          };

          string[] subDirectories = {
              GetProcessorArchitecture(), /* e.g. "x86" */
              GetPlatformName(null),      /* e.g. "Win32" */
#if NET_STANDARD_20 && !WINDOWS           /* .NET Core on POSIX */
              String.Empty,               /* e.g. base directory only */
#endif
          };

          foreach (string directory in directories)
          {
              if (directory == null)







|







2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
              AppDomain.CurrentDomain.BaseDirectory,
#endif
          };

          string[] subDirectories = {
              GetProcessorArchitecture(), /* e.g. "x86" */
              GetPlatformName(null),      /* e.g. "Win32" */
#if NET_STANDARD_20 && !WINDOWS           // .NET Core on POSIX
              String.Empty,               /* e.g. base directory only */
#endif
          };

          foreach (string directory in directories)
          {
              if (directory == null)