Skip to content

Commit

Permalink
Add support for arbitrary extensions to be bundled in XI/XM apps (#9048)
Browse files Browse the repository at this point in the history
- This commit adds a hook, "AdditionalAppExtensions", to the msbuild to allow
extensions written in other languages, such as Swift, to be embedded and signed in an
Xamarin App bundle easily.
- Example:
<AdditionalAppExtensions Include="$(MSBuildProjectDirectory)/../../native">
	<Name>NativeTodayExtension</Name>
	<BuildOutput Condition="'$(Platform)' == 'iPhone'">build/Debug-iphoneos</BuildOutput>
	<BuildOutput Condition="'$(Platform)' == 'iPhoneSimulator'">build/Debug-iphonesimulator</BuildOutput>
</AdditionalAppExtensions>
  • Loading branch information
chamons committed Jul 16, 2020
1 parent 4b0fd55 commit 5657a63
Show file tree
Hide file tree
Showing 51 changed files with 2,980 additions and 2 deletions.
2 changes: 1 addition & 1 deletion msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ Copyright (C) 2014 Xamarin. All rights reserved.
/>
</Target>

<Target Name="_CopyAppExtensionsToBundle" Condition="'$(IsAppExtension)' != 'true'" DependsOnTargets="_ResolveAppExtensionReferences">
<Target Name="_CopyAppExtensionsToBundle" Condition="'$(IsAppExtension)' != 'true'" DependsOnTargets="_ExtendAppExtensionReferences">
<MakeDir Directories="$(_AppBundlePath)Contents\PlugIns" Condition="'%(_ResolvedAppExtensionReferences.Extension)' == '.appex'" />
<MakeDir Directories="$(_AppBundlePath)Contents\XPCServices" Condition="'%(_ResolvedAppExtensionReferences.Extension)' == '.xpc'" />

Expand Down
27 changes: 26 additions & 1 deletion msbuild/Xamarin.Shared/Xamarin.Shared.targets
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,32 @@ Copyright (C) 2018 Microsoft. All rights reserved.

<Target Name="Codesign" Condition="'$(_CanOutputAppBundle)' == 'true'" DependsOnTargets="$(CodesignDependsOn)" />

<Target Name="_ExtendAppExtensionReferences" DependsOnTargets="_ResolveAppExtensionReferences" Condition=" '@(AdditionalAppExtensions)' != ''">
<!-- The idea here is that after _ResolveAppExtensionReferences we inject the 3rd party extensions into the list being processed later for embedding and code signing.
- _ResolvedAppExtensionReferences is an item group of the path, so that's easy.
- _AppExtensionCodesignProperties less so. It is generated by reading codesign.items generated by the c# tasks during build, which we don't have.
We also don't have a concrete list of types that get serialized, so I dug for every property referenced and set what I believe are sane values.-->
<PropertyGroup>
<_ExtensionEntitlementPath>%(AdditionalAppExtensions.Identity)/%(AdditionalAppExtensions.Name).entitlements</_ExtensionEntitlementPath>
</PropertyGroup>
<ItemGroup>
<_ResolvedAppExtensionReferences Include="%(AdditionalAppExtensions.Identity)/%(AdditionalAppExtensions.BuildOutput)/%(AdditionalAppExtensions.Name).appex" />

<_AppExtensionCodesignProperties Include="%(AdditionalAppExtensions.Name).appex">
<Entitlements Condition="Exists('$(_ExtensionEntitlementPath)')">
$(_ExtensionEntitlementPath)
</Entitlements>
<SigningKey>$(CodesignKey)</SigningKey>
<Keychain>$(CodesignKeychain)</Keychain>
<DisableTimestamp>False</DisableTimestamp>
<DisableTimestamp Condition="'$(_SdkIsSimulator)' == 'true' Or '$(_BundlerDebug)' == 'true'">True</DisableTimestamp>
<CodesignAllocate>$(_CodesignAllocate)</CodesignAllocate>
<ResourceRules>$(CodesignResourceRules)</ResourceRules>
<NativeExecutable>%(AdditionalAppExtensions.Filename)</NativeExecutable>
</_AppExtensionCodesignProperties>
</ItemGroup>
</Target>

<Import Project="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).After.targets"
Condition="Exists('$(MSBuildThisFileDirectory)$(MSBuildThisFileName).After.targets')"/>
</Project>

1 change: 1 addition & 0 deletions msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,7 @@ Copyright (C) 2013-2016 Xamarin. All rights reserved.
_CompileEntitlements;
_CompileAppManifest;
_ResolveAppExtensionReferences;
_ExtendAppExtensionReferences;
_GetNativeExecutableName;
_GetCompileToNativeInputs;
_ExpandNativeReferences;
Expand Down
6 changes: 6 additions & 0 deletions msbuild/tests/NativeExtensionEmbedding/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
native/build
native/DerivedData
xcshareddata
xcuserdata
bin
obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
using Foundation;
using UIKit;

namespace ManagedContainer
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to application events from iOS.
[Register ("AppDelegate")]
public class AppDelegate : UIResponder, IUIApplicationDelegate
{

[Export ("window")]
public UIWindow Window { get; set; }

[Export ("application:didFinishLaunchingWithOptions:")]
public bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
{
// Override point for customization after application launch.
// If not required for your application you can safely delete this method
return true;
}

// UISceneSession Lifecycle

[Export ("application:configurationForConnectingSceneSession:options:")]
public UISceneConfiguration GetConfiguration (UIApplication application, UISceneSession connectingSceneSession, UISceneConnectionOptions options)
{
// Called when a new scene session is being created.
// Use this method to select a configuration to create the new scene with.
return UISceneConfiguration.Create ("Default Configuration", connectingSceneSession.Role);
}

[Export ("application:didDiscardSceneSessions:")]
public void DidDiscardSceneSessions (UIApplication application, NSSet<UISceneSession> sceneSessions)
{
// Called when the user discards a scene session.
// If any sessions were discarded while the application was not running, this will be called shortly after `FinishedLaunching`.
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
}
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>ManagedContainer</string>
<key>CFBundleIdentifier</key>
<string>com.xamarin.extension</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<true/>
<key>UISceneConfigurations</key>
<dict>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>Default Configuration</string>
<key>UISceneDelegateClassName</key>
<string>SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
</dict>
</array>
</dict>
</dict>
<key>MinimumOSVersion</key>
<string>13.5</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIMainStoryboardFile~ipad</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CFBundleName</key>
<string>ManagedContainer</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS" />
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9530" />
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb" />
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok" />
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="600" height="600" />
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" />
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite" />
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder" />
</objects>
<point key="canvasLocation" x="53" y="375" />
</scene>
</scenes>
</document>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using UIKit;

namespace ManagedContainer
{
public class Application
{
// This is the main entry point of the application.
static void Main (string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main (args, null, "AppDelegate");
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772" />
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0" />
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ" />
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE" />
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="414" height="736" />
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" />
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB" />
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder" />
</objects>
<point key="canvasLocation" x="0.0" y="0.0" />
</scene>
</scenes>
</document>
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
<ProjectGuid>{9DD07D7E-F161-4519-BB75-B66E93322257}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{edc1b0fa-90cd-4038-8fad-98fe74adb368}</TemplateGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ManagedContainer</RootNamespace>
<AssemblyName>ManagedContainer</AssemblyName>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<MtouchEnableSGenConc>true</MtouchEnableSGenConc>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>None</MtouchLink>
<MtouchDebug>true</MtouchDebug>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhone\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<CodesignKey>Apple Development: Christopher Hamons (TJNQMQ686X)</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<CodesignProvision>iOS Team Provisioning Profile: *</CodesignProvision>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchArch>ARM64</MtouchArch>
<CodesignKey>iPhone Developer</CodesignKey>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Essentials" Version="1.3.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<InterfaceDefinition Include="LaunchScreen.storyboard" />
<InterfaceDefinition Include="Main.storyboard" />
</ItemGroup>
<ItemGroup>
<None Include="Info.plist" />
<None Include="Entitlements.plist" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<Compile Include="SceneDelegate.cs" />
<Compile Include="ViewController.cs" />
<Compile Include="ViewController.designer.cs">
<DependentUpon>ViewController.cs</DependentUpon>
</Compile>
<AdditionalAppExtensions Include="$(MSBuildProjectDirectory)/../../native">
<Name>NativeTodayExtension</Name>
<BuildOutput Condition="'$(Platform)' == 'iPhone'">build/Debug-iphoneos</BuildOutput>
<BuildOutput Condition="'$(Platform)' == 'iPhoneSimulator'">build/Debug-iphonesimulator</BuildOutput>
</AdditionalAppExtensions>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManagedContainer", "ManagedContainer.csproj", "{9DD07D7E-F161-4519-BB75-B66E93322257}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Release|iPhoneSimulator = Release|iPhoneSimulator
Debug|iPhone = Debug|iPhone
Release|iPhone = Release|iPhone
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9DD07D7E-F161-4519-BB75-B66E93322257}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{9DD07D7E-F161-4519-BB75-B66E93322257}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{9DD07D7E-F161-4519-BB75-B66E93322257}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{9DD07D7E-F161-4519-BB75-B66E93322257}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{9DD07D7E-F161-4519-BB75-B66E93322257}.Debug|iPhone.ActiveCfg = Debug|iPhone
{9DD07D7E-F161-4519-BB75-B66E93322257}.Debug|iPhone.Build.0 = Debug|iPhone
{9DD07D7E-F161-4519-BB75-B66E93322257}.Release|iPhone.ActiveCfg = Release|iPhone
{9DD07D7E-F161-4519-BB75-B66E93322257}.Release|iPhone.Build.0 = Release|iPhone
EndGlobalSection
EndGlobal
Loading

4 comments on commit 5657a63

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔥 Tests failed catastrophically on VSTS: device tests tvOS (DDFun) 🔥

Not enough free space in the host.

Pipeline on Agent XAMTESTMAC10

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) 🔥

Not enough free space in the host.

Pipeline on Agent XAMTESTMAC04

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❌ Device tests failed on VSTS: device tests tvOS (Cambridge) ❌

Device tests failed on VSTS: device tests tvOS (Cambridge).

Test results

150 tests' device not found, 0 tests passed.

Pipeline on Agent XAMTESTWIN05

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build was (probably) aborted

🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Running XM tests on '10.10', Running XM tests on '10.11', Running XM tests on '10.9'' 🔥

Provisioning succeeded
Build succeeded
✅ Packages built successfully

View packages

API Diff (from stable)
API Diff (from PR only) (no change)
Generator Diff (no change)
🔥 Xamarin.Mac tests on 10.10 failed: Xamarin.Mac tests on macOS 10.10 failed (xammac_tests) 🔥
🔥 Xamarin.Mac tests on 10.11 failed: Xamarin.Mac tests on macOS 10.11 failed (xammac_tests) 🔥
🔥 Xamarin.Mac tests on 10.9 failed: Xamarin.Mac tests on macOS 10.9 failed (xammac_tests) 🔥
🔥 Test run failed 🔥

Test results

9 tests failed, 177 tests passed.

Failed tests

  • mscorlib Part 1/iOS Unified 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/126/vsts-nunit-test-classic-20200716_144127.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/126/vsts-nunit-test-classic-20200716_144127.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/127/vsts-nunit-test-classic-20200716_145503.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/127/vsts-nunit-test-classic-20200716_145503.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/129/vsts-nunit-test-tvos-20200716_150805.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/129/vsts-nunit-test-tvos-20200716_150805.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/watchOS 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/131/vsts-nunit-test-watchos-20200716_151656.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/131/vsts-nunit-test-watchos-20200716_151656.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/133/vsts-nunit-test-classic-20200716_144134.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/133/vsts-nunit-test-classic-20200716_144134.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/134/vsts-nunit-test-classic-20200716_145507.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/134/vsts-nunit-test-classic-20200716_145507.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/136/vsts-nunit-test-tvos-20200716_150809.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/136/vsts-nunit-test-tvos-20200716_150809.xml'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/b

Please sign in to comment.