forked from hardkoded/puppeteer-sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPuppeteerSharp.Tests.csproj
More file actions
56 lines (56 loc) · 2.31 KB
/
PuppeteerSharp.Tests.csproj
File metadata and controls
56 lines (56 loc) · 2.31 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MarkdownSnippets.MsBuild" Version="24.2.2" PrivateAssets="All" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.11" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0-preview.2.21154.6" />
</ItemGroup>
<Import Project="../Common/SignAssembly.props" />
<ItemGroup>
<Folder Include="Issues\" />
<Folder Include="Attributes\" />
<Folder Include="ClickTests\" />
<Folder Include="KeyboardTests\" />
<Folder Include="MouseTests\" />
<Folder Include="TouchScreenTests\" />
<Folder Include="EmulationTests\" />
<Folder Include="FixturesTests\" />
<Folder Include="HeadfulTests\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PuppeteerSharp.TestServer\PuppeteerSharp.TestServer.csproj" />
<ProjectReference Include="..\PuppeteerSharp\PuppeteerSharp.csproj" />
<ProjectReference Include="..\PuppeteerSharp.Xunit\PuppeteerSharp.Xunit.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\**">
<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>
</Project>