1 |
847434c6
|
Roman Kalivoda
|
<Project Sdk="Microsoft.NET.Sdk">
|
2 |
|
|
|
3 |
|
|
<PropertyGroup>
|
4 |
|
|
<TargetFramework>net5.0</TargetFramework>
|
5 |
|
|
|
6 |
|
|
<IsPackable>false</IsPackable>
|
7 |
|
|
</PropertyGroup>
|
8 |
|
|
|
9 |
|
|
<ItemGroup>
|
10 |
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
11 |
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
12 |
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.4" />
|
13 |
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.4" />
|
14 |
|
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
15 |
|
|
<PrivateAssets>all</PrivateAssets>
|
16 |
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
17 |
|
|
</PackageReference>
|
18 |
|
|
</ItemGroup>
|
19 |
|
|
|
20 |
|
|
<ItemGroup>
|
21 |
|
|
<ProjectReference Include="..\ServerApp\ServerApp.csproj" />
|
22 |
|
|
</ItemGroup>
|
23 |
|
|
|
24 |
0060a0ae
|
Roman Kalivoda
|
<ItemGroup>
|
25 |
|
|
<None Update="App.config">
|
26 |
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
27 |
|
|
</None>
|
28 |
|
|
</ItemGroup>
|
29 |
|
|
|
30 |
847434c6
|
Roman Kalivoda
|
</Project>
|