Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | If the MSBuild file '$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.extra' exists, load it. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
eb74036e82e659aa06c5b8dd13b5683a |
User & Date: | mistachkin 2016-03-04 19:46:19.413 |
Context
2016-03-08
| ||
23:16 | Avoid using Path.Combine with null values in the native library pre-loader. Fix for [da685c0bac]. check-in: 61eafc5985 user: mistachkin tags: trunk | |
2016-03-04
| ||
19:46 | If the MSBuild file '$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.extra' exists, load it. check-in: eb74036e82 user: mistachkin tags: trunk | |
00:55 | Update SQLite core library to the 3.11.1 release. check-in: 086a39c918 user: mistachkin tags: trunk | |
Changes
Changes to Targets/SQLite.NET.Settings.targets.
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!-- NOTE: If the per-user settings file exists, import it now. The contained settings, if any, will override the default ones provided below. --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.user" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.user')" /> <!-- ****************************************************************************** ** Load Per-Framework Settings ** ****************************************************************************** --> <!-- | > > > > > > > > > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <!-- NOTE: If the per-user settings file exists, import it now. The contained settings, if any, will override the default ones provided below. --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.user" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.user')" /> <!-- ****************************************************************************** ** Load Extra Settings ** ****************************************************************************** --> <!-- NOTE: If the "extra" settings file exists, import it now. The contained settings, if any, will override the default ones provided below. --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.extra" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.extra')" /> <!-- ****************************************************************************** ** Load Per-Framework Settings ** ****************************************************************************** --> <!-- |
︙ | ︙ |