--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Karl,
Thanks for coming back to me. I get the following warning (the app is a .NET core 2.1 website):
warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource.Redist 2.0.1' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
And when I get rabbit exceptions I can see the client is trying to call into this library and it assets as it is not found in the distribution. I can’t immediately reproduce this but will capture the traces etc. when it next occurs.
Regards
Mark

--
You received this message because you are subscribed to a topic in the Google Groups "rabbitmq-users" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/rabbitmq-users/vqXM0B0m48U/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
rabbitmq-user...@googlegroups.com.
Hi there,
Here are the pictures in hopefully more readable format.
$(TargetFramework) is defined as netcoreapp2.1 and I am wondering how this interacts with NET451 (which doesn’t seem defined in my code per intellisense)
Regards
Mark
From: rabbitm...@googlegroups.com <rabbitm...@googlegroups.com>
On Behalf Of Luke Bakken
Sent: 18 June 2018 18:49
To: rabbitmq-users <rabbitm...@googlegroups.com>
Subject: Re: [rabbitmq-users] Microsoft.Diagnostics.Tracing.EventSource.Redist
Hi Mark,
Unfortunately that image is too small to read - could you provide that exception info as a file attachment?
You can see here that Microsoft.Diagnostics.Tracing.EventSource.Redist is only referenced for the net451 target like Karl said:
https://github.com/rabbitmq/rabbitmq-dotnet-client/blob/60226be2c6c7d1544943df6f830a6498dd40e964/projects/client/RabbitMQ.Client/RabbitMQ.Client.csproj#L34-L38
And this appears to be the only place that library is referenced, and only if
NET451 is defined:
Thanks,
Luke
On Monday, June 18, 2018 at 9:05:34 AM UTC-7, Mark Heaton wrote:
Karl,
Thanks for coming back to me. I get the following warning (the app is a .NET core 2.1 website):
warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource.Redist 2.0.1' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
And when I get rabbit exceptions I can see the client is trying to call into this library and it assets as it is not found in the distribution. I can’t immediately reproduce this but will capture the traces etc. when it next occurs.
Regards
Mark
From: rabbitm...@googlegroups.com <rabbitm...@googlegroups.com> On Behalf Of Karl Nilsson
Sent: 18 June 2018 16:52
To: rabbitm...@googlegroups.com
Subject: Re: [rabbitmq-users] Microsoft.Diagnostics.Tracing.EventSource.Redist
Hi,
We will remove this dependency for the next major version (6.0). The .NET Core target isn't using this dependency, only net451 is so I'm not sure why that is causing a problem for you. Can you provide any more details?
Cheers
Karl
--
Luke,
Ok – I triggered an exception by bringing down the Rabbit Server with the client running.
System.IO.FileLoadException
HResult=0x80131040
Message=Could not load file or assembly 'Microsoft.Diagnostics.Tracing.EventSource, Version=1.1.28.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Source=RabbitMQ.Client
StackTrace:
at RabbitMQ.Client.ESLog.Error(String message, Exception ex)
at RabbitMQ.Client.Framing.Impl.Connection.LogCloseError(String error, Exception ex)
at RabbitMQ.Client.Framing.Impl.Connection.ClosingLoop()
at RabbitMQ.Client.Framing.Impl.Connection.MainLoop()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
Then I looked at
'Microsoft.Diagnostics.Tracing.EventSource vs. 'Microsoft.Diagnostics.Tracing.EventSource.Redist and realised that 'Microsoft.Diagnostics.Tracing.EventSource was not installed – an. I have now installed that. However both packages now complain:
1>D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\CBUSAlexa.csproj : warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource 1.1.28' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
1>D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\CBUSAlexa.csproj : warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource.Redist 2.0.1' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
Then I get this as my build:
1>------ Rebuild All started: Project: CBUSAlexa, Configuration: Debug Any CPU ------
1>D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\CBUSAlexa.csproj : warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource 1.1.28' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
1>D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\CBUSAlexa.csproj : warning NU1701: Package 'Microsoft.Diagnostics.Tracing.EventSource.Redist 2.0.1' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
1>Controllers\GoogleController.cs(26,42,26,46): warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
1>CBUSAlexa -> D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\bin\Debug\netcoreapp2.1\CBUSAlexa.dll
1>CBUSAlexa -> D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\bin\Debug\netcoreapp2.1\CBUSAlexa.Views.dll
1>EXEC : error : Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'IdentityServer4.Quickstart.UI.SecurityHeadersAttribute' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'IdentityServer4.Quickstart.UI.ConsentController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Reflection.BindingFlags' from assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'.
1>LoaderException:
1>System.TypeLoadException: Method 'ReadJson' in type 'CBUSAlexa.Models.AlexaPropertyConverter' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AccountController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AlexaCapabilitiesController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AlexaCBUSGroupMapsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AlexaCBUSLevelMapsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AlexaController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.AlexaEndpointsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.BraintreeController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.CBUSObjects' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.ConfigurationController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.ContentSecurityController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.DataProtectionStorageController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.EndpointManagerController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.GoogleController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.HomeController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.ManageController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.OrganisationController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.OrganisationsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.ProvisioningController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.ProvisioningRegionsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.SiteAirConZoneGroupsController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.SitesController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.TestingController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Controllers.GoDaddyController' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'HandleRequirementAsync' in type 'CBUSAlexa.Attributes.SiteAdministratorPolicyHandler' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'HandleRequirementAsync' in type 'CBUSAlexa.Attributes.OrganisationAdministratorPolicyHandler' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Attributes.BasicAuthenticationAttribute' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Attributes.EUPrivacyAttribute' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Attributes.LocalTimeAttribute' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Method 'OnActionExecutionAsync' in type 'CBUSAlexa.Attributes.RestrictToIPRangeAttribute' from assembly 'CBUSAlexa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>LoaderException:
1>System.TypeLoadException: Could not load type 'System.Object' from assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because the parent does not exist.
1>C:\Users\MarkHeaton\.nuget\packages\microsoft.diagnostics.tracing.eventregister\1.1.28\build\Microsoft.Diagnostics.Tracing.EventRegister.targets(132,5): error MSB3073: The command ""C:\Users\MarkHeaton\.nuget\packages\microsoft.diagnostics.tracing.eventregister\1.1.28\build\eventRegister.exe" -DumpRegDlls @"D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\bin\Debug\netcoreapp2.1\CBUSAlexa.eventRegister.rsp" "D:\Users\MarkHeaton\Documents\Visual Studio 2017\Projects\CBUSAlexa\CBUSAlexa\bin\Debug\netcoreapp2.1\CBUSAlexa.dll" " exited with code 1.
1>Done building project "CBUSAlexa.csproj" -- FAILED.
Regards
Mark
From: rabbitm...@googlegroups.com <rabbitm...@googlegroups.com>
On Behalf Of Luke Bakken
Sent: 18 June 2018 20:25
To: rabbitmq-users <rabbitm...@googlegroups.com>
Subject: Re: [rabbitmq-users] Microsoft.Diagnostics.Tracing.EventSource.Redist
Hi Mark,
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
Luke,
I have dropped all of the RabbitMQ dependencies and recreated them and that dependency seems to have dropped
Thanks for your help
Mark
From: rabbitm...@googlegroups.com <rabbitm...@googlegroups.com>
On Behalf Of Luke Bakken
Sent: 18 June 2018 22:23
To: rabbitmq-users <rabbitm...@googlegroups.com>
Subject: Re: [rabbitmq-users] Microsoft.Diagnostics.Tracing.EventSource.Redist
Hi Mark,
--
To unsubscribe from this group and all its topics, send an email to rabbitmq-use...@googlegroups.com.
To post to this group, send email to rabbit...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.