2019-01-12 15:33:57 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-01-11 23:20:28 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-12-11 23:44:12 +08:00
|
|
|
|
<TargetFramework>netcoreapp3.1</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>
|
|
|
|
|
|
|
|
|
|
<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>
|
2020-01-29 10:08:09 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="3.1.1" />
|
2020-02-12 21:56:35 +08:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
2020-01-29 10:08:09 +08:00
|
|
|
|
<PackageReference Include="MySql.Data" Version="8.0.19" />
|
2019-01-11 23:20:28 +08:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
2019-01-12 19:23:10 +08:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-09-02 23:13:57 +08:00
|
|
|
|
<ProjectReference Include="..\..\src\admin\Bootstrap.Admin\Bootstrap.Admin.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\admin\Bootstrap.DataAccess.MongoDB\Bootstrap.DataAccess.MongoDB.csproj" />
|
2020-02-12 21:56:35 +08:00
|
|
|
|
<ProjectReference Include="..\..\src\admin\Bootstrap.DataAccess\Bootstrap.DataAccess.csproj" />
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|