Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 40f47db

Browse files
authored
[Touch.Client] Add a macOS and watchOS version for .NET. (#90)
1 parent 1d4b8c0 commit 40f47db

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.macOS.Sdk">
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
6+
<LangVersion>latest</LangVersion>
7+
<AssemblyName>Touch.Client</AssemblyName>
8+
</PropertyGroup>
9+
<ItemGroup>
10+
<Compile Include="..\..\..\NUnitLite\TouchRunner\ExcludedCategoryFilter.cs">
11+
<Link>ExcludedCategoryFilter.cs</Link>
12+
</Compile>
13+
<Compile Include="..\..\..\NUnitLite\TouchRunner\HttpTextWriter.cs">
14+
<Link>HttpTextWriter.cs</Link>
15+
</Compile>
16+
<Compile Include="..\..\..\NUnitLite\TouchRunner\NUnitOutputTextWriter.cs">
17+
<Link>NUnitOutputTextWriter.cs</Link>
18+
</Compile>
19+
<Compile Include="..\..\..\NUnitLite\TouchRunner\Options.cs">
20+
<Link>Options.cs</Link>
21+
</Compile>
22+
<Compile Include="..\..\..\NUnitLite\TouchRunner\TcpTextWriter.cs">
23+
<Link>TcpTextWriter.cs</Link>
24+
</Compile>
25+
<Compile Include="..\..\..\NUnitLite\TouchRunner\TestRocks.cs">
26+
<Link>TestRocks.cs</Link>
27+
</Compile>
28+
<Compile Include="..\..\..\NUnitLite\TouchRunner\TouchOptions.cs">
29+
<Link>TouchOptions.cs</Link>
30+
</Compile>
31+
<Compile Include="..\..\..\NUnitLite\TouchRunner\TouchRunner.cs">
32+
<Link>TouchRunner.cs</Link>
33+
</Compile>
34+
<Compile Include="..\..\..\NUnitLite\TouchRunner\MacRunner.cs">
35+
<Link>MacRunner.cs</Link>
36+
</Compile>
37+
</ItemGroup>
38+
<ItemGroup>
39+
<PackageReference Include="NUnitLite">
40+
<Version>3.12.0</Version>
41+
</PackageReference>
42+
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter">
43+
<Version>3.6.0</Version>
44+
</PackageReference>
45+
</ItemGroup>
46+
</Project>
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.watchOS.Sdk">
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
6+
<LangVersion>latest</LangVersion>
7+
<AssemblyName>Touch.Client</AssemblyName>
8+
</PropertyGroup>
9+
<ItemGroup>
10+
<Compile Include="..\..\NUnitLite\TouchRunner\ExcludedCategoryFilter.cs">
11+
<Link>ExcludedCategoryFilter.cs</Link>
12+
</Compile>
13+
<Compile Include="..\..\NUnitLite\TouchRunner\HttpTextWriter.cs">
14+
<Link>HttpTextWriter.cs</Link>
15+
</Compile>
16+
<Compile Include="..\..\NUnitLite\TouchRunner\NUnitOutputTextWriter.cs">
17+
<Link>NUnitOutputTextWriter.cs</Link>
18+
</Compile>
19+
<Compile Include="..\..\NUnitLite\TouchRunner\Options.cs">
20+
<Link>Options.cs</Link>
21+
</Compile>
22+
<Compile Include="..\..\NUnitLite\TouchRunner\TcpTextWriter.cs">
23+
<Link>TcpTextWriter.cs</Link>
24+
</Compile>
25+
<Compile Include="..\..\NUnitLite\TouchRunner\TestRocks.cs">
26+
<Link>TestRocks.cs</Link>
27+
</Compile>
28+
<Compile Include="..\..\NUnitLite\TouchRunner\TouchOptions.cs">
29+
<Link>TouchOptions.cs</Link>
30+
</Compile>
31+
<Compile Include="..\..\NUnitLite\TouchRunner\TouchRunner.cs">
32+
<Link>TouchRunner.cs</Link>
33+
</Compile>
34+
</ItemGroup>
35+
<ItemGroup>
36+
<PackageReference Include="NUnitLite">
37+
<Version>3.12.0</Version>
38+
</PackageReference>
39+
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter">
40+
<Version>3.6.0</Version>
41+
</PackageReference>
42+
</ItemGroup>
43+
</Project>

0 commit comments

Comments
 (0)