41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" />
|
|
<PackageReference Include="TensorFlow.Keras" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|