Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove profile name from the target framework value used for the native library pre-loader replacement tokens. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f93212ed0569b399988a85667c14de26 |
User & Date: | mistachkin 2016-11-17 20:16:44.699 |
Context
2016-11-17
| ||
20:26 | Add the 'AllowNestedTransactions' connection flag to enable using SAVEPOINTs to implement nested transactions. check-in: f73c069fb9 user: mistachkin tags: trunk | |
20:16 | Remove profile name from the target framework value used for the native library pre-loader replacement tokens. check-in: f93212ed05 user: mistachkin tags: trunk | |
2016-11-09
| ||
01:00 | Update version history docs. check-in: a3e8805c4f user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | ︙ | |||
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 | { if (String.IsNullOrEmpty(value)) return value; value = value.Replace(".NETFramework,Version=v", "net"); value = value.Replace(".", String.Empty); return value; } ///////////////////////////////////////////////////////////////////////// /// <summary> /// If necessary, replaces all supported environment variable tokens | > > > > > | 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 | { if (String.IsNullOrEmpty(value)) return value; value = value.Replace(".NETFramework,Version=v", "net"); value = value.Replace(".", String.Empty); int index = value.IndexOf(','); if (index != -1) value = value.Substring(0, index); return value; } ///////////////////////////////////////////////////////////////////////// /// <summary> /// If necessary, replaces all supported environment variable tokens |
︙ | ︙ |