2022-03-30 17:08:07 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-03-21 12:05:12 +08:00
|
|
|
|
|
2022-03-30 17:08:07 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>net5</TargetFrameworks>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2022-03-21 12:05:12 +08:00
|
|
|
|
|
2022-03-30 17:08:07 +08:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
2022-03-21 12:05:12 +08:00
|
|
|
|
|
2022-03-30 17:08:07 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2022-03-21 12:05:12 +08:00
|
|
|
|
|
2022-03-30 17:08:07 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Falcon.SugarApi\Falcon.SugarApi.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<VisualStudio>
|
|
|
|
|
<UserProperties />
|
|
|
|
|
</VisualStudio>
|
|
|
|
|
</ProjectExtensions>
|
2022-03-21 12:05:12 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|