-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathE2ETestCSharp.csproj
More file actions
61 lines (61 loc) · 2.24 KB
/
Copy pathE2ETestCSharp.csproj
File metadata and controls
61 lines (61 loc) · 2.24 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<DockerComposeProjectPath>../docker-compose.dcproj</DockerComposeProjectPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.22.0" />
<PackageReference Include="RestSharp" Version="107.3.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Microsoft.Playwright" />
<None Remove="Microsoft.Playwright.NUnit" />
<None Remove="Tests\" />
<None Remove="Tests\Fixtures\" />
<None Remove="Tests\ConduitTests\" />
<None Remove="Tests\ConduitTests\E2ETests\" />
<None Remove="POM\" />
<None Remove="RestSharp" />
<None Remove="Tests\ConduitTests\APITests\" />
<None Remove="Services\" />
<None Remove="Services\Auth\" />
<None Remove="models\" />
<None Remove="Model\Auth\" />
<None Remove="Utils\" />
<None Remove="Utils\Config\" />
<None Remove="Microsoft.Extensions.Configuration.Json" />
<None Remove="PlaywrightSetup\" />
<None Remove="Utils\Enums\" />
<None Remove="Tests\ConduitTests\NeedRefactoring\" />
<None Remove="Images\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Tests\" />
<Folder Include="Tests\Fixtures\" />
<Folder Include="Tests\ConduitTests\" />
<Folder Include="Tests\ConduitTests\E2ETests\" />
<Folder Include="POM\" />
<Folder Include="Tests\ConduitTests\APITests\" />
<Folder Include="Services\" />
<Folder Include="Services\Auth\" />
<Folder Include="Model\" />
<Folder Include="Model\Auth\" />
<Folder Include="Utils\" />
<Folder Include="Utils\Config\" />
<Folder Include=".github\" />
<Folder Include=".github\workflows\" />
<Folder Include="PlaywrightSetup\" />
<Folder Include="Utils\Enums\" />
<Folder Include="Tests\ConduitTests\NeedRefactoring\" />
<Folder Include="Images\" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\dotnet.yml" />
</ItemGroup>
</Project>