Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cosmetic changes to whitespace and comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
febb90f95ad6dd011ef77c7c27be1b01 |
User & Date: | mistachkin 2018-07-23 07:00:19.358 |
Context
2018-07-24
| ||
00:24 | Add some missing 'SQLiteInterop' test constraints. check-in: 04dcf6e006 user: mistachkin tags: trunk | |
2018-07-23
| ||
07:00 | Cosmetic changes to whitespace and comments. check-in: febb90f95a user: mistachkin tags: trunk | |
06:21 | Update master release archive manifest. check-in: d8f5418603 user: mistachkin tags: trunk | |
Changes
Changes to Setup/run-netstandard20-tests-debug.sh.
︙ | ︙ | |||
19 20 21 22 23 24 25 | if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Debug; set test_year NetStandard20; set test_native_year $SQLITE_NET_YEAR" -file Tests/all.eagle "$@" | < | 19 20 21 22 23 24 25 26 | if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Debug; set test_year NetStandard20; set test_native_year $SQLITE_NET_YEAR" -file Tests/all.eagle "$@" popd |
Changes to Setup/run-netstandard20-tests-release.sh.
︙ | ︙ | |||
19 20 21 22 23 24 25 | if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Release; set test_year NetStandard20; set test_native_year $SQLITE_NET_YEAR" -file Tests/all.eagle "$@" | < | 19 20 21 22 23 24 25 26 | if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Release; set test_year NetStandard20; set test_native_year $SQLITE_NET_YEAR" -file Tests/all.eagle "$@" popd |
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
618 619 620 621 622 623 624 | # # NOTE: The list of native library file names has been overridden; # therefore, use it verbatim. # return $::native_library_file_names } elseif {[isWindows]} then { # | | | 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | # # NOTE: The list of native library file names has been overridden; # therefore, use it verbatim. # return $::native_library_file_names } elseif {[isWindows]} then { # # NOTE: Otherwise, on Win32, always use the standard native library # file name "sqlite3.dll". # return [list sqlite3.dll] } elseif {[isDotNetCore]} then { # # When running on .NET Core, return the same native library # file name that is used on Windows (i.e. otherwise, assume |
︙ | ︙ |