Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Another build fix. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
98687c3d496ed95b33ebd68cf30a224a |
User & Date: | mistachkin 2019-10-05 19:45:28.598 |
Context
2019-10-05
| ||
21:10 | More work in progress. check-in: 6746f67c7a user: mistachkin tags: netStandard21 | |
19:45 | Another build fix. check-in: 98687c3d49 user: mistachkin tags: netStandard21 | |
19:42 | Various build fixes. check-in: 11811c57fd user: mistachkin tags: netStandard21 | |
Changes
Changes to System.Data.SQLite/SQLite3.cs.
︙ | ︙ | |||
77 78 79 80 81 82 83 | protected string _fileName; protected SQLiteConnectionFlags _flags; private bool _setLogCallback; protected bool _usePool; protected int _poolVersion; private int _cancelCount; | | | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | protected string _fileName; protected SQLiteConnectionFlags _flags; private bool _setLogCallback; protected bool _usePool; protected int _poolVersion; private int _cancelCount; #if (NET_35 || NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 || NET_47 || NET_471 || NET_472) && !PLATFORM_COMPACTFRAMEWORK private bool _buildingSchema; #endif /// <summary> /// The user-defined functions registered on this connection /// </summary> protected Dictionary<SQLiteFunctionAttribute, SQLiteFunction> _functions; |
︙ | ︙ | |||
1513 1514 1515 1516 1517 1518 1519 | } if (cmd != null) cmd.SetTypes(typedefs); return cmd; } | | | 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 | } if (cmd != null) cmd.SetTypes(typedefs); return cmd; } #if (NET_35 || NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 || NET_47 || NET_471 || NET_472) && !PLATFORM_COMPACTFRAMEWORK else if (_buildingSchema == false && String.Compare(GetLastError(), 0, "no such table: TEMP.SCHEMA", 0, 26, StringComparison.OrdinalIgnoreCase) == 0) { strRemain = String.Empty; _buildingSchema = true; try { ISQLiteSchemaExtensions ext = ((IServiceProvider)SQLiteFactory.Instance).GetService(typeof(ISQLiteSchemaExtensions)) as ISQLiteSchemaExtensions; |
︙ | ︙ |
Changes to System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj.
︙ | ︙ | |||
39 40 41 42 43 44 45 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{77BE07F7-8183-4A83-8AEC-D46A0C2C026D}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite</RootNamespace> <AssemblyName>System.Data.SQLite</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> | < | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{77BE07F7-8183-4A83-8AEC-D46A0C2C026D}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite</RootNamespace> <AssemblyName>System.Data.SQLite</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> <IsDotNetStandard>true</IsDotNetStandard> <ConfigurationYear>NetStandard20</ConfigurationYear> </PropertyGroup> <!-- ****************************************************************************** ** Project / .NET Standard 2.0 Specific Properties ** |
︙ | ︙ |