2021-10-07 21:19:24 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-02-21 18:27:07 +08:00
|
|
|
|
<TargetFrameworks>net472; net6.0</TargetFrameworks>
|
2022-01-21 10:09:50 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<NullableReferenceTypes>true</NullableReferenceTypes>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-10-07 21:19:24 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove=".gitignore" />
|
2021-11-10 12:59:08 +08:00
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="appsettings.*.json" Condition="'$(Configuration)' == 'Debug'">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
2021-10-07 21:19:24 +08:00
|
|
|
|
<Content Include="ModelSamples/**/*.json" />
|
2021-10-09 15:17:35 +08:00
|
|
|
|
<Content Include="EventSamples/**/*.xml" />
|
2021-10-07 21:19:24 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-21 18:27:07 +08:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
|
|
|
<PackageReference Include="SKIT.FlurlHttpClient.Tools.CodeAnalyzer" Version="0.1.0-alpha.1" />
|
2021-10-07 21:19:24 +08:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\SKIT.FlurlHttpClient.Wechat.OpenAI\SKIT.FlurlHttpClient.Wechat.OpenAI.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|