2019-01-12 15:33:57 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-01-11 23:20:28 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-11-15 00:09:08 +08:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-01-11 23:20:28 +08:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-02-12 21:56:35 +08:00
|
|
|
|
<DebugType>Full</DebugType>
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-11-18 17:01:29 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Error\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-01-11 23:20:28 +08:00
|
|
|
|
<ItemGroup>
|
2020-01-14 12:17:25 +08:00
|
|
|
|
<PackageReference Include="coverlet.msbuild" Version="2.7.0">
|
2019-09-29 13:12:59 +08:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2019-05-18 17:48:40 +08:00
|
|
|
|
</PackageReference>
|
2021-10-21 12:54:56 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.11" />
|
2021-08-15 02:35:06 +08:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
2021-10-21 12:54:56 +08:00
|
|
|
|
<PackageReference Include="MySql.Data" Version="8.0.27" />
|
2020-11-19 20:32:52 +08:00
|
|
|
|
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
|
2019-01-11 23:20:28 +08:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
2020-11-15 00:09:08 +08:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
2019-01-12 19:23:10 +08:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-01-03 10:17:25 +08:00
|
|
|
|
<ProjectReference Include="..\..\src\mvc\admin\Bootstrap.Admin\Bootstrap.Admin.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\mvc\admin\Bootstrap.DataAccess.MongoDB\Bootstrap.DataAccess.MongoDB.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\mvc\admin\Bootstrap.DataAccess\Bootstrap.DataAccess.csproj" />
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|