Skip to content

Commit ca23338

Browse files
committed
Adding NuGet package support
1 parent d8f7d66 commit ca23338

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed

license.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
License
2+
===
3+
4+
Copyright (c) 2009-2012 Krueger Systems, Inc.
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

nuget/NuGet.exe

554 KB
Binary file not shown.

nuget/build.bat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nuget pack sqlite-net.nuspec -o .\

nuget/sqlite-net.nuspec

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<version>1.0.1</version>
5+
<authors>Frank Krueger,Tim Heuer</authors>
6+
<owners>Frank Krueger,Tim Heuer</owners>
7+
<projectUrl>https://github.com/praeclarum/sqlite-net</projectUrl>
8+
<id>sqlite-net</id>
9+
<title>sqlite-net</title>
10+
<licenseUrl>https://github.com/praeclarum/sqlite-net/blob/master/license.md</licenseUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<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>
13+
<tags>sqlite sql monotouch database metro winrt</tags>
14+
<summary>A .NET client library to access SQLite embedded database files in a LINQ manner.</summary>
15+
</metadata>
16+
<files>
17+
<file src="..\src\SQLite.cs" target="content\SQLite.cs" />
18+
</files>
19+
</package>

0 commit comments

Comments
 (0)