-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactListAutomationTests.csproj
More file actions
43 lines (36 loc) · 1.77 KB
/
ContactListAutomationTests.csproj
File metadata and controls
43 lines (36 loc) · 1.77 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Using Include="Reqnroll"/>
<Using Include="Microsoft.Playwright"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="35.6.3" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="[7.2.0]" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.5"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.5"/>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.5"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.5"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0"/>
<PackageReference Include="Microsoft.Playwright" Version="1.52.0"/>
<PackageReference Include="NUnit" Version="4.3.2"/>
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0"/>
<PackageReference Include="Reqnroll.NUnit" Version="2.4.1"/>
</ItemGroup>
<ItemGroup>
<Content Include="Features\*.feature"/>
<None Update="test_settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>