This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Touch.Client] Add a macOS and watchOS version for .NET. (#90)
- Loading branch information
1 parent
1d4b8c0
commit 40f47db
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
Touch.Client/dotnet/macOS/Touch.Client-macOS.dotnet.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.macOS.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<DefineConstants>NUNITLITE_NUGET</DefineConstants> | ||
<LangVersion>latest</LangVersion> | ||
<AssemblyName>Touch.Client</AssemblyName> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\ExcludedCategoryFilter.cs"> | ||
<Link>ExcludedCategoryFilter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\HttpTextWriter.cs"> | ||
<Link>HttpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\NUnitOutputTextWriter.cs"> | ||
<Link>NUnitOutputTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\Options.cs"> | ||
<Link>Options.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\TcpTextWriter.cs"> | ||
<Link>TcpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\TestRocks.cs"> | ||
<Link>TestRocks.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\TouchOptions.cs"> | ||
<Link>TouchOptions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\TouchRunner.cs"> | ||
<Link>TouchRunner.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\NUnitLite\TouchRunner\MacRunner.cs"> | ||
<Link>MacRunner.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NUnitLite"> | ||
<Version>3.12.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter"> | ||
<Version>3.6.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
43 changes: 43 additions & 0 deletions
43
Touch.Client/dotnet/watchOS/Touch.Client-watchOS.dotnet.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.watchOS.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<DefineConstants>NUNITLITE_NUGET</DefineConstants> | ||
<LangVersion>latest</LangVersion> | ||
<AssemblyName>Touch.Client</AssemblyName> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\ExcludedCategoryFilter.cs"> | ||
<Link>ExcludedCategoryFilter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\HttpTextWriter.cs"> | ||
<Link>HttpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\NUnitOutputTextWriter.cs"> | ||
<Link>NUnitOutputTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\Options.cs"> | ||
<Link>Options.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TcpTextWriter.cs"> | ||
<Link>TcpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TestRocks.cs"> | ||
<Link>TestRocks.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TouchOptions.cs"> | ||
<Link>TouchOptions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TouchRunner.cs"> | ||
<Link>TouchRunner.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NUnitLite"> | ||
<Version>3.12.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter"> | ||
<Version>3.6.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |