-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKdlSharp.Tests.csproj
More file actions
48 lines (43 loc) · 1.97 KB
/
KdlSharp.Tests.csproj
File metadata and controls
48 lines (43 loc) · 1.97 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<!-- Suppress XML doc warnings for test project -->
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="AwesomeAssertions" Version="9.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../KdlSharp/KdlSharp.csproj" />
</ItemGroup>
<!-- Copy official KDL test suite -->
<ItemGroup>
<!-- Copy test input files (336 files) -->
<Content Include="../specs/tests/test_cases/input/**/*.kdl">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>OfficialTests/TestData/input/%(RecursiveDir)%(Filename)%(Extension)</Link>
</Content>
<!-- Copy expected output files (241 files) -->
<Content Include="../specs/tests/test_cases/expected_kdl/**/*.kdl">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>OfficialTests/TestData/expected_kdl/%(RecursiveDir)%(Filename)%(Extension)</Link>
</Content>
<!-- Copy test README -->
<Content Include="../specs/tests/README.md" Condition="Exists('../specs/tests/README.md')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>OfficialTests/TestData/README.md</Link>
</Content>
</ItemGroup>
</Project>