mono Orleans Output
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
using System; | |
using System.Net; | |
using Orleans; | |
using Orleans.Runtime.Host; | |
using OrleansDemo.GrainInterfaces; | |
using OrleansDemo.GrainCollection; | |
namespace OrleansDemo.Host | |
{ | |
class Program | |
{ | |
static SiloHost siloHost; | |
static void Main(string[] args) | |
{ | |
// Orleans should run in its own AppDomain, we set it up like this | |
InitSilo(args); | |
//DoSomeClientWork(); | |
Console.WriteLine("Orleans Silo is running.\nPress Enter to terminate..."); | |
Console.ReadLine(); | |
//ShutdownSilo(); | |
} | |
static void DoSomeClientWork() | |
{ | |
// Orleans comes with a rich XML configuration but we're just going to setup a basic config | |
var clientconfig = new Orleans.Runtime.Configuration.ClientConfiguration(); | |
clientconfig.Gateways.Add(new IPEndPoint(IPAddress.Loopback, 30000)); | |
GrainClient.Initialize(clientconfig); | |
var friend = GrainClient.GrainFactory.GetGrain<IHello>(0); | |
var result = friend.SayHello("Goodbye").Result; | |
Console.WriteLine(result); | |
} | |
static void InitSilo(string[] args) | |
{ | |
Console.WriteLine("Creating host..."); | |
siloHost = new SiloHost("localhost"); | |
Console.WriteLine("Setting config file..."); | |
siloHost.ConfigFileName = "OrleansConfiguration.xml"; | |
Console.WriteLine("Initialising silo..."); | |
siloHost.InitializeOrleansSilo(); | |
Console.WriteLine("Starting silo..."); | |
var startedok = siloHost.StartOrleansSilo(); | |
if (!startedok) | |
{ | |
throw new SystemException(String.Format("Failed to start Orleans silo '{0}' as a {1} node", siloHost.Name, siloHost.Type)); | |
} | |
else | |
{ | |
Console.WriteLine("Started"); | |
} | |
} | |
static void ShutdownSilo() | |
{ | |
if (siloHost != null) | |
{ | |
siloHost.Dispose(); | |
GC.SuppressFinalize(siloHost); | |
siloHost = null; | |
} | |
} | |
} | |
} |
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
Mono JIT compiler version 4.0.4 (Stable 4.0.4.1/5ab4c0d Tue Aug 25 23:11:51 UTC 2015) | |
Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com | |
TLS: __thread | |
SIGSEGV: altstack | |
Notifications: epoll | |
Architecture: amd64 | |
Disabled: none | |
Misc: softdebug | |
LLVM: supported, not enabled. | |
GC: sgen | |
ashley@ubuntu:/media/ashley/source/vs/Test/Orleans/dnx_demo/Host$ export MONO_LOG_LEVEL="debug" | |
ashley@ubuntu:/media/ashley/source/vs/Test/Orleans/dnx_demo/Host$ export MONO_LOG_MASK="asm,type" | |
ashley@ubuntu:/media/ashley/source/vs/Test/Orleans/dnx_demo/Host$ dnx run | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/mscorlib.dll'. | |
Mono: Image addref mscorlib[0x2479700] -> /usr/lib/mono/4.5/mscorlib.dll[0x2478950]: 2 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/mscorlib.dll'. | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/mscorlib.dll'. | |
Mono: Assembly mscorlib[0x2479700] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.Mono.dll'. | |
Mono: Image addref Microsoft.Dnx.Host.Mono[0x24d7460] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.Mono.dll[0x24774c0]: 3 | |
Mono: Assembly Microsoft.Dnx.Host.Mono[0x24d7460] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.Mono.dll'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.Mono.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host.Mono[0x24d7460] -> mscorlib[0x2479700]: 2 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.dll'. | |
Mono: Image addref Microsoft.Dnx.Host[0x24e0710] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.dll[0x24df6f0]: 2 | |
Mono: Assembly Microsoft.Dnx.Host[0x24e0710] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host.Mono[0x24d7460] -> Microsoft.Dnx.Host[0x24e0710]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Host[0x24e0710] -> mscorlib[0x2479700]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll'. | |
Mono: Image addref System[0x24e28e0] -> /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll[0x24e1690]: 2 | |
Mono: Assembly System[0x24e28e0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host.Mono[0x24d7460] -> System[0x24e28e0]: 2 | |
Mono: Assembly Ref addref System[0x24e28e0] -> mscorlib[0x2479700]: 4 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll'. | |
Mono: Image addref System.Core[0x24ff4a0] -> /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll[0x24fe4b0]: 2 | |
Mono: Assembly System.Core[0x24ff4a0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host.Mono[0x24d7460] -> System.Core[0x24ff4a0]: 2 | |
Mono: Assembly Ref addref System.Core[0x24ff4a0] -> mscorlib[0x2479700]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.Host[0x24e0710] -> System[0x24e28e0]: 3 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.Abstractions.dll'. | |
Mono: Image addref Microsoft.Dnx.Runtime.Abstractions[0x258d150] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.Abstractions.dll[0x258c4e0]: 2 | |
Mono: Assembly Microsoft.Dnx.Runtime.Abstractions[0x258d150] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.Abstractions.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host[0x24e0710] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Host[0x24e0710] -> System.Core[0x24ff4a0]: 3 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Loader.dll'. | |
Mono: Image addref Microsoft.Dnx.Loader[0x25f4e60] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Loader.dll[0x258efb0]: 2 | |
Mono: Assembly Microsoft.Dnx.Loader[0x25f4e60] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Loader.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Host[0x24e0710] -> Microsoft.Dnx.Loader[0x25f4e60]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Loader[0x25f4e60] -> mscorlib[0x2479700]: 6 | |
Mono: Assembly Ref addref Microsoft.Dnx.Loader[0x25f4e60] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime.Abstractions[0x258d150] -> mscorlib[0x2479700]: 7 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime.Abstractions[0x258d150] -> System[0x24e28e0]: 4 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll'. | |
Mono: Image addref Mono.Security[0x2605a30] -> /usr/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll[0x2604af0]: 2 | |
Mono: Assembly Mono.Security[0x2605a30] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll'. | |
Mono: Assembly Ref addref Mono.Security[0x2605a30] -> mscorlib[0x2479700]: 8 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.ApplicationHost.dll'. | |
Mono: Image addref Microsoft.Dnx.ApplicationHost[0x2630650] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.ApplicationHost.dll[0x262f4a0]: 2 | |
Mono: Assembly Microsoft.Dnx.ApplicationHost[0x2630650] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.ApplicationHost.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> mscorlib[0x2479700]: 9 | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 4 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.Abstractions.dll'. | |
Mono: Image addref Microsoft.Dnx.Compilation.Abstractions[0x2681080] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.Abstractions.dll[0x267ffc0]: 2 | |
Mono: Assembly Microsoft.Dnx.Compilation.Abstractions[0x2681080] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.Abstractions.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.Abstractions[0x2681080] -> mscorlib[0x2479700]: 10 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.dll'. | |
Mono: Image addref Microsoft.Dnx.Runtime[0x268d140] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.dll[0x268c140]: 2 | |
Mono: Assembly Microsoft.Dnx.Runtime[0x268d140] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> Microsoft.Dnx.Runtime[0x268d140]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> mscorlib[0x2479700]: 11 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.dll'. | |
Mono: Image addref Microsoft.Dnx.Compilation[0x2690d30] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.dll[0x268fd40]: 2 | |
Mono: Assembly Microsoft.Dnx.Compilation[0x2690d30] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> Microsoft.Dnx.Compilation[0x2690d30]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> mscorlib[0x2479700]: 12 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> System.Core[0x24ff4a0]: 4 | |
Mono: Assembly Ref addref System.Core[0x24ff4a0] -> System[0x24e28e0]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> System[0x24e28e0]: 6 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> System[0x24e28e0]: 7 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.ApplicationHost[0x2630650] -> System.Core[0x24ff4a0]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> Microsoft.Dnx.Runtime[0x268d140]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> System.Core[0x24ff4a0]: 6 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 6 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> System[0x24e28e0]: 8 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 4 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.Abstractions[0x2681080] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 7 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.Abstractions[0x2681080] -> System[0x24e28e0]: 9 | |
Mono: Assembly Loader probing location: '/usr/lib/Host.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/Host.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/Host.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/Host.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll'. | |
Mono: Image addref System.Xml.Linq[0x2899d30] -> /usr/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll[0x2899410]: 2 | |
Mono: Assembly System.Xml.Linq[0x2899d30] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> System.Xml.Linq[0x2899d30]: 2 | |
Mono: Assembly Ref addref System.Xml.Linq[0x2899d30] -> mscorlib[0x2479700]: 13 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll'. | |
Mono: Image addref System.Xml[0x288f540] -> /usr/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll[0x288e610]: 2 | |
Mono: Assembly System.Xml[0x288f540] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll'. | |
Mono: Assembly Ref addref System.Xml.Linq[0x2899d30] -> System.Xml[0x288f540]: 2 | |
Mono: Assembly Ref addref System.Xml[0x288f540] -> mscorlib[0x2479700]: 14 | |
Mono: Assembly Ref addref System.Xml[0x288f540] -> System[0x24e28e0]: 10 | |
Mono: Unloading image /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll [0x2904d00]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll [0x2904d00]. | |
Mono: Unloading image /usr/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll [0x2904d00]. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation[0x2690d30] -> Microsoft.Dnx.Loader[0x25f4e60]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Runtime[0x268d140] -> Microsoft.Dnx.Loader[0x25f4e60]: 4 | |
Mono: Unloading image /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll [0x29ac260]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll [0x29ac260]. | |
Mono: Unloading image /usr/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll [0x29ac260]. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.dll'. | |
Mono: Image addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.dll[0x29a8710]: 2 | |
Mono: Assembly Microsoft.Dnx.Compilation.CSharp[0x29ac110] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> mscorlib[0x2479700]: 15 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 8 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.dll'. | |
Mono: Image addref Microsoft.CodeAnalysis[0x29af1e0] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.dll[0x29b4270]: 2 | |
Mono: Assembly Microsoft.CodeAnalysis[0x29af1e0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.CodeAnalysis[0x29af1e0]: 2 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Runtime/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Runtime.dll'. | |
Mono: Image addref System.Runtime[0x29beba0] -> /usr/lib/mono/4.5/Facades/System.Runtime.dll[0x29bdce0]: 2 | |
Mono: Assembly System.Runtime[0x29beba0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Runtime.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Runtime[0x29beba0]: 2 | |
Mono: Assembly Ref addref System.Runtime[0x29beba0] -> mscorlib[0x2479700]: 16 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll'. | |
Mono: Image addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll[0x29c58c0]: 2 | |
Mono: Assembly Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 6 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> Microsoft.CodeAnalysis[0x29af1e0]: 3 | |
Mono: Unloading image /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll [0x29d3360]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll [0x29d3360]. | |
Mono: Unloading image /usr/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll [0x29d3360]. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> System[0x24e28e0]: 11 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Common.dll'. | |
Mono: Image addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Common.dll[0x29d8a70]: 2 | |
Mono: Assembly Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Common.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60]: 2 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> mscorlib[0x2479700]: 17 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.CSharp.dll'. | |
Mono: Image addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.CSharp.dll[0x29ceca0]: 2 | |
Mono: Assembly Microsoft.CodeAnalysis.CSharp[0x29d9470] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.CSharp.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.CodeAnalysis.CSharp[0x29d9470]: 2 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> Microsoft.CodeAnalysis[0x29af1e0]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Runtime[0x29beba0]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> Microsoft.Dnx.Compilation[0x2690d30]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> System.Core[0x24ff4a0]: 7 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Collections.Immutable.dll'. | |
Mono: Image addref System.Collections.Immutable[0x2a17170] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Collections.Immutable.dll[0x2a15cc0]: 2 | |
Mono: Assembly System.Collections.Immutable[0x2a17170] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Collections.Immutable.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> System.Collections.Immutable[0x2a17170]: 2 | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Runtime[0x29beba0]: 4 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> Microsoft.Dnx.Runtime.Abstractions[0x258d150]: 9 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> System[0x24e28e0]: 12 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> Microsoft.CodeAnalysis.CSharp[0x29d9470]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Collections.Immutable[0x2a17170]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Collections.Immutable[0x2a17170]: 4 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Collections.Concurrent/4.0.0.0__b03f5f7f11d50a3a/System.Collections.Concurrent.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Collections.Concurrent.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Collections.Concurrent.dll'. | |
Mono: Image addref System.Collections.Concurrent[0x2a38700] -> /usr/lib/mono/4.5/Facades/System.Collections.Concurrent.dll[0x2a37710]: 2 | |
Mono: Assembly System.Collections.Concurrent[0x2a38700] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Collections.Concurrent.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Collections.Concurrent[0x2a38700]: 2 | |
Mono: Assembly Ref addref System.Collections.Concurrent[0x2a38700] -> mscorlib[0x2479700]: 18 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Threading.Tasks.Parallel/4.0.0.0__b03f5f7f11d50a3a/System.Threading.Tasks.Parallel.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Threading.Tasks.Parallel.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll'. | |
Mono: Image addref System.Threading.Tasks.Parallel[0x2a3c3a0] -> /usr/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll[0x2a3b370]: 2 | |
Mono: Assembly System.Threading.Tasks.Parallel[0x2a3c3a0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Threading.Tasks.Parallel[0x2a3c3a0]: 2 | |
Mono: Assembly Ref addref System.Threading.Tasks.Parallel[0x2a3c3a0] -> mscorlib[0x2479700]: 19 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Collections/4.0.0.0__b03f5f7f11d50a3a/System.Collections.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Collections.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Collections.dll'. | |
Mono: Image addref System.Collections[0x2a468d0] -> /usr/lib/mono/4.5/Facades/System.Collections.dll[0x2a45b80]: 2 | |
Mono: Assembly System.Collections[0x2a468d0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Collections.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Collections[0x2a468d0]: 2 | |
Mono: Assembly Ref addref System.Collections[0x2a468d0] -> System.Core[0x24ff4a0]: 8 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Collections.Concurrent[0x2a38700]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> mscorlib[0x2479700]: 20 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> Microsoft.Dnx.Compilation.Abstractions[0x2681080]: 7 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> Microsoft.CodeAnalysis[0x29af1e0]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> Microsoft.CodeAnalysis.CSharp[0x29d9470]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Collections[0x2a468d0]: 3 | |
Mono: Assembly Ref addref System.Collections[0x2a468d0] -> mscorlib[0x2479700]: 21 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Xml.ReaderWriter/4.0.0.0__b03f5f7f11d50a3a/System.Xml.ReaderWriter.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Xml.ReaderWriter.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll'. | |
Mono: Image addref System.Xml.ReaderWriter[0x29f2210] -> /usr/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll[0x29f1480]: 2 | |
Mono: Assembly System.Xml.ReaderWriter[0x29f2210] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Xml.ReaderWriter[0x29f2210]: 2 | |
Mono: Assembly Ref addref System.Xml.ReaderWriter[0x29f2210] -> System.Xml[0x288f540]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> System.Core[0x24ff4a0]: 9 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Resources.ResourceManager/4.0.0.0__b03f5f7f11d50a3a/System.Resources.ResourceManager.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Resources.ResourceManager.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll'. | |
Mono: Image addref System.Resources.ResourceManager[0x2a268b0] -> /usr/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll[0x2a25b40]: 2 | |
Mono: Assembly System.Resources.ResourceManager[0x2a268b0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll'. | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Resources.ResourceManager[0x2a268b0]: 2 | |
Mono: Assembly Ref addref System.Resources.ResourceManager[0x2a268b0] -> mscorlib[0x2479700]: 22 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Linq/4.0.0.0__b03f5f7f11d50a3a/System.Linq.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Linq.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Linq.dll'. | |
Mono: Image addref System.Linq[0x2a51f10] -> /usr/lib/mono/4.5/Facades/System.Linq.dll[0x2a51290]: 2 | |
Mono: Assembly System.Linq[0x2a51f10] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Linq.dll'. | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Linq[0x2a51f10]: 2 | |
Mono: Assembly Ref addref System.Linq[0x2a51f10] -> System.Core[0x24ff4a0]: 10 | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Collections[0x2a468d0]: 4 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Globalization/4.0.0.0__b03f5f7f11d50a3a/System.Globalization.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Globalization.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Globalization.dll'. | |
Mono: Image addref System.Globalization[0x2a8f900] -> /usr/lib/mono/4.5/Facades/System.Globalization.dll[0x2a8ecf0]: 2 | |
Mono: Assembly System.Globalization[0x2a8f900] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Globalization.dll'. | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Globalization[0x2a8f900]: 2 | |
Mono: Assembly Ref addref System.Globalization[0x2a8f900] -> mscorlib[0x2479700]: 23 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Runtime.Extensions/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Runtime.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Runtime.Extensions.dll'. | |
Mono: Image addref System.Runtime.Extensions[0x2abdb20] -> /usr/lib/mono/4.5/Facades/System.Runtime.Extensions.dll[0x2abcac0]: 2 | |
Mono: Assembly System.Runtime.Extensions[0x2abdb20] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Runtime.Extensions.dll'. | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Runtime.Extensions[0x2abdb20]: 2 | |
Mono: Assembly Ref addref System.Runtime.Extensions[0x2abdb20] -> mscorlib[0x2479700]: 24 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Runtime.Extensions[0x2abdb20]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Globalization[0x2a8f900]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Text.Encoding/4.0.0.0__b03f5f7f11d50a3a/System.Text.Encoding.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Text.Encoding.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Text.Encoding.dll'. | |
Mono: Image addref System.Text.Encoding[0x2d62ae0] -> /usr/lib/mono/4.5/Facades/System.Text.Encoding.dll[0x2d61e00]: 2 | |
Mono: Assembly System.Text.Encoding[0x2d62ae0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Text.Encoding.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Text.Encoding[0x2d62ae0]: 2 | |
Mono: Assembly Ref addref System.Text.Encoding[0x2d62ae0] -> mscorlib[0x2479700]: 25 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.IO/4.0.0.0__b03f5f7f11d50a3a/System.IO.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.IO.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.IO.dll'. | |
Mono: Image addref System.IO[0x2baf6d0] -> /usr/lib/mono/4.5/Facades/System.IO.dll[0x2baeaf0]: 2 | |
Mono: Assembly System.IO[0x2baf6d0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.IO.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.IO[0x2baf6d0]: 2 | |
Mono: Assembly Ref addref System.IO[0x2baf6d0] -> mscorlib[0x2479700]: 26 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Text.Encoding[0x2d62ae0]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Threading.Tasks/4.0.0.0__b03f5f7f11d50a3a/System.Threading.Tasks.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Threading.Tasks.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Threading.Tasks.dll'. | |
Mono: Image addref System.Threading.Tasks[0x2daf0f0] -> /usr/lib/mono/4.5/Facades/System.Threading.Tasks.dll[0x2dae3b0]: 2 | |
Mono: Assembly System.Threading.Tasks[0x2daf0f0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Threading.Tasks.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Threading.Tasks[0x2daf0f0]: 2 | |
Mono: Assembly Ref addref System.Threading.Tasks[0x2daf0f0] -> mscorlib[0x2479700]: 27 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Resources.ResourceManager[0x2a268b0]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Text.Encoding.Extensions/4.0.0.0__b03f5f7f11d50a3a/System.Text.Encoding.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Text.Encoding.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll'. | |
Mono: Image addref System.Text.Encoding.Extensions[0x2da3510] -> /usr/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll[0x2da28c0]: 2 | |
Mono: Assembly System.Text.Encoding.Extensions[0x2da3510] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Text.Encoding.Extensions[0x2da3510]: 2 | |
Mono: Assembly Ref addref System.Text.Encoding.Extensions[0x2da3510] -> mscorlib[0x2479700]: 28 | |
Mono: Assembly Ref addref System.IO[0x2baf6d0] -> System[0x24e28e0]: 13 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Threading.Tasks[0x2daf0f0]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Reflection/4.0.0.0__b03f5f7f11d50a3a/System.Reflection.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Reflection.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Reflection.dll'. | |
Mono: Image addref System.Reflection[0x2bf3520] -> /usr/lib/mono/4.5/Facades/System.Reflection.dll[0x2d858d0]: 2 | |
Mono: Assembly System.Reflection[0x2bf3520] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Reflection.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Reflection[0x2bf3520]: 2 | |
Mono: Assembly Ref addref System.Reflection[0x2bf3520] -> mscorlib[0x2479700]: 29 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Security.Cryptography.Algorithms/4.0.0.0__b03f5f7f11d50a3a/System.Security.Cryptography.Algorithms.dll'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Security.Cryptography.Algorithms.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Security.Cryptography.Algorithms.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Security.Cryptography.Algorithms.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Security.Cryptography.Algorithms/4.0.0.0__b03f5f7f11d50a3a/System.Security.Cryptography.Algorithms.exe'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Security.Cryptography.Algorithms.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Security.Cryptography.Algorithms.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Security.Cryptography.Algorithms.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Security.Cryptography.Primitives/4.0.0.0__b03f5f7f11d50a3a/System.Security.Cryptography.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Security.Cryptography.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Security.Cryptography.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Security.Cryptography.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Security.Cryptography.Primitives/4.0.0.0__b03f5f7f11d50a3a/System.Security.Cryptography.Primitives.exe'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Security.Cryptography.Primitives.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Security.Cryptography.Primitives.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Security.Cryptography.Primitives.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Dynamic.Runtime/4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Dynamic.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll'. | |
Mono: Image addref System.Dynamic.Runtime[0x2ce5da0] -> /usr/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll[0x2ced490]: 2 | |
Mono: Assembly System.Dynamic.Runtime[0x2ce5da0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Dynamic.Runtime[0x2ce5da0]: 2 | |
Mono: Assembly Ref addref System.Dynamic.Runtime[0x2ce5da0] -> mscorlib[0x2479700]: 30 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.IO[0x2baf6d0]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Dynamic.Runtime[0x2ce5da0]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Threading/4.0.0.0__b03f5f7f11d50a3a/System.Threading.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Threading.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Threading.dll'. | |
Mono: Image addref System.Threading[0x2bb20c0] -> /usr/lib/mono/4.5/Facades/System.Threading.dll[0x2bb1480]: 2 | |
Mono: Assembly System.Threading[0x2bb20c0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Threading.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Threading[0x2bb20c0]: 2 | |
Mono: Assembly Ref addref System.Threading[0x2bb20c0] -> mscorlib[0x2479700]: 31 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Runtime.Extensions[0x2abdb20]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Globalization[0x2a8f900]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Resources.ResourceManager[0x2a268b0]: 4 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0]: 3 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Reflection.Metadata.dll'. | |
Mono: Image addref System.Reflection.Metadata[0x2cfc290] -> /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Reflection.Metadata.dll[0x2c486f0]: 2 | |
Mono: Assembly System.Reflection.Metadata[0x2cfc290] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Reflection.Metadata.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Reflection.Metadata[0x2cfc290]: 2 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Runtime[0x29beba0]: 5 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60] -> System.Reflection.Metadata[0x2cfc290]: 3 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Collections.Immutable[0x2a17170]: 5 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.IO[0x2baf6d0]: 4 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Resources.ResourceManager[0x2a268b0]: 5 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Reflection[0x2bf3520]: 3 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Runtime.Extensions[0x2abdb20]: 5 | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.IO.FileSystem.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.IO.FileSystem.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.IO.FileSystem.dll'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.IO.FileSystem.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.IO.FileSystem.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.IO.FileSystem.exe'. | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Text.Encoding[0x2d62ae0]: 4 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Runtime.InteropServices/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.InteropServices.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Runtime.InteropServices.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll'. | |
Mono: Image addref System.Runtime.InteropServices[0x2c06b20] -> /usr/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll[0x2c05ed0]: 2 | |
Mono: Assembly System.Runtime.InteropServices[0x2c06b20] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll'. | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Runtime.InteropServices[0x2c06b20]: 2 | |
Mono: Assembly Ref addref System.Runtime.InteropServices[0x2c06b20] -> mscorlib[0x2479700]: 32 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Reflection.Metadata[0x2cfc290]: 4 | |
Mono: Assembly Ref addref System.Collections[0x2a468d0] -> System[0x24e28e0]: 14 | |
Mono: Assembly Ref addref System.Runtime[0x29beba0] -> System[0x24e28e0]: 15 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Linq[0x2a51f10]: 3 | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp[0x29ac110] -> System.Collections.Immutable[0x2a17170]: 6 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Reflection[0x2bf3520]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Threading[0x2bb20c0]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Linq[0x2a51f10]: 4 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Collections[0x2a468d0]: 5 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Threading[0x2bb20c0]: 4 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Text.Encoding.Extensions[0x2da3510]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Reflection.Extensions/4.0.0.0__b03f5f7f11d50a3a/System.Reflection.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Reflection.Extensions.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Reflection.Extensions.dll'. | |
Mono: Image addref System.Reflection.Extensions[0x2ed7910] -> /usr/lib/mono/4.5/Facades/System.Reflection.Extensions.dll[0x2ed6cc0]: 2 | |
Mono: Assembly System.Reflection.Extensions[0x2ed7910] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Reflection.Extensions.dll'. | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Reflection.Extensions[0x2ed7910]: 2 | |
Mono: Assembly Ref addref System.Reflection.Extensions[0x2ed7910] -> mscorlib[0x2479700]: 33 | |
Mono: Assembly Ref addref System.Collections.Immutable[0x2a17170] -> System.Threading[0x2bb20c0]: 5 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Reflection.Primitives/4.0.0.0__b03f5f7f11d50a3a/System.Reflection.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Reflection.Primitives.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Reflection.Primitives.dll'. | |
Mono: Image addref System.Reflection.Primitives[0x2fb81d0] -> /usr/lib/mono/4.5/Facades/System.Reflection.Primitives.dll[0x2fb9860]: 2 | |
Mono: Assembly System.Reflection.Primitives[0x2fb81d0] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Reflection.Primitives.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Reflection.Primitives[0x2fb81d0]: 2 | |
Mono: Assembly Ref addref System.Reflection.Primitives[0x2fb81d0] -> mscorlib[0x2479700]: 34 | |
Mono: Assembly Ref addref System.Reflection.Metadata[0x2cfc290] -> System.Reflection.Primitives[0x2fb81d0]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Runtime/4.0.20.0__b03f5f7f11d50a3a/System.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Runtime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Runtime.dll'. | |
Mono: Assembly Ref addref Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0] -> System[0x24e28e0]: 16 | |
Mono: Unloading image /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll [0x3109680]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll [0x3109d50]. | |
Mono: Unloading image /usr/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll [0x31098b0]. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Reflection.Primitives[0x2fb81d0]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Runtime.InteropServices[0x2c06b20]: 3 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/System.Xml.XDocument/4.0.0.0__b03f5f7f11d50a3a/System.Xml.XDocument.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/System.Xml.XDocument.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/System.Xml.XDocument.dll'. | |
Mono: Image addref System.Xml.XDocument[0x36e9b50] -> /usr/lib/mono/4.5/Facades/System.Xml.XDocument.dll[0x36e8b30]: 2 | |
Mono: Assembly System.Xml.XDocument[0x36e9b50] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/usr/lib/mono/4.5/Facades/System.Xml.XDocument.dll'. | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Xml.XDocument[0x36e9b50]: 2 | |
Mono: Assembly Ref addref System.Xml.XDocument[0x36e9b50] -> System.Xml.Linq[0x2899d30]: 3 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis[0x29af1e0] -> System.Runtime.InteropServices[0x2c06b20]: 4 | |
Mono: Assembly Ref addref Microsoft.CodeAnalysis.CSharp[0x29d9470] -> System.Text.Encoding.Extensions[0x2da3510]: 4 | |
Mono: Image addref Host[0x417c140] -> data-0x41872d0[0x417cf80]: 1 | |
Mono: Assembly Host[0x417c140] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Ref addref Host[0x417c140] -> mscorlib[0x2479700]: 35 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/OrleansRuntime/1.0.0.0__070f47935e3ed133/OrleansRuntime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/OrleansRuntime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/OrleansRuntime.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/OrleansRuntime/1.0.0.0__070f47935e3ed133/OrleansRuntime.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/OrleansRuntime.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/OrleansRuntime.exe'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/packages/Microsoft.Orleans.OrleansRuntime/1.0.10/lib/net45/OrleansRuntime.dll'. | |
Mono: Image addref OrleansRuntime[0x4188850] -> /home/ashley/.dnx/packages/Microsoft.Orleans.OrleansRuntime/1.0.10/lib/net45/OrleansRuntime.dll[0x417dcf0]: 2 | |
Mono: Assembly OrleansRuntime[0x4188850] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/packages/Microsoft.Orleans.OrleansRuntime/1.0.10/lib/net45/OrleansRuntime.dll'. | |
Mono: Assembly Ref addref Host[0x417c140] -> OrleansRuntime[0x4188850]: 2 | |
Mono: Assembly Ref addref OrleansRuntime[0x4188850] -> mscorlib[0x2479700]: 36 | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/Orleans/1.0.0.0__070f47935e3ed133/Orleans.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/Orleans.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/Orleans.dll'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/gac/Orleans/1.0.0.0__070f47935e3ed133/Orleans.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/Orleans.exe'. | |
Mono: Assembly Loader probing location: '/usr/lib/mono/4.5/Facades/Orleans.exe'. | |
Mono: Assembly Loader probing location: '/home/ashley/.dnx/packages/Microsoft.Orleans.Core/1.0.10/lib/net45/Orleans.dll'. | |
Mono: Image addref Orleans[0x41a6360] -> /home/ashley/.dnx/packages/Microsoft.Orleans.Core/1.0.10/lib/net45/Orleans.dll[0x41a53a0]: 2 | |
Mono: Assembly Orleans[0x41a6360] added to domain Microsoft.Dnx.Host.Mono.dll, ref_count=1 | |
Mono: Assembly Loader loaded assembly from location: '/home/ashley/.dnx/packages/Microsoft.Orleans.Core/1.0.10/lib/net45/Orleans.dll'. | |
Mono: Assembly Ref addref OrleansRuntime[0x4188850] -> Orleans[0x41a6360]: 2 | |
Mono: Assembly Ref addref Orleans[0x41a6360] -> mscorlib[0x2479700]: 37 | |
Creating host... | |
Mono: The class Orleans.CodeGeneration.OrleansCodeGenerationTargetAttribute could not be loaded, used in Orleans, Version=1.0.0.0, Culture=neutral, PublicKeyToken=070f47935e3ed133 | |
Can't find custom attr constructor image: /home/ashley/.dnx/packages/Microsoft.Orleans.OrleansRuntime/1.0.10/lib/net45/OrleansRuntime.dll mtoken: 0x0a00000d | |
System.TypeLoadException: Could not load type 'Orleans.CodeGeneration.OrleansCodeGenerationTargetAttribute' from assembly 'Orleans, Version=1.0.0.0, Culture=neutral, PublicKeyToken=070f47935e3ed133'. | |
at OrleansDemo.Host.Program.InitSilo (System.String[] args) [0x00000] in <filename unknown>:0 | |
at OrleansDemo.Host.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 | |
at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) | |
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 | |
--- End of stack trace from previous location where exception was thrown --- | |
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 | |
at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute (System.Reflection.Assembly assembly, System.String[] args, IServiceProvider serviceProvider) [0x00000] in <filename unknown>:0 | |
at Microsoft.Dnx.ApplicationHost.Program.ExecuteMain (Microsoft.Dnx.ApplicationHost.DefaultHost host, System.String applicationName, System.String[] args) [0x00000] in <filename unknown>:0 | |
at Microsoft.Dnx.ApplicationHost.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 | |
--- End of stack trace from previous location where exception was thrown --- | |
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 | |
at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute (System.Reflection.Assembly assembly, System.String[] args, IServiceProvider serviceProvider) [0x00000] in <filename unknown>:0 | |
at Microsoft.Dnx.Host.Bootstrapper.RunAsync (System.Collections.Generic.List`1 args, IRuntimeEnvironment env, System.String appBase, System.Runtime.Versioning.FrameworkName targetFramework) [0x00000] in <filename unknown>:0 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly mscorlib[0x2479700], ref_count=37 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Host.Mono[0x24d7460], ref_count=1 | |
Mono: Unloading assembly Microsoft.Dnx.Host.Mono [0x24d7460]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Host[0x24e0710], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System[0x24e28e0], ref_count=16 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Core[0x24ff4a0], ref_count=10 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Runtime.Abstractions[0x258d150], ref_count=9 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Loader[0x25f4e60], ref_count=4 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Mono.Security[0x2605a30], ref_count=1 | |
Mono: Unloading assembly Mono.Security [0x2605a30]. | |
Mono: Unloading image /usr/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll [0x2604af0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.ApplicationHost[0x2630650], ref_count=1 | |
Mono: Unloading assembly Microsoft.Dnx.ApplicationHost [0x2630650]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.ApplicationHost.dll [0x262f4a0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Compilation.Abstractions[0x2681080], ref_count=6 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Runtime[0x268d140], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Compilation[0x2690d30], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Xml.Linq[0x2899d30], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Xml[0x288f540], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Compilation.CSharp[0x29ac110], ref_count=1 | |
Mono: Unloading assembly Microsoft.Dnx.Compilation.CSharp [0x29ac110]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.dll [0x29a8710]. | |
Mono: Unloading assembly Microsoft.Dnx.Compilation [0x2690d30]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.dll [0x268fd40]. | |
Mono: Unloading assembly Microsoft.Dnx.Runtime [0x268d140]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.dll [0x268c140]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.CodeAnalysis[0x29af1e0], ref_count=4 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Runtime[0x29beba0], ref_count=5 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Compilation.CSharp.Abstractions[0x29c67e0], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.Dnx.Compilation.CSharp.Common[0x29cdd60], ref_count=1 | |
Mono: Unloading assembly Microsoft.Dnx.Compilation.CSharp.Common [0x29cdd60]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Common.dll [0x29d8a70]. | |
Mono: Unloading assembly Microsoft.Dnx.Compilation.CSharp.Abstractions [0x29c67e0]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll [0x29c58c0]. | |
Mono: Unloading assembly Microsoft.Dnx.Compilation.Abstractions [0x2681080]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Compilation.Abstractions.dll [0x267ffc0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Microsoft.CodeAnalysis.CSharp[0x29d9470], ref_count=1 | |
Mono: Unloading assembly Microsoft.CodeAnalysis.CSharp [0x29d9470]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.CSharp.dll [0x29ceca0]. | |
Mono: Unloading assembly Microsoft.CodeAnalysis [0x29af1e0]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.CodeAnalysis.dll [0x29b4270]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Collections.Immutable[0x2a17170], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Collections.Concurrent[0x2a38700], ref_count=1 | |
Mono: Unloading assembly System.Collections.Concurrent [0x2a38700]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Collections.Concurrent.dll [0x2a37710]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Threading.Tasks.Parallel[0x2a3c3a0], ref_count=1 | |
Mono: Unloading assembly System.Threading.Tasks.Parallel [0x2a3c3a0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll [0x2a3b370]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Collections[0x2a468d0], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Xml.ReaderWriter[0x29f2210], ref_count=1 | |
Mono: Unloading assembly System.Xml.ReaderWriter [0x29f2210]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll [0x29f1480]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Resources.ResourceManager[0x2a268b0], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Linq[0x2a51f10], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Globalization[0x2a8f900], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Runtime.Extensions[0x2abdb20], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Text.Encoding[0x2d62ae0], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.IO[0x2baf6d0], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Threading.Tasks[0x2daf0f0], ref_count=1 | |
Mono: Unloading assembly System.Threading.Tasks [0x2daf0f0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Threading.Tasks.dll [0x2dae3b0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Text.Encoding.Extensions[0x2da3510], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Reflection[0x2bf3520], ref_count=2 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Dynamic.Runtime[0x2ce5da0], ref_count=1 | |
Mono: Unloading assembly System.Dynamic.Runtime [0x2ce5da0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll [0x2ced490]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Threading[0x2bb20c0], ref_count=3 | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Reflection.Metadata[0x2cfc290], ref_count=1 | |
Mono: Unloading assembly System.Reflection.Metadata [0x2cfc290]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Reflection.Metadata.dll [0x2c486f0]. | |
Mono: Unloading assembly System.IO [0x2baf6d0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.IO.dll [0x2baeaf0]. | |
Mono: Unloading assembly System.Collections.Immutable [0x2a17170]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/System.Collections.Immutable.dll [0x2a15cc0]. | |
Mono: Unloading assembly System.Runtime [0x29beba0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Runtime.dll [0x29bdce0]. | |
Mono: Unloading assembly System.Globalization [0x2a8f900]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Globalization.dll [0x2a8ecf0]. | |
Mono: Unloading assembly System.Linq [0x2a51f10]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Linq.dll [0x2a51290]. | |
Mono: Unloading assembly System.Text.Encoding [0x2d62ae0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Text.Encoding.dll [0x2d61e00]. | |
Mono: Unloading assembly System.Reflection [0x2bf3520]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Reflection.dll [0x2d858d0]. | |
Mono: Unloading assembly System.Collections [0x2a468d0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Collections.dll [0x2a45b80]. | |
Mono: Unloading assembly System.Resources.ResourceManager [0x2a268b0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll [0x2a25b40]. | |
Mono: Unloading assembly System.Threading [0x2bb20c0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Threading.dll [0x2bb1480]. | |
Mono: Unloading assembly System.Runtime.Extensions [0x2abdb20]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Runtime.Extensions.dll [0x2abcac0]. | |
Mono: Unloading assembly System.Text.Encoding.Extensions [0x2da3510]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll [0x2da28c0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Runtime.InteropServices[0x2c06b20], ref_count=1 | |
Mono: Unloading assembly System.Runtime.InteropServices [0x2c06b20]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll [0x2c05ed0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Reflection.Extensions[0x2ed7910], ref_count=1 | |
Mono: Unloading assembly System.Reflection.Extensions [0x2ed7910]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Reflection.Extensions.dll [0x2ed6cc0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Reflection.Primitives[0x2fb81d0], ref_count=1 | |
Mono: Unloading assembly System.Reflection.Primitives [0x2fb81d0]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Reflection.Primitives.dll [0x2fb9860]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly System.Xml.XDocument[0x36e9b50], ref_count=1 | |
Mono: Unloading assembly System.Xml.XDocument [0x36e9b50]. | |
Mono: Unloading image /usr/lib/mono/4.5/Facades/System.Xml.XDocument.dll [0x36e8b30]. | |
Mono: Unloading assembly System.Xml.Linq [0x2899d30]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll [0x2899410]. | |
Mono: Unloading assembly System.Xml [0x288f540]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll [0x288e610]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Host[0x417c140], ref_count=1 | |
Mono: Unloading assembly Host [0x417c140]. | |
Mono: Unloading image data-0x41872d0 [0x417cf80]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly OrleansRuntime[0x4188850], ref_count=1 | |
Mono: Unloading assembly OrleansRuntime [0x4188850]. | |
Mono: Unloading image /home/ashley/.dnx/packages/Microsoft.Orleans.OrleansRuntime/1.0.10/lib/net45/OrleansRuntime.dll [0x417dcf0]. | |
Mono: Unloading domain Microsoft.Dnx.Host.Mono.dll[0x2473f80], assembly Orleans[0x41a6360], ref_count=1 | |
Mono: Unloading assembly Orleans [0x41a6360]. | |
Mono: Unloading image /home/ashley/.dnx/packages/Microsoft.Orleans.Core/1.0.10/lib/net45/Orleans.dll [0x41a53a0]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.Mono.dll [0x24774c0]. | |
Mono: Unloading assembly Microsoft.Dnx.Host [0x24e0710]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Host.dll [0x24df6f0]. | |
Mono: Unloading assembly Microsoft.Dnx.Loader [0x25f4e60]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Loader.dll [0x258efb0]. | |
Mono: Unloading assembly Microsoft.Dnx.Runtime.Abstractions [0x258d150]. | |
Mono: Unloading image /home/ashley/.dnx/runtimes/dnx-mono.1.0.0-rc1-15838/bin/Microsoft.Dnx.Runtime.Abstractions.dll [0x258c4e0]. | |
Mono: Unloading assembly System.Core [0x24ff4a0]. | |
Mono: Unloading image /usr/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll [0x24fe4b0]. | |
Mono: Unloading assembly System [0x24e28e0]. | |
Mono: Unloading image /usr/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll [0x24e1690]. | |
Mono: Unloading assembly mscorlib [0x2479700]. | |
Mono: Unloading image /usr/lib/mono/4.5/mscorlib.dll [0x2478950]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment