Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Prevent the .NET Framework 3.5 settings file from being used for the Visual Studio 2005 and 2008 projects. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fb6f1976f77e5e19a9d04797c7f4257a |
User & Date: | mistachkin 2012-12-10 00:22:03.429 |
Context
2012-12-11
| ||
07:15 | Update SQLite core library to the latest trunk code. check-in: 2a96ac5513 user: mistachkin tags: trunk | |
2012-12-10
| ||
00:22 | Prevent the .NET Framework 3.5 settings file from being used for the Visual Studio 2005 and 2008 projects. check-in: fb6f1976f7 user: mistachkin tags: trunk | |
2012-12-06
| ||
06:19 | Update SQLite core library to the latest trunk code. check-in: 885e2fbcea user: mistachkin tags: trunk | |
Changes
Changes to SQLite.NET.Settings.targets.netFx35.
1 2 3 4 5 6 7 8 9 | <!-- * * 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"> | | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!-- * * 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> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <TargetFrameworkProfile></TargetFrameworkProfile> <Prefer32Bit>false</Prefer32Bit> |
︙ | ︙ |