2023-06-17 13:32:39 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2023-09-06 12:58:02 +00:00
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
2023-09-19 16:29:25 +00:00
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
2023-09-06 12:58:02 +00:00
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
2023-11-27 21:00:26 +00:00
|
|
|
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2023-06-17 13:32:39 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-06-18 02:56:22 +00:00
|
|
|
<PackageReference Include="FaissMask" Version="0.2.0" />
|
2023-06-17 13:32:39 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
|
|
|
<PackageReference Include="FastText.NetWrapper" Version="1.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|