-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAwful.Test.csproj
More file actions
47 lines (47 loc) · 1.72 KB
/
Awful.Test.csproj
File metadata and controls
47 lines (47 loc) · 1.72 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="AngleSharp" Version="0.17.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
</ItemGroup>
<ItemGroup>
<None Remove="AngleSharp" />
<None Remove="System.Text.Json" />
</ItemGroup>
<ItemGroup>
<None Update="SampleHtml\bookmark_single_page.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SampleHtml\bookmark_multi_page.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SampleHtml\byob_thread.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SampleHtml\fyad_thread.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SampleHtml\gbs_thread_list.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Awful\Awful.csproj" />
</ItemGroup>
</Project>