20 lines
570 B
XML
20 lines
570 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="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\InSituLaboratory.Base\InSituLaboratory.Base.csproj" />
|
||
|
|
<ProjectReference Include="..\InSituLaboratory.IService\InSituLaboratory.IService.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|