System.Data.SQLite

Check-in [6e67c4fdf1]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove superfluous 'install.ps1' file that is no longer used.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6e67c4fdf18c0843ce9cb4fbf156f92ca23ac44d
User & Date: mistachkin 2014-08-03 02:38:11.156
Context
2014-08-04
05:14
Update ignore-glob setting for Fossil. check-in: dcc0c2a960 user: mistachkin tags: trunk
2014-08-03
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
01:58
Batch tool enhancements for testing. check-in: b799bc86e7 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 13.00
# Visual Studio 2013
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 13.00
# Visual Studio 2013
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Visual Studio Solution File, Format Version 13.00
# Visual Studio 2013
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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













<







1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
Microsoft Visual Studio Solution File, Format Version 13.00
# Visual Studio 2013
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}"
	ProjectSection(SolutionItems) = preProject
		data\exclude_bin.txt = data\exclude_bin.txt
		data\exclude_src.txt = data\exclude_src.txt
		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