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

21 lines
723 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2023-06-18 02:56:22 +00:00
<PropertyGroup>
2024-06-26 21:15:29 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2023-06-18 02:56:22 +00:00
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
2023-06-18 02:56:22 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Qdrant.Client" Version="1.11.0" />
2023-06-18 02:56:22 +00:00
</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>