BotSharp/src/Infrastructure/BotSharp.Core/BotSharp.Core.csproj

89 lines
3.4 KiB
XML
Raw Normal View History

2023-07-22 11:35:30 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2017-12-18 05:30:20 +00:00
2020-09-07 10:17:58 +00:00
<PropertyGroup>
2023-05-20 21:31:31 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>10.0</LangVersion>
2023-05-27 01:58:31 +00:00
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
2023-08-01 00:57:11 +00:00
<VersionPrefix>0.8.0</VersionPrefix>
2020-09-07 10:17:58 +00:00
</PropertyGroup>
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>
2019-03-17 00:55:55 +00:00
<Configurations>Debug;Release;</Configurations>
2018-04-02 22:42:11 +00:00
</PropertyGroup>
2017-12-18 05:30:20 +00:00
<PropertyGroup>
2018-05-08 04:04:59 +00:00
<Authors>Haiping Chen</Authors>
2019-02-23 15:08:56 +00:00
<Company>SciSharp STACK</Company>
2018-09-06 04:45:09 +00:00
<Product>AI Bot Platform Builder</Product>
2020-09-07 10:17:58 +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.
2018-09-07 12:22:45 +00:00
2020-09-07 10:17:58 +00:00
If you feel that this project is helpful to you, please Star on the project, we will be very grateful.
</Description>
2019-02-23 15:08:56 +00:00
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/SciSharp/BotSharp</RepositoryUrl>
2018-10-21 14:03:12 +00:00
<PackageTags>NLU, Chatbot, Bot, AI Bot, Artificial Intelligence</PackageTags>
2018-12-30 01:15:09 +00:00
<PackageReleaseNotes>Support dialogue status tracking.</PackageReleaseNotes>
2018-05-27 15:35:16 +00:00
<Copyright>Since 2018 Haiping Chen</Copyright>
2019-02-23 15:08:56 +00:00
<PackageProjectUrl>https://github.com/SciSharp/BotSharp</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/SciSharp/BotSharp/master/docs/static/logos/BotSharp.png</PackageIconUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/SciSharp/BotSharp/master/LICENSE</PackageLicenseUrl>
2023-06-08 04:17:41 +00:00
<PackageIcon>Icon.png</PackageIcon>
2023-07-21 15:15:30 +00:00
<Nullable>enable</Nullable>
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>
2023-07-21 15:15:30 +00:00
<NoWarn>1701;1702</NoWarn>
2018-06-22 01:10:20 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;</DefineConstants>
2023-07-21 15:15:30 +00:00
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NoWarn>1701;1702</NoWarn>
2018-06-18 22:15:32 +00:00
</PropertyGroup>
2018-10-03 01:44:11 +00:00
<ItemGroup>
2019-03-17 00:55:55 +00:00
<Compile Remove="Accounts\**" />
<EmbeddedResource Remove="Accounts\**" />
<None Remove="Accounts\**" />
2018-10-03 01:44:11 +00:00
</ItemGroup>
2019-03-17 00:55:55 +00:00
<ItemGroup>
<Compile Remove="CoreController.cs" />
</ItemGroup>
2023-06-08 04:17:41 +00:00
<ItemGroup>
<None Include="..\..\..\arts\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
2020-09-07 10:17:58 +00:00
<ItemGroup>
2023-05-12 12:42:32 +00:00
<PackageReference Include="Colorful.Console" Version="1.2.15" />
2023-06-07 00:59:32 +00:00
<PackageReference Include="EntityFrameworkCore.BootKit" Version="6.2.1" />
<PackageReference Include="LLamaSharp" Version="0.4.2-preview" />
2023-06-17 02:42:35 +00:00
<PackageReference Include="PdfPig" Version="0.1.8" />
2023-07-19 12:08:40 +00:00
<PackageReference Include="TensorFlow.Keras" Version="0.11.2" />
2023-06-11 23:46:02 +00:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
</ItemGroup>
2023-05-20 21:31:31 +00:00
<ItemGroup>
<ProjectReference Include="..\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
2017-12-18 05:30:20 +00:00
</Project>