24 lines
817 B
XML
24 lines
817 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<UseWPF>true</UseWPF>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.16" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\InSituLaboratory.Entities\InSituLaboratory.Entities.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|