Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Permit better customization of the version-specific .NET Framework MSBuild files. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ae1c8b02fb87402e284b0772f039ae27 |
User & Date: | mistachkin 2016-01-27 21:07:18.851 |
Context
2016-01-27
| ||
23:46 | Match the batch tool sub-routine 'fn_UnsetVariable' a bit more robust. check-in: 6ef3ddcee0 user: mistachkin tags: trunk | |
21:07 | Permit better customization of the version-specific .NET Framework MSBuild files. check-in: ae1c8b02fb user: mistachkin tags: trunk | |
2016-01-25
| ||
22:17 | Enhance MSBuild infrastructure to better support targeting alternative .NET Framework versions. check-in: 76b4cc2889 user: mistachkin tags: trunk | |
Changes
Changes to Targets/SQLite.NET.Settings.targets.netFx35.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!-- * * SQLite.NET.Settings.targets.netFx35 - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup Condition="'$(ConfigurationYear)' != '' And '$(ConfigurationYear)' != '2005' And '$(ConfigurationYear)' != '2008'"> <NetFx20>true</NetFx20> <NetFx35>true</NetFx35> <NetFx40>false</NetFx40> <NetFx45>false</NetFx45> | > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <!-- * * SQLite.NET.Settings.targets.netFx35 - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** Load Per-User Settings ** ****************************************************************************** --> <!-- 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.netFx35.user" Condition="'$(ConfigurationYear)' != '' And '$(ConfigurationYear)' != '2005' And '$(ConfigurationYear)' != '2008' And Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.netFx35.user')" /> <!-- ****************************************************************************** --> <PropertyGroup Condition="'$(ConfigurationYear)' != '' And '$(ConfigurationYear)' != '2005' And '$(ConfigurationYear)' != '2008'"> <NetFx20>true</NetFx20> <NetFx35>true</NetFx35> <NetFx40>false</NetFx40> <NetFx45>false</NetFx45> |
︙ | ︙ |
Changes to Targets/SQLite.NET.Settings.targets.netFx40.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!-- * * SQLite.NET.Settings.targets.netFx40 - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup Condition="'$(ConfigurationYear)' == '2010' Or '$(ConfigurationYear)' == '2012' Or '$(ConfigurationYear)' == '2013' Or '$(ConfigurationYear)' == '2015'"> <NetFx20>false</NetFx20> <NetFx35>false</NetFx35> <NetFx40>true</NetFx40> | > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <!-- * * SQLite.NET.Settings.targets.netFx40 - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** Load Per-User Settings ** ****************************************************************************** --> <!-- 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.netFx40.user" Condition="('$(ConfigurationYear)' == '2010' Or '$(ConfigurationYear)' == '2012' Or '$(ConfigurationYear)' == '2013' Or '$(ConfigurationYear)' == '2015') And Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets.netFx40.user')" /> <!-- ****************************************************************************** --> <PropertyGroup Condition="'$(ConfigurationYear)' == '2010' Or '$(ConfigurationYear)' == '2012' Or '$(ConfigurationYear)' == '2013' Or '$(ConfigurationYear)' == '2015'"> <NetFx20>false</NetFx20> <NetFx35>false</NetFx35> <NetFx40>true</NetFx40> |
︙ | ︙ |