2019-11-22 10:48:53 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-12-13 10:53:47 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DocumentationFile></DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-11-22 10:48:53 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Falcon.ModelSP\Falcon.ModelSP.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|