blob: 92ed6b2233aaf30df8ef96e67383a90c26b1513c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>true</ImplicitUsings>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.22.0" />
<PackageReference Include="xunit" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\server\IOL.GreatOffice.Api.csproj" />
<ProjectReference Include="..\..\server\src\IOL.GreatOffice.Api.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="ServerTests" />
</ItemGroup>
</Project>
|