30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Version>0.2.2</Version>
|
|
<Authors>Haiping Chen</Authors>
|
|
<Description>BotSharp platform emulator which is compatible with Google Dialogflow.</Description>
|
|
<PackageProjectUrl>https://github.com/Oceania2018/botsharp-dialogflow</PackageProjectUrl>
|
|
<Copyright>Apache 2.0</Copyright>
|
|
<RepositoryUrl>https://github.com/Oceania2018/botsharp-dialogflow</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>Dialogflow,Chatbot</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.2" />
|
|
<PackageReference Include="Turing.NET" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\BotSharp\BotSharp.Core\BotSharp.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|