-
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.
Add tvOS version of Touch.Client. (#64)
Also rename Touch.Client to Touch.Client-iOS, and make sure to use different output and intermediate paths in the two project files, so that they don't output files in the same directories.
- Loading branch information
1 parent
705964d
commit ef92ff9
Showing
3 changed files
with
124 additions
and
4 deletions.
There are no files selected for viewing
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
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,102 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{A571BB52-F57E-4ED0-ADC0-95656E866C18}</ProjectGuid> | ||
<ProjectTypeGuids>{06FA79CB-D6CD-4721-BB4B-1BD202089C55};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Touch.Client</RootNamespace> | ||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix> | ||
<AssemblyName>Touch.Client</AssemblyName> | ||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
<BaseIntermediateOutputPath>obj\tvOS</BaseIntermediateOutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\tvOS\Debug</OutputPath> | ||
<DefineConstants>DEBUG;NUNITLITE_NUGET</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>full</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\tvOS\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<MtouchVerbosity></MtouchVerbosity> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Xamarin.TVOS" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<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\TestCaseElement.cs"> | ||
<Link>TestCaseElement.cs</Link> | ||
</Compile> | ||
<Compile Include="..\NUnitLite\TouchRunner\TestElement.cs"> | ||
<Link>TestElement.cs</Link> | ||
</Compile> | ||
<Compile Include="..\NUnitLite\TouchRunner\TestResultElement.cs"> | ||
<Link>TestResultElement.cs</Link> | ||
</Compile> | ||
<Compile Include="..\NUnitLite\TouchRunner\TestRocks.cs"> | ||
<Link>TestRocks.cs</Link> | ||
</Compile> | ||
<Compile Include="..\NUnitLite\TouchRunner\TestSuiteElement.cs"> | ||
<Link>TestSuiteElement.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\TouchViewController.cs"> | ||
<Link>TouchViewController.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NUnitLite"> | ||
<Version>3.12.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="MonoTouch.Dialog" CopyLocal="true" IncludeAssets="all"> | ||
<Version>2.0.0-pre1</Version> | ||
<IncludeAssets>all</IncludeAssets> | ||
<CopyLocal>true</CopyLocal> | ||
</PackageReference> | ||
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter"> | ||
<Version>3.6.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<!-- Make sure MonoTouch.Dialog ends up in the output folder --> | ||
<Target Name="ClearReferenceCopyLocalPaths" AfterTargets="ResolveAssemblyReferences"> | ||
<ItemGroup> | ||
<ReferenceCopyLocalPaths Include="@(Reference)" Condition="'%(Reference.Filename)' == 'MonoTouch.Dialog'" /> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\TVOS\Xamarin.TVOS.CSharp.targets" /> | ||
</Project> |
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