-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathAAS.TwinEngine.Plugin.TestPlugin.PlaywrightTests.csproj
More file actions
72 lines (66 loc) · 3.19 KB
/
Copy pathAAS.TwinEngine.Plugin.TestPlugin.PlaywrightTests.csproj
File metadata and controls
72 lines (66 loc) · 3.19 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
62
63
64
65
66
67
68
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NoWarn>IDE1006, IDE0058</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="10.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.59.0" />
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.59.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<None Update="AasRegistry\TestData\GetAllShellDescriptors_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AasRegistry\TestData\GetShellDescriptorById_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AasRepository\TestData\GetAssetInformationById_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AasRepository\TestData\GetShellById_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AasRepository\TestData\GetSubmodelRefById_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRegistry\TestData\GetSubmodelDescriptorById_Contact_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRegistry\TestData\GetSubmodelDescriptorById_HandoverDocumentation_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRegistry\TestData\GetSubmodelDescriptorById_CustomSubmodel_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodelElement_ContactInfo_ContactInformation_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodelElement_HandoverDocumentation_Documents0_DocumentVersions0_Language0.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodelElement_CustomSubmodel_OperatingConditionsOfReliabilityCharacteristics.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodel_ContactInfo_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodel_HandoverDocumentation_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SubmodelRepository\TestData\GetSubmodel_CustomSubmodel_Expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>