47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Label="Globals">
|
|
<SccProjectName>SAK</SccProjectName>
|
|
<SccProvider>SAK</SccProvider>
|
|
<SccAuxPath>SAK</SccAuxPath>
|
|
<SccLocalPath>SAK</SccLocalPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Authors>Haiping Chen</Authors>
|
|
<Company />
|
|
<Product>BotSharp.Core</Product>
|
|
<Description>Open source chatbot platform written in C#. Ready for enterprise.</Description>
|
|
<RepositoryType>MIT</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Oceania2018/BotSharp</RepositoryUrl>
|
|
<PackageTags>NLU, Chatbot, Bot, AI Bot</PackageTags>
|
|
<Version>1.3.0</Version>
|
|
<PackageReleaseNotes>Add NLP pipeline. Support training model by input context.</PackageReleaseNotes>
|
|
<Copyright>Since 2018 Haiping Chen</Copyright>
|
|
<PackageProjectUrl>https://github.com/Oceania2018/BotSharp</PackageProjectUrl>
|
|
<AssemblyVersion>1.3.0.0</AssemblyVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;MODEL_PER_CONTEXTS;NETCOREAPP;NETCOREAPP2_1</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>TRACE;MODEL_PER_CONTEXTS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DotNetToolkit" Version="1.4.0" />
|
|
<PackageReference Include="EntityFrameworkCore.BootKit" Version="1.6.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
<PackageReference Include="RestSharp" Version="106.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Engines\BotSharp\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|