27 lines
909 B
XML
27 lines
909 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
|
|
<PackageReference Include="coverlet.collector" Version="1.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ClientApp\ClientApp.csproj" />
|
|
<ProjectReference Include="..\DoctorApp\DoctorApp.csproj" />
|
|
<ProjectReference Include="..\ProftaakRH\ProftaakRH.csproj" />
|
|
<ProjectReference Include="..\RH-Engine\RH-Engine.csproj" />
|
|
<ProjectReference Include="..\Server\Server.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\Hashing\Hashing.projitems" Label="Shared" />
|
|
|
|
</Project>
|