17 lines
434 B
XML
17 lines
434 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<LangVersion>10</LangVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Qdrant.Client" Version="0.1.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\src\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|