Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge updates from trunk. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | designOptions |
Files: | files | file ages | folders |
SHA1: |
b6b8b71b11771ceba29e7a771c329e00 |
User & Date: | mistachkin 2014-08-03 02:38:38 |
Context
2014-08-03
| ||
20:03 | Improve robustness of the design-time components installer when no assemblies are available to install. check-in: f9873f2b98 user: mistachkin tags: designOptions | |
02:38 | Merge updates from trunk. check-in: b6b8b71b11 user: mistachkin tags: designOptions | |
02:38 | Remove superfluous 'install.ps1' file that is no longer used. check-in: 6e67c4fdf1 user: mistachkin tags: trunk | |
02:14 | Diagnostic and comment enhancements to the design-time components installer. Merge updates from trunk. check-in: ffe8387567 user: mistachkin tags: designOptions | |
Changes
Deleted NuGet/net40/EF6/install.ps1.
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 38 39 |
############################################################################### # # install.ps1 -- # # Written by Joe Mistachkin. # Released to the public domain, use at your own risk! # ############################################################################### param($installPath, $toolsPath, $package, $project) $platformNames = "x86", "x64" $fileName = "SQLite.Interop.dll" $propertyName = "CopyToOutputDirectory" foreach($platformName in $platformNames) { $folder = $project.ProjectItems.Item($platformName) if ($folder -eq $null) { continue } $item = $folder.ProjectItems.Item($fileName) if ($item -eq $null) { continue } $property = $item.Properties.Item($propertyName) if ($property -eq $null) { continue } $property.Value = 1 } Add-EFProvider $project "System.Data.SQLite.EF6" ` "System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to SQLite.NET.2005.MSBuild.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2005.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2008.MSBuild.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2008.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2010.MSBuild.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2010.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2012.MSBuild.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2012.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2013.MSBuild.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to SQLite.NET.2013.sln.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk
Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk
NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform
NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform
NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform
NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1
NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1
NuGet\net40\EF6\install.ps1 = NuGet\net40\EF6\install.ps1
NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1
NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec
NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec
NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec
NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec
NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec
NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec
|
< |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\net20\Core\config.transform = NuGet\net20\Core\config.transform NuGet\net40\Core\config.transform = NuGet\net40\Core\config.transform NuGet\net40\EF6\config.transform = NuGet\net40\EF6\config.transform NuGet\net20\Core\install.ps1 = NuGet\net20\Core\install.ps1 NuGet\net40\Core\install.ps1 = NuGet\net40\Core\install.ps1 NuGet\net40\EF6\provider.ps1 = NuGet\net40\EF6\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec |
Changes to Setup/data/verify.lst.
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
NuGet/net20/Core/install.ps1
NuGet/net40/
NuGet/net40/Core/
NuGet/net40/Core/config.transform
NuGet/net40/Core/install.ps1
NuGet/net40/EF6/
NuGet/net40/EF6/config.transform
NuGet/net40/EF6/install.ps1
NuGet/net40/EF6/provider.ps1
NuGet/SQLite.Beta.nuspec
NuGet/SQLite.Core.nuspec
NuGet/SQLite.Core.Beta.nuspec
NuGet/SQLite.Core.MSIL.nuspec
NuGet/SQLite.Core.MSIL.Beta.nuspec
NuGet/SQLite.Core.MSIL.Test.nuspec
|
< |
162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
NuGet/net20/Core/install.ps1 NuGet/net40/ NuGet/net40/Core/ NuGet/net40/Core/config.transform NuGet/net40/Core/install.ps1 NuGet/net40/EF6/ NuGet/net40/EF6/config.transform NuGet/net40/EF6/provider.ps1 NuGet/SQLite.Beta.nuspec NuGet/SQLite.Core.nuspec NuGet/SQLite.Core.Beta.nuspec NuGet/SQLite.Core.MSIL.nuspec NuGet/SQLite.Core.MSIL.Beta.nuspec NuGet/SQLite.Core.MSIL.Test.nuspec |