BotSharp/src/Plugins/BotSharp.Plugin.RoutingSpeeder/BotSharp.Plugin.RoutingSpeeder.csproj

41 lines
1.3 KiB
XML
Raw Normal View History

2024-06-26 21:15:29 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2023-08-31 02:09:38 +00:00
<PropertyGroup>
2024-06-26 21:15:29 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2023-08-31 02:09:38 +00:00
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-12-19 13:16:43 +00:00
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
2023-08-31 02:09:38 +00:00
</PropertyGroup>
2024-01-11 14:03:25 +00:00
<ItemGroup>
<None Remove="data\models\dbpedia.ftz" />
<None Remove="data\models\intent-classifier.h5" />
<None Remove="data\models\label.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="data\models\dbpedia.ftz">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\models\intent-classifier.h5">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\models\label.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2023-08-31 02:09:38 +00:00
<ItemGroup>
2025-03-01 19:44:52 +00:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" />
<PackageReference Include="TensorFlow.Keras" />
2023-08-31 02:09:38 +00:00
</ItemGroup>
2023-08-31 14:52:09 +00:00
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-08-31 14:52:09 +00:00
</ItemGroup>
2023-08-31 02:09:38 +00:00
</Project>