forked from praeclarum/sqlite-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite-net.nuspec
22 lines (22 loc) · 1.32 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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>1.0.0</version>
<authors>Frank Krueger</authors>
<owners>Frank Krueger,Tim Heuer</owners>
<licenseUrl>https://raw.githubusercontent.com/praeclarum/sqlite-net/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/praeclarum/sqlite-net</projectUrl>
<iconUrl>https://raw.githubusercontent.com/praeclarum/sqlite-net/master/nuget/Logo-low.png</iconUrl>
<id>sqlite-net</id>
<title>sqlite-net</title>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>sqlite-net is an open source, minimal library to allow .NET and Mono applications to store data in SQLite databases. It is written in C# 3.0 and is meant to be simply compiled in with your projects. It was first designed to work with MonoTouch on the iPhone, but should work in any other CLI environment.</description>
<tags>sqlite-net sqlite sql monotouch database metro winrt</tags>
<summary>A .NET client library to access SQLite embedded database files in a LINQ manner.</summary>
<releaseNotes>See project page</releaseNotes>
</metadata>
<files>
<file src="src/SQLite.cs" target="content/SQLite.cs" />
<file src="src/SQLiteAsync.cs" target="content/SQLiteAsync.cs" />
</files>
</package>