-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPortable.Data.Sqlite.nuspec
32 lines (29 loc) · 2.68 KB
/
Portable.Data.Sqlite.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Portable.Data.Sqlite</id>
<version>1.1.2</version>
<title>Portable ADO-style SQLite with Encryption</title>
<authors>Jeremy Ellis,Matthew Leibowitz</authors>
<owners>Ellisnet</owners>
<projectUrl>https://github.com/ellisnet/Portable.Data.Sqlite</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Portable cross-platform ADO-style SQLite library enabling table-record-level and table-column-level encryption. *Please see the project site for details about what this library does, and how to use it.*</description>
<releaseNotes>v1.1.2 - No breaking changes. Bug fix for a problem that occured with a multiple statement SQL scripts; where only the first statement would execute.
v1.1.1 - No breaking changes. New constructor for EncryptedTable that allows CryptEngine to be "inherited" from database connection; new ability to set case sensitivity and trimming on all TableSearch match items by "forced" properties.
v1.1.0 - Tweaked for use with Xamarin.Forms. Added IDatabasePath interface, and added parameterless constructor for IObjectCryptEngine (as required by Xamarin.Forms). Breaking change from v1.0.0: Implementations of IObjectCryptEngine must implement the Initialize() method, in order to provide a way to pass in settings when using the parameterless constructor.
v1.0.0 - First official release, with several tweaks and bug-fixes. New Execute methods added to SqliteCommand. Breaking changes from pre-release version: (a) TableSearchType enum members renamed from And/Or to MatchAll/MatchAny. (b) suppressExceptions parameter removed from SqliteDataReader.GetDecrypted methods in favor of DbNullHandling enum, for greater flexibility.</releaseNotes>
<copyright>Copyright 2014 Ellisnet</copyright>
<language>en-US</language>
<tags>portable, data, ado, sqlite, encryption, database, security, pcl</tags>
<dependencies>
<dependency id="SQLitePCL" version="3.8.5" />
</dependencies>
</metadata>
<files>
<file src="NuGetOutput\Portable.Data.dll" target="lib\portable-net45+wp8+win8+MonoAndroid10+MonoTouch10\Portable.Data.dll" />
<file src="NuGetOutput\Portable.Data.Sqlite.dll" target="lib\portable-net45+wp8+win8+MonoAndroid10+MonoTouch10\Portable.Data.Sqlite.dll" />
<file src="NuGetOutput\Portable.Data.Sqlite.XML" target="lib\portable-net45+wp8+win8+MonoAndroid10+MonoTouch10\Portable.Data.Sqlite.XML" />
<file src="NuGetOutput\readme.txt" target="readme.txt" />
</files>
</package>