mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-21 19:09:58 +08:00
47 lines
2.1 KiB
XML
47 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net462; netstandard2.0; net6.0</TargetFrameworks>
|
|
<LangVersion>10.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<NullableReferenceTypes>true</NullableReferenceTypes>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PackageId>SKIT.FlurlHttpClient.Wechat.OpenAI</PackageId>
|
|
<PackageIcon>LOGO.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat</PackageProjectUrl>
|
|
<PackageTags>Flurl.Http Wechat Weixin MicroMessage WechatAI WechatOpenAI WexinAI WeixinOpenAI 微信 微信智能对话 微信对话开放平台 微信智能对话开放平台 智能对话平台</PackageTags>
|
|
<Version>3.0.0</Version>
|
|
<Description>基于 Flurl.Http 的微信对话开放平台(微信智能对话) API 客户端,支持智能对话接口、第三方客服接入、机器人配置、公众号/小程序/H5 绑定等功能。</Description>
|
|
<Authors>Fu Diwei</Authors>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
<Deterministic>true</Deterministic>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../../LOGO.png" Pack="true" PackagePath="/" />
|
|
<None Include="README.md" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net462'" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SKIT.FlurlHttpClient.Common" Version="3.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|