Skip to content

Commit 0ab3318

Browse files
committed
Release v0.1.0
1 parent e030f5a commit 0ab3318

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Qdrant .NET Client
22
This project contains a .NET client for the [Qdrant vector database](https://qdrant.tech/). This client supports HTTP in either blocking or non-blocking fashion.
33

4+
[![NuGet](https://img.shields.io/nuget/dt/Qdrant.Client.svg)](https://www.nuget.org/packages/Qdrant.Client)
5+
46
#### How to use Qdrant client in .NET
57
```csharp
68
using QdrantCSharp;

src/QdrantCSharp/QdrantCSharp.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<Nullable>enable</Nullable>
66
<LangVersion>10</LangVersion>
7+
<VersionPrefix>0.1.0</VersionPrefix>
8+
<PackageId>Qdrant.Client</PackageId>
79
</PropertyGroup>
810

911
<ItemGroup>

0 commit comments

Comments
 (0)