Couchbase.Lite.Enterprise.Support.NetDesktop 2.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Couchbase.Lite.Enterprise.Support.NetDesktop --version 2.0.0
NuGet\Install-Package Couchbase.Lite.Enterprise.Support.NetDesktop -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Couchbase.Lite.Enterprise.Support.NetDesktop" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Couchbase.Lite.Enterprise.Support.NetDesktop --version 2.0.0
#r "nuget: Couchbase.Lite.Enterprise.Support.NetDesktop, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Couchbase.Lite.Enterprise.Support.NetDesktop as a Cake Addin
#addin nuget:?package=Couchbase.Lite.Enterprise.Support.NetDesktop&version=2.0.0

// Install Couchbase.Lite.Enterprise.Support.NetDesktop as a Cake Tool
#tool nuget:?package=Couchbase.Lite.Enterprise.Support.NetDesktop&version=2.0.0

A lightweight, document-oriented (NoSQL), syncable database engine for .NET

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Couchbase.Lite.Enterprise.Support.NetDesktop:

Package Downloads
Couchbase.Lite.Enterprise The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A lightweight, document-oriented (NoSQL), syncable database engine for .NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.6 856 3/6/2024
3.1.3 6,932 11/16/2023
3.1.1 10,268 7/18/2023
3.1.0 988 4/27/2023
3.0.15 2,091 11/6/2023
3.0.12 32,405 6/26/2023
3.0.8 21,982 2/8/2023
3.0.2 24,940 8/2/2022
3.0.0 29,197 2/22/2022
3.0.0-beta02 2,961 10/19/2021
3.0.0-beta01 579 9/21/2021
2.8.6 58,563 8/3/2021
2.8.4 33,579 3/2/2021
2.8.2 90,563 11/20/2020
2.8.0 1,983 9/30/2020
2.7.1 19,050 4/17/2020
2.7.0 13,950 1/16/2020
2.6.4 938 2/11/2020
2.6.0 4,618 8/27/2019
2.5.3 3,818 7/31/2019
2.5.2 986 7/3/2019
2.5.0 1,599 4/30/2019
2.1.5 972 5/23/2019
2.1.2 5,250 11/16/2018
2.1.1 2,816 10/5/2018
2.1.0 1,508 8/30/2018
2.0.3 1,430 6/5/2018
2.0.2 1,418 6/1/2018
2.0.0.1 1,568 4/12/2018
2.0.0 1,555 4/12/2018

For full release notes see https://developer.couchbase.com/documentation/mobile/2.0/references/couchbase-lite/release-notes/index.html?language=csharp

This is version 2 of Couchbase Lite .NET, an embedded NoSQL database with sync capability.  It is a complete rewrite of 1.x and thus to use it in an existing project,
you will need to learn about the new API using the above documentation.

NOTE: The new protocol is incompatible with CouchDB-based databases. And since Couchbase Lite 2 only supports the new protocol, you will need to run a version of Sync Gateway that supports it.

Notable API changes:
The 1.x Manager class has been removed. Top level configuration is now performed on the Database class as static methods.
The custom conflict resolution feature has been removed. When two conflicting changes occur, the conflict will be resolved using the default conflict resolver that ships with Couchbase Lite 2.0.
The iOS Models API has been removed in Couchbase Lite 2.0.
The View query API has been removed and is replaced with the N1QL-like query syntax in Couchbase Lite 2.0.
The experimental Geo query API has been removed and is replaced with the N1QL-like query syntax in Couchbase Lite 2.0.
The pluggable storage API has been removed.
The Facebook Authenticator API has been removed.
The Revision API is not longer available. The Couchbase Lite 2.0 conflict resolver API lets users pick which revision is the winner when a conflict occurs. There is a default conflict resolver if none are provided.
The Push filter API has been removed.
The 1.x Attachment API has been renamed to Blob but the functionality remains the same.
The 1.x Database.inTransaction method has been renamed to Database.inBatch to emphasize that Couchbase Lite does not offer transactional guarantees, and that the purpose of the method is to optimize batch operations rather than to enable ACID transactions.