Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Allow loading of the .NET Framework version-specific MSBuild settings files to be skipped. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
05ba00cd3670cc5bf230d722d5c0beda |
User & Date: | mistachkin 2013-02-20 07:09:23.196 |
Context
2013-02-21
| ||
06:44 | Fix typo in docs for obtaining source. check-in: 5b635e29a5 user: mistachkin tags: trunk | |
2013-02-20
| ||
07:09 | Allow loading of the .NET Framework version-specific MSBuild settings files to be skipped. check-in: 05ba00cd36 user: mistachkin tags: trunk | |
05:52 | Support the HAVE_ERRNO_H preprocessor define. check-in: 0b58fb8de5 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.NET.Settings.targets.
︙ | ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | <!-- NOTE: If the per-framework settings files exist, import them now. The contained settings, if any, will override the default ones provided below. --> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx20" Condition="'$(NetFx20)' != '' And '$(NetFx20)' != 'false' And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx20')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx35" Condition="'$(NetFx35)' != '' And '$(NetFx35)' != 'false' And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx35')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx40" Condition="'$(NetFx40)' != '' And '$(NetFx40)' != 'false' And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx40')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx45" Condition="'$(NetFx45)' != '' And '$(NetFx45)' != 'false' And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx45')" /> <!-- ****************************************************************************** ** [Fairly] Generic Properties ** ****************************************************************************** --> | > > > > | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | <!-- NOTE: If the per-framework settings files exist, import them now. The contained settings, if any, will override the default ones provided below. --> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx20" Condition="'$(NetFx20)' != '' And '$(NetFx20)' != 'false' And ('$(NetFx20Settings)' == '' Or '$(NetFx20Settings)' != 'false') And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx20')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx35" Condition="'$(NetFx35)' != '' And '$(NetFx35)' != 'false' And ('$(NetFx35Settings)' == '' Or '$(NetFx35Settings)' != 'false') And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx35')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx40" Condition="'$(NetFx40)' != '' And '$(NetFx40)' != 'false' And ('$(NetFx40Settings)' == '' Or '$(NetFx40Settings)' != 'false') And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx40')" /> <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx45" Condition="'$(NetFx45)' != '' And '$(NetFx45)' != 'false' And ('$(NetFx45Settings)' == '' Or '$(NetFx45Settings)' != 'false') And Exists('$(SQLiteNetDir)\SQLite.NET.Settings.targets.netFx45')" /> <!-- ****************************************************************************** ** [Fairly] Generic Properties ** ****************************************************************************** --> |
︙ | ︙ | |||
121 122 123 124 125 126 127 128 129 130 131 132 133 134 | NOTE: Only use functionality available in the .NET Framework 4.5? By default, this is disabled. This must be enabled to successfully build the project using Visual Studio 2012 and/or the .NET Framework 4.5 (if necessary, it will typically be enabled from within the project file itself). --> <NetFx45 Condition="'$(NetFx45)' == ''">false</NetFx45> </PropertyGroup> <!-- ****************************************************************************** ** Feature Properties ** ****************************************************************************** --> | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | NOTE: Only use functionality available in the .NET Framework 4.5? By default, this is disabled. This must be enabled to successfully build the project using Visual Studio 2012 and/or the .NET Framework 4.5 (if necessary, it will typically be enabled from within the project file itself). --> <NetFx45 Condition="'$(NetFx45)' == ''">false</NetFx45> <!-- NOTE: Load the version-specific settings for the .NET Framework 2.0? By default, this is disabled. If this is enabled when compiling for the .NET Framework 2.0, the version-specific settings file "SQLite.NET.Settings.targets.netFx20" will be loaded if it is actually present, before any other settings in this file are processed. --> <NetFx20Settings Condition="'$(NetFx20Settings)' == ''">false</NetFx20Settings> <!-- NOTE: Load the version-specific settings for the .NET Framework 3.5? By default, this is disabled. If this is enabled when compiling for the .NET Framework 3.5, the version-specific settings file "SQLite.NET.Settings.targets.netFx35" will be loaded if it is actually present, before any other settings in this file are processed. --> <NetFx35Settings Condition="'$(NetFx35Settings)' == ''">false</NetFx35Settings> <!-- NOTE: Load the version-specific settings for the .NET Framework 4.0? By default, this is disabled. If this is enabled when compiling for the .NET Framework 4.0, the version-specific settings file "SQLite.NET.Settings.targets.netFx40" will be loaded if it is actually present, before any other settings in this file are processed. --> <NetFx40Settings Condition="'$(NetFx40Settings)' == ''">false</NetFx40Settings> <!-- NOTE: Load the version-specific settings for the .NET Framework 4.5? By default, this is disabled. If this is enabled when compiling for the .NET Framework 4.5, the version-specific settings file "SQLite.NET.Settings.targets.netFx45" will be loaded if it is actually present, before any other settings in this file are processed. --> <NetFx45Settings Condition="'$(NetFx45Settings)' == ''">false</NetFx45Settings> </PropertyGroup> <!-- ****************************************************************************** ** Feature Properties ** ****************************************************************************** --> |
︙ | ︙ |