BotSharp/src/Plugins/BotSharp.Plugin.WeChat/BotSharp.Plugin.WeChat.csproj

34 lines
1.3 KiB
XML
Raw Normal View History

2020-09-07 10:17:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2018-11-01 15:29:31 +00:00
<PropertyGroup>
2023-05-20 21:31:31 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2020-09-07 10:17:58 +00:00
</PropertyGroup>
<PropertyGroup>
2018-11-01 15:29:31 +00:00
<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>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
2023-06-24 09:25:55 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-06-29 11:40:01 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-06-24 09:25:55 +00:00
</ItemGroup>
<ItemGroup>
2023-06-26 22:16:21 +00:00
<PackageReference Include="Senparc.Weixin.MP.Middleware" Version="0.8.6" />
2023-06-24 09:25:55 +00:00
<PackageReference Include="System.Threading.Channels" Version="7.0.0" />
2018-11-01 15:29:31 +00:00
</ItemGroup>
</Project>