forked from praeclarum/sqlite-net
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathSQLite.Net.nuspec
40 lines (36 loc) · 2.43 KB
/
SQLite.Net.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
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>SQLite.Net-PCL</id>
<version>4.0.0-beta1</version>
<title>SQLite.Net PCL</title>
<authors>Øystein Krog,Frank Krueger,Tim Heuer</authors>
<owners>Øystein Krog</owners>
<licenseUrl>https://raw.github.com/oysteinkrog/SQLite.Net-PCL/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/oysteinkrog/SQLite.Net-PCL</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>SQLite.Net PCL is an open source, minimal library to allow .NET and Mono applications to store data in SQLite databases.
This is a fork of the original sqlite-net project, which aims to cleanup/improve the code and deliver the package as .NET Standard assemblies with some additional platform-specific implementations.
This package is compatible with the following .NET Standard platforms: Xamarin.iOS (Classic), Xamarin.iOS (Unified), Xamarin.Android, UWP, Win32, Generic</description>
<summary>A .NET client library to access SQLite embedded database files in a LINQ manner.</summary>
<releaseNotes>https://github.com/oysteinkrog/SQLite.Net-PCL/commits</releaseNotes>
<tags>sqlite netstandard sql database ios android windows xamarin monotouch monodroid win32</tags>
<dependencies>
<group>
<dependency id="SQLite.Net.Core-PCL" version="4.0.0-beta1"/>
</group>
</dependencies>
</metadata>
<files>
<!-- Xamarin.iOS (Unified)-->
<file src="SQLite.Net.Platform.XamarinIOS.Unified\SQLite.Net.Platform.XamarinIOS.Unified.dll" target="lib\Xamarin.iOS10\SQLite.Net.Platform.XamarinIOS.Unified.dll" />
<!-- Xamarin.Android -->
<file src="SQLite.Net.Platform.XamarinAndroid\SQLite.Net.Platform.XamarinAndroid.dll" target="lib\MonoAndroid\SQLite.Net.Platform.XamarinAndroid.dll" />
<!-- Win32 -->
<file src="SQLite.Net.Platform.Win32\SQLite.Net.Platform.Win32.dll" target="lib\net4\SQLite.Net.Platform.Win32.dll" />
<!-- Generic -->
<file src="SQLite.Net.Platform.Generic\SQLite.Net.Platform.Generic.dll" target="lib\net40\SQLite.Net.Platform.Generic.dll"/>
<!-- .NET Standard -->
<file src="SQLite.Net\SQLite.Net.dll" target="lib\netstandard1.0\SQLite.Net.dll" />
</files>
</package>