BotSharp/src/Plugins/BotSharp.Plugin.Qdrant/BotSharp.Plugin.Qdrant.csproj

20 lines
642 B
XML
Raw Normal View History

2023-06-18 02:56:22 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-10-11 04:11:06 +00:00
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2023-06-18 02:56:22 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Qdrant.Client" Version="0.1.0" />
</ItemGroup>
<ItemGroup>
2023-06-18 13:02:59 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-06-18 02:56:22 +00:00
</ItemGroup>
</Project>