2020-09-07 10:17:58 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-11-01 15:29:31 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-26 21:15:29 +00:00
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2023-09-06 12:58:02 +00:00
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
2023-09-19 16:29:25 +00:00
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
2023-09-06 12:58:02 +00:00
|
|
|
<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>
|
2025-03-01 19:44:52 +00:00
|
|
|
<PackageReference Include="Senparc.Weixin.MP.Middleware" />
|
|
|
|
|
<PackageReference Include="System.Threading.Channels" />
|
2018-11-01 15:29:31 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|