forked from hardkoded/puppeteer-sharp
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCefSharp.Dom.Tests.csproj
More file actions
95 lines (95 loc) · 4.11 KB
/
CefSharp.Dom.Tests.csproj
File metadata and controls
95 lines (95 loc) · 4.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained Condition="'$(SelfContained)' == ''">false</SelfContained>
<IsTestProject>true</IsTestProject>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AssemblyName>CefSharp.Dom.Tests</AssemblyName>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AccessibilityTests\**" />
<Compile Remove="InputTests\**" />
<Compile Remove="DevToolsContextTests\**" />
<Compile Remove="Screenshots\**" />
<EmbeddedResource Remove="AccessibilityTests\**" />
<EmbeddedResource Remove="InputTests\**" />
<EmbeddedResource Remove="DevToolsContextTests\**" />
<EmbeddedResource Remove="Screenshots\**" />
<None Remove="AccessibilityTests\**" />
<None Remove="InputTests\**" />
<None Remove="DevToolsContextTests\**" />
<None Remove="Screenshots\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="MarkdownSnippets.MsBuild" Version="25.0.1" PrivateAssets="All" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="xRetry" Version="1.9.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.10" />
<PackageReference Include="Nito.AsyncEx.Context" Version="5.1.2" />
<PackageReference Include="CefSharp.OffScreen.NETCore" Version="141.0.110" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PuppeteerSharp.TestServer\CefSharp.Dom.TestServer.csproj" />
<ProjectReference Include="..\PuppeteerSharp\CefSharp.Dom.csproj" />
<ProjectReference Include="..\PuppeteerSharp.Xunit\CefSharp.Dom.Xunit.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\es6\es6import.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\es6\es6module.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\es6\es6pathimport.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\file-to-upload.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\injectedfile.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\injectedstyle.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\one-style.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\one-style.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\pptr.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="test.runsettings">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Remove="xunit.runner.json" />
<Content Include="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="Emulation\" />
<None Remove="FixturesTests\" />
<None Remove="HeadfulTests\" />
</ItemGroup>
<ItemGroup>
<CustomAdditionalCompileInputs Remove="DevToolsContextTests\**" />
<CustomAdditionalCompileInputs Remove="AccessibilityTests\**" />
<CustomAdditionalCompileInputs Remove="Screenshots\**" />
<CustomAdditionalCompileInputs Remove="InputTests\**" />
</ItemGroup>
</Project>