2019-01-12 15:33:57 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-01-11 23:20:28 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2019-02-16 11:26:49 +08:00
|
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
2019-01-11 23:20:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-01-18 01:10:19 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
2019-01-15 18:22:06 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.2.0" />
|
2019-04-10 14:13:55 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="2.2.4" />
|
2019-05-15 11:37:17 +08:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
|
|
|
|
|
<PackageReference Include="MySql.Data" Version="8.0.16" />
|
2019-04-10 14:13:55 +08:00
|
|
|
|
<PackageReference Include="Npgsql" Version="4.0.6" />
|
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-01-15 18:22:06 +08:00
|
|
|
|
<ProjectReference Include="..\Bootstrap.Admin\Bootstrap.Admin.csproj" />
|
2019-05-13 12:11:15 +08:00
|
|
|
|
<ProjectReference Include="..\Bootstrap.DataAccess.MongoDB\Bootstrap.DataAccess.MongoDB.csproj" />
|
2019-01-11 23:20:28 +08:00
|
|
|
|
<ProjectReference Include="..\Bootstrap.DataAccess\Bootstrap.DataAccess.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|