blob: b546d70de113f579021f688b17ecb4cd0fd2d98f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>true</ImplicitUsings>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.39.0" />
<PackageReference Include="xunit" Version="2.6.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\IOL.GreatOffice.Api.csproj" />
</ItemGroup>
</Project>
|