Skip to content

Commit

Permalink
Port Touch.Unit to the Unified profile, and remove the NUnitLite test…
Browse files Browse the repository at this point in the history
…s from the monotouch.tests project. (#62)

* The NUnitLite tests don't compile, so just remove them.

This makes the solution build successfully.
  • Loading branch information
rolfbjarne committed May 14, 2020
1 parent dfbf8cb commit fbf9f30
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 517 deletions.
4 changes: 2 additions & 2 deletions AppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
//

using System.Reflection;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using Foundation;
using UIKit;
using MonoTouch.NUnit.UI;

namespace MonoTouch.NUnit {
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleIdentifier</key>
<string>com.xamarin.touch-unit</string>
<key>MinimumOSVersion</key>
<string>4.0</string>
<string>8.0</string>
<key>UIDeviceFamily</key>
<array>
<string>1</string>
Expand Down
4 changes: 2 additions & 2 deletions Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using Foundation;
using UIKit;

namespace touchunit
{
Expand Down
5 changes: 4 additions & 1 deletion Touch.Unit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchDebug>true</MtouchDebug>
<MtouchArch>ARM64</MtouchArch>
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>None</MtouchLink>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
Expand All @@ -30,6 +30,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -41,6 +42,7 @@
<WarningLevel>4</WarningLevel>
<MtouchDebug>true</MtouchDebug>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchArch>ARM64</MtouchArch>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugType>none</DebugType>
Expand All @@ -49,6 +51,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchArch>ARM64</MtouchArch>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion Touch.Unit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ Global
{20E71273-1306-477D-964D-A7FAFE20196D}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Debug|iPhone.Build.0 = Debug|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Release|iPhone.ActiveCfg = Release|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Release|iPhone.Build.0 = Release|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{20E71273-1306-477D-964D-A7FAFE20196D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{5DDFD948-5455-40EB-BD67-211EA61F6472}.AdHoc|iPhone.ActiveCfg = Debug|iPhone
{5DDFD948-5455-40EB-BD67-211EA61F6472}.AdHoc|iPhone.Build.0 = Debug|iPhone
{5DDFD948-5455-40EB-BD67-211EA61F6472}.AdHoc|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
Expand Down
Loading

0 comments on commit fbf9f30

Please sign in to comment.