David Britch 2018-08-06 09:51:36 +01:00
Родитель 14a99c1aa1 7dbd446030
Коммит 610e4e119e
2 изменённых файлов: 3 добавлений и 3 удалений

4
CustomRenderers/View/iOS/CustomRenderer.iOS.csproj Executable file → Normal file
Просмотреть файл

@ -33,7 +33,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchArch>ARM64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
</PropertyGroup>
@ -43,7 +43,7 @@
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>i386, x86_64</MtouchArch>
<MtouchArch>x86_64</MtouchArch>
<ConsolePause>false</ConsolePause>
<MtouchLink>None</MtouchLink>
</PropertyGroup>

Просмотреть файл

@ -13,7 +13,7 @@ Important points:
* In the Xamarin.Forms user interface, the `AutomationId` is set on controls that need to be referenced in tests.
* In the **UITests** unit test project, there is a set of cross-platform tests in a virtual class (`CrossPlatformTests`). These tests will be run against both platforms. The cross-platform tests reference the `AuomationId` used in the UI code, eg. `c.Marked("MyLabel")`
* In the **UITests** unit test project, there is a set of cross-platform tests in a virtual class (`CrossPlatformTests`). These tests will be run against both platforms. The cross-platform tests reference the `AutomationId` used in the UI code, eg. `c.Marked("MyLabel")`
* In the **UITests** unit test project the iOS and Android subclasses of `CrossPlatformTests` do the platform-specific set-up.