21 lines
597 B
XML
21 lines
597 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net6.0</TargetFramework>
|
|||
|
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.21">
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\wtmProject.Model\wtmProject.Model.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|
|||
|
|
|