BotSharp/Platforms/BotSharp.Platform.Dialogflow/BotSharp.Platform.Dialogflow.csproj

34 lines
1.1 KiB
XML
Raw Normal View History

2020-09-07 10:17:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-05-20 21:31:31 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.2.2</Version>
2020-09-08 07:23:07 +00:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<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="Turing.NET" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
2023-05-20 15:20:37 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
</ItemGroup>
</Project>