-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathMicrosoft.DotNet.XHarness.TestRunners.Xunit.v3.csproj
More file actions
56 lines (50 loc) · 2.12 KB
/
Microsoft.DotNet.XHarness.TestRunners.Xunit.v3.csproj
File metadata and controls
56 lines (50 loc) · 2.12 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetMinimum)</TargetFramework>
<IsPackable>true</IsPackable>
<Nullable>disable</Nullable>
<DefineConstants>USE_XUNIT_V3</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit.v3.extensibility.core" />
<PackageReference Include="xunit.v3.runner.common" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\XUnitFilter.cs">
<Link>XUnitFilter.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\XUnitFilterType.cs">
<Link>XUnitFilterType.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\XUnitFiltersCollection.cs">
<Link>XUnitFiltersCollection.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\TestCaseExtensions.cs">
<Link>TestCaseExtensions.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\AndroidApplicationEntryPoint.cs">
<Link>AndroidApplicationEntryPoint.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\iOSApplicationEntryPoint.cs">
<Link>iOSApplicationEntryPoint.cs</Link>
</Compile>
<Compile Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\WasmApplicationEntryPoint.cs">
<Link>WasmApplicationEntryPoint.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\NUnit3Xml.xslt">
<Link>NUnit3Xml.xslt</Link>
<XlfSourceFormat></XlfSourceFormat>
<XlfOutputItem></XlfOutputItem>
</EmbeddedResource>
<EmbeddedResource Include="..\Microsoft.DotNet.XHarness.TestRunners.Xunit\NUnitXml.xslt">
<Link>NUnitXml.xslt</Link>
<XlfSourceFormat></XlfSourceFormat>
<XlfOutputItem></XlfOutputItem>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.DotNet.XHarness.TestRunners.Common\Microsoft.DotNet.XHarness.TestRunners.Common.csproj" />
</ItemGroup>
</Project>