BotSharp/BotSharp.Core/BotSharp.Core.csproj

66 lines
2.9 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2017-12-18 05:30:20 +00:00
2018-04-02 22:42:11 +00:00
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<Platforms>AnyCPU;x64</Platforms>
2018-04-02 22:42:11 +00:00
</PropertyGroup>
2017-12-18 05:30:20 +00:00
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
2018-05-08 04:04:59 +00:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Haiping Chen</Authors>
<Company />
<Product>BotSharp AI Bot Platform Builder</Product>
<Description>Open source AI Bot platform builder which is written in C# runs on .Net Core and is enterprise oriented. Integrated with multiple bot engines besides BotSharp bot engine. Modulized pipeline design make NLP tasks plugin easily. Abstract platform and NLP task, migrate existed chatbot from a platform into another platform perfectly through dump and restore.</Description>
2018-05-08 04:04:59 +00:00
<RepositoryType>MIT</RepositoryType>
<RepositoryUrl>https://github.com/Oceania2018/BotSharp</RepositoryUrl>
2018-08-03 03:54:23 +00:00
<PackageTags>NLU, Chatbot, Bot, AI Bot, Artificial Intelligence, RPA</PackageTags>
2018-07-17 16:22:31 +00:00
<Version>1.4.0</Version>
2018-06-22 01:10:20 +00:00
<PackageReleaseNotes>Add NLP pipeline. Support training model by input context.</PackageReleaseNotes>
2018-05-27 15:35:16 +00:00
<Copyright>Since 2018 Haiping Chen</Copyright>
2018-06-03 03:53:54 +00:00
<PackageProjectUrl>https://github.com/Oceania2018/BotSharp</PackageProjectUrl>
2018-07-17 16:22:31 +00:00
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<PackageIconUrl>https://raw.githubusercontent.com/Oceania2018/BotSharp/master/BotSharp.WebHost/wwwroot/images/BotSharp.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/Oceania2018/BotSharp/blob/master/LICENSE</PackageLicenseUrl>
2017-12-18 05:30:20 +00:00
</PropertyGroup>
2018-06-18 22:15:32 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
2018-06-22 01:10:20 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
2018-06-22 01:10:20 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;MODEL_PER_CONTEXTS</DefineConstants>
2018-06-18 22:15:32 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DefineConstants>TRACE;MODEL_PER_CONTEXTS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Accounts\**" />
<EmbeddedResource Remove="Accounts\**" />
<None Remove="Accounts\**" />
</ItemGroup>
<ItemGroup>
2018-08-29 22:06:27 +00:00
<PackageReference Include="BotSharp.NLP" Version="0.2.4" />
<PackageReference Include="DotNetToolkit" Version="1.6.0" />
<PackageReference Include="EntityFrameworkCore.BootKit" Version="1.9.1" />
2018-08-03 03:54:23 +00:00
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="2.1.1" />
2018-03-28 22:08:49 +00:00
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
2018-07-12 15:07:05 +00:00
<PackageReference Include="RestSharp" Version="106.3.1" />
</ItemGroup>
2018-07-17 16:22:31 +00:00
<ItemGroup>
2018-08-22 15:45:50 +00:00
<Folder Include="Engines\CoreNlp\" />
2018-07-17 16:22:31 +00:00
</ItemGroup>
2017-12-18 05:30:20 +00:00
</Project>