BotSharp/BotSharp.Core/BotSharp.Core.csproj

94 lines
4.3 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-09-28 00:49:43 +00:00
<Configurations>Debug;Release;DIALOGFLOW;RASA;ARTICULATE</Configurations>
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 />
2018-09-06 04:45:09 +00:00
<Product>AI Bot Platform Builder</Product>
2018-09-07 12:22:45 +00:00
<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.
If you feel that this project is helpful to you, please Star on the project, we will be very grateful.</Description>
2018-05-08 04:04:59 +00:00
<RepositoryType>MIT</RepositoryType>
<RepositoryUrl>https://github.com/Oceania2018/BotSharp</RepositoryUrl>
2018-10-21 14:03:12 +00:00
<PackageTags>NLU, Chatbot, Bot, AI Bot, Artificial Intelligence</PackageTags>
2018-12-09 15:57:34 +00:00
<Version>1.9.0</Version>
2018-09-06 04:45:09 +00:00
<PackageReleaseNotes>Monthly Update.
2018-12-09 15:57:34 +00:00
Support dialogue status tracking.</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-12-09 15:57:34 +00:00
<AssemblyVersion>1.9.0.0</AssemblyVersion>
2018-07-17 16:22:31 +00:00
<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)'=='RASA|AnyCPU'">
<DefineConstants>TRACE;DEBUG;RASA</DefineConstants>
<OutputPath>bin\RASA</OutputPath>
</PropertyGroup>
2018-06-22 01:10:20 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;</DefineConstants>
2018-06-18 22:15:32 +00:00
</PropertyGroup>
2018-09-21 20:11:57 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DIALOGFLOW|AnyCPU'">
<DefineConstants>DEBUG;TRACE;DIALOGFLOW;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
2018-09-28 00:49:43 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ARTICULATE|AnyCPU'">
<DefineConstants>DEBUG;TRACE;ARTICULATE</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
2018-10-03 01:44:11 +00:00
<ItemGroup>
<Compile Remove="Engines\NERs\**" />
<Compile Remove="Engines\QuickQA\**" />
<Compile Remove="Engines\Rasa\**" />
<Compile Remove="Engines\Sebis\**" />
<Compile Remove="Engines\SpaCy\**" />
<EmbeddedResource Remove="Engines\NERs\**" />
<EmbeddedResource Remove="Engines\QuickQA\**" />
<EmbeddedResource Remove="Engines\Rasa\**" />
<EmbeddedResource Remove="Engines\Sebis\**" />
<EmbeddedResource Remove="Engines\SpaCy\**" />
<None Remove="Engines\NERs\**" />
<None Remove="Engines\QuickQA\**" />
<None Remove="Engines\Rasa\**" />
<None Remove="Engines\Sebis\**" />
<None Remove="Engines\SpaCy\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CherubNLP" Version="0.1.1" />
<PackageReference Include="Colorful.Console" Version="1.2.9" />
2018-12-24 19:50:34 +00:00
<PackageReference Include="CSRedisCore" Version="3.0.30" />
<PackageReference Include="DotNetToolkit" Version="1.6.0" />
2018-11-19 15:02:51 +00:00
<PackageReference Include="EntityFrameworkCore.BootKit" Version="1.10.0" />
2018-12-07 19:01:28 +00:00
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="NumSharp" Version="0.6.2" />
2018-10-05 12:52:02 +00:00
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BotSharp.Platform.Abstraction\BotSharp.Platform.Abstraction.csproj" />
<ProjectReference Include="..\BotSharp.Platform.Models\BotSharp.Platform.Models.csproj" />
</ItemGroup>
2017-12-18 05:30:20 +00:00
</Project>