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

35 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>
2023-11-27 21:00:26 +00:00
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
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-29 11:40:01 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-06-24 09:25:55 +00:00
</ItemGroup>
<ItemGroup>
2024-05-28 15:45:13 +00:00
<PackageReference Include="Senparc.Weixin.MP.Middleware" Version="1.2.1" />
2024-01-27 14:58:51 +00:00
<PackageReference Include="System.Threading.Channels" Version="8.0.0" />
2018-11-01 15:29:31 +00:00
</ItemGroup>
</Project>