2018-11-01 15:29:31 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-12-27 04:03:14 +00:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2018-11-01 15:29:31 +00:00
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
|
<Authors>Haiping Chen</Authors>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/Oceania2018/botsharp-channel-weixin</RepositoryUrl>
|
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/Oceania2018/botsharp-channel-weixin</PackageProjectUrl>
|
|
|
|
|
|
<Copyright>Apache 2.0</Copyright>
|
|
|
|
|
|
<PackageTags>botsharp, wechat, wexin, chatbot</PackageTags>
|
|
|
|
|
|
<AssemblyVersion>0.1.1.0</AssemblyVersion>
|
|
|
|
|
|
<FileVersion>0.1.1.0</FileVersion>
|
|
|
|
|
|
<Version>0.1.1</Version>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-09-06 10:41:24 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
|
|
|
|
<PackageReference Include="Senparc.Weixin.MP.MVC" Version="7.2.16" />
|
2018-11-01 15:29:31 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-03-22 11:23:03 +00:00
|
|
|
|
<ProjectReference Include="..\BotSharp.Platform.Dialogflow\BotSharp.Platform.Dialogflow.csproj" />
|
2018-11-01 15:29:31 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|