Skip to content
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.

Releases: natemcmaster/libsqlite3-package

v3.13.0

18 Oct 23:17
Compare
Choose a tag to compare

Issues resolved

  • #2 - This release consolidates all binaries into on package, SQLite.nupkg using the "nativeassets" folder for UWP.
  • #6 - Add missing placeholder files that prevented installation with some older NuGet clients.

This release upgrades to SQLite 3.13.0. See https://sqlite.org/changes.html for the full list changes.

v3.12.3

09 Aug 18:13
Compare
Choose a tag to compare

The release fixes two minor bugs in the packaging that affect the way MSBuild and NuGet2 utilize the package.

Bugs fixed:

  • #6 - Missing placeholder files for netstandard1.0
  • #8 - .NET Core projects + x-plat MSBuild: unnecessary sqlite3.dll is added to output on build

SQLite native components for NuGet

25 May 22:43
Compare
Choose a tag to compare

This release is available at https://www.nuget.org/packages/sqlite/3.12.2.

This release produce NuGet packages for SQLite v3.12.2 that distribute the native libraries (sqlite3.dll, libsqlite3.dylib, and libsqlite3.so) for use with .NET components.

The platforms supported on all platforms that .NET Core 1.0.0 is supported. This includes:

  • Linux x64 (CentOS 7.1, RHEL7, Debian 8.2, and Ubuntu 14.04 tested, others may work too.)
  • Windows x86 and x64, minimum v7
  • Universal Windows Platform apps
  • OS X >= 10.10

Packages and apps can install this package and use SQLite via the C API and P/Invoke.

Example:

public class NativeMethod
{
     [DllImport("sqlite3", CallingConvention = CallingConvention.Cdecl)]
     public static extern IntPtr sqlite3_libversion();
}
string version = Marshal.PtrToStringAnsi(NativeMethod.sqlite3_libversion());

v3.12.2-alpha

17 May 01:52
Compare
Choose a tag to compare
v3.12.2-alpha Pre-release
Pre-release

A test release of the packages.