runtime: Simple Hello World app crashes with gCurrentThreadInfo: symbol not found on OSv
Hi,
OSv (https://github.com/cloudius-systems/osv) is a unikernel that is capable of running Linux binaries as long as they do not use fork/execve. OSv is able to run both managed runtimes like Java, Python, Node or Ruby as well as the native apps written in languages like C/C++, Rust, Golang, etc.
In the last couple of weeks, I have been trying to run simple .NET Hello World app on OSv:
using System;
namespace HelloApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World from OSv!");
}
}
}
but unfortunately I came across some issues where I need some help or advice.
So to run this app on OSv I first create the Linux package like so:
dotnet publish -r linux-x64
and copy the entire output directory to the OSv image.
My initial attempt resulted in this type of error:
OSv v0.54.0-30-gfaf6de6a
eth0: 192.168.122.15
Booted up in 138.77 ms
Cmdline: /HelloApp
-> Loaded object: /libvdso.so
-> Loaded object: /HelloApp
-> Loaded object: /usr/lib/libstdc++.so.6
-> Loaded object: /usr/lib/libgcc_s.so.1
-> Loaded object: /libhostfxr.so
-> Loaded object: /libhostpolicy.so
-> Loaded object: /libcoreclr.so
/libcoreclr.so: failed looking up symbol gCurrentThreadInfo
[backtrace]
0x0000000040356189 <elf::object::symbol(unsigned int, bool)+1001>
0x00000000403a2386 <elf::object::arch_relocate_rela(unsigned int, unsigned int, void*, long)+614>
0x00000000403528e4 <elf::object::relocate_rela()+196>
0x0000000040353be7 <elf::object::relocate()+199>
0x0000000040357492 <elf::program::load_object(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::vector<std::shared_ptr<elf::object>, std::allocator<std::shared_ptr<elf::object> > >&)+1618>
0x0000000040357d42 <elf::program::get_library(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, bool)+322>
0x000000004045eee8 <dlopen+136>
0x0000100000a39a25 <???+10721829>
The symbol gCurrentThreadInfo DOES actually exist in the libcoreclr.so ELF file. But when I expect it with readelf, it reports a problem:
readelf -s libcoreclr.so | grep gCurrentThreadInfo
readelf: Warning: local symbol 31 found at index >= .dynsym's sh_info value of 1
31: 0000000000000000 24 TLS LOCAL HIDDEN 19 gCurrentThreadInfo
9799: 0000000000000000 24 TLS LOCAL HIDDEN 19 gCurrentThreadInfo
So the first occurrence of gCurrentThreadInfo is in the ‘.dynsym’ table which is weird, the second one is in the .symtab. According to the ELF spec this is not legal:
“The global symbols immediately follow the local symbols in the symbol table. The first global symbol is identified by the symbol table sh_info value. Local and global symbols are always kept separate in this manner, and cannot be mixed together.”
But still, the same app works just fine on Linux (Ubuntu 19.04) so somehow Linux dynamic linker is able to deal with this ELF. OSv on other hand comes with its own dynamic linker that cannot deal with local symbol found in dynsym table. Maybe it should?
Relatedly I have found seemingly similar coreclr issue - dotnet/runtime#12391 - that was related to Apline ARM linux.
In any case I hacked OSv dynamic linker to simply ignore the first occurrence (31) of gCurrentThreadInfo. The app seems to proceed further but crases even worse with a corrupt stack:
OSv v0.54.0-30-gfaf6de6a
eth0: 192.168.122.15
Booted up in 135.65 ms
Cmdline: /HelloApp
-> Loaded object: /libvdso.so
-> Loaded object: /HelloApp
-> Loaded object: /usr/lib/libstdc++.so.6
-> Loaded object: /usr/lib/libgcc_s.so.1
Tracing enabled @ Wed Nov 13 04:12:40 2019
--- Invoked apphost [version: 3.0.0, commit hash: 7d57652f33493fa022125b7f63aad0d70c52d810] main = {
/HelloApp
}
The managed DLL bound to this executable is: 'HelloApp.dll'
Resolved fxr [/libhostfxr.so]...
-> Loaded object: /libhostfxr.so
Invoking fx resolver [/libhostfxr.so] v2
Host path: [/HelloApp]
Dotnet path: [/]
App path: [/HelloApp.dll]
Tracing enabled @ Wed Nov 13 04:12:40 2019
--- Invoked hostfxr_main_startupinfo [commit hash: 7d57652f33493fa022125b7f63aad0d70c52d810]
Checking if CoreCLR path exists=[/libcoreclr.so]
Detecting mode... CoreCLR present in dotnet root [/] and checking if [HelloApp.deps.json] file present=[1]
--- Executing in a native executable mode...
Using dotnet root path [/]
App runtimeconfig.json from [/HelloApp.dll]
Runtime config is cfg=/HelloApp.runtimeconfig.json dev=/HelloApp.runtimeconfig.dev.json
Attempting to read runtime config: /HelloApp.runtimeconfig.json
Attempting to read dev runtime config: /HelloApp.runtimeconfig.dev.json
Runtime config [/HelloApp.runtimeconfig.json] is valid=[1]
Executing as a self-contained app as per config file [/HelloApp.runtimeconfig.json]
--- Resolving libhostpolicy.so version from deps json [/HelloApp.deps.json]
Resolved version from dependency manifest file [/HelloApp.deps.json]
Dependency manifest /HelloApp.deps.json does not contain an entry for runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy
The expected libhostpolicy.so directory is [/]
-> Loaded object: /libhostpolicy.so
Tracing enabled @ Wed Nov 13 04:12:40 2019
Reading from host interface version: [0x16041101:240] to initialize policy version: [0x16041101:240]
--- Invoked hostpolicy [commit hash: 7d57652f33493fa022125b7f63aad0d70c52d810] [runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy,3.0.0,runtimes/linux-x64/native][x64] corehost_main = {
/HelloApp
}
Deps file:
Directory core servicing at [] was not specified or found
Fallback directory core servicing at [opt/coreservicing] was not found
-- arguments_t: host_path='/HelloApp' app_root='/' deps='/HelloApp.deps.json' core_svc='' mgd_app='/HelloApp.dll'
-- arguments_t: dotnet shared store: ''
Using /HelloApp.deps.json deps file
Loading deps file... /HelloApp.deps.json as framework dependent=[0]
Adding runtime asset HelloApp.dll assemblyVersion= fileVersion= from HelloApp/1.0.0
Adding runtime asset Microsoft.CSharp.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset Microsoft.VisualBasic.Core.dll assemblyVersion=10.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset Microsoft.VisualBasic.dll assemblyVersion=10.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset Microsoft.Win32.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset Microsoft.Win32.Registry.dll assemblyVersion=4.1.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.AppContext.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Buffers.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Collections.Concurrent.dll assemblyVersion=4.0.14.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Collections.Immutable.dll assemblyVersion=1.2.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Collections.NonGeneric.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Collections.Specialized.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Collections.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.Annotations.dll assemblyVersion=4.3.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.DataAnnotations.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.EventBasedAsync.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.Primitives.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.TypeConverter.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ComponentModel.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Configuration.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Console.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Core.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Data.Common.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Data.DataSetExtensions.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Data.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.Contracts.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.Debug.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.DiagnosticSource.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.FileVersionInfo.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.Process.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.StackTrace.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.TextWriterTraceListener.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.Tools.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.TraceSource.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Diagnostics.Tracing.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Drawing.Primitives.dll assemblyVersion=4.2.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Drawing.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Dynamic.Runtime.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Globalization.Calendars.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Globalization.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Globalization.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Compression.Brotli.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Compression.FileSystem.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Compression.ZipFile.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Compression.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.FileSystem.AccessControl.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.FileSystem.DriveInfo.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.FileSystem.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.FileSystem.Watcher.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.FileSystem.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.IsolatedStorage.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.MemoryMappedFiles.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Pipes.AccessControl.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.Pipes.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.UnmanagedMemoryStream.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.IO.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Linq.Expressions.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Linq.Parallel.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Linq.Queryable.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Linq.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Memory.dll assemblyVersion=4.2.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Http.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.HttpListener.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Mail.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.NameResolution.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.NetworkInformation.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Ping.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Requests.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Security.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.ServicePoint.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.Sockets.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.WebClient.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.WebHeaderCollection.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.WebProxy.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.WebSockets.Client.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.WebSockets.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Net.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Numerics.Vectors.dll assemblyVersion=4.1.5.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Numerics.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ObjectModel.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Private.DataContractSerialization.dll assemblyVersion=4.1.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Private.Uri.dll assemblyVersion=4.0.5.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Private.Xml.Linq.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Private.Xml.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.DispatchProxy.dll assemblyVersion=4.0.5.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Emit.ILGeneration.dll assemblyVersion=4.1.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Emit.Lightweight.dll assemblyVersion=4.1.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Emit.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Metadata.dll assemblyVersion=1.4.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.TypeExtensions.dll assemblyVersion=4.1.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Reflection.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Resources.Reader.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Resources.ResourceManager.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Resources.Writer.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.CompilerServices.Unsafe.dll assemblyVersion=4.0.5.0 fileVersion=4.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.CompilerServices.VisualC.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Extensions.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Handles.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.InteropServices.RuntimeInformation.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.InteropServices.WindowsRuntime.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.InteropServices.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Intrinsics.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Loader.dll assemblyVersion=4.1.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Numerics.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Serialization.Formatters.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Serialization.Json.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Serialization.Primitives.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Serialization.Xml.dll assemblyVersion=4.1.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.WindowsRuntime.UI.Xaml.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.WindowsRuntime.dll assemblyVersion=4.0.14.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Runtime.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.AccessControl.dll assemblyVersion=4.1.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Claims.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.Algorithms.dll assemblyVersion=4.3.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.Cng.dll assemblyVersion=4.3.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.Csp.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.Encoding.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.OpenSsl.dll assemblyVersion=4.1.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Cryptography.X509Certificates.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Principal.Windows.dll assemblyVersion=4.1.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.Principal.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.SecureString.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Security.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ServiceModel.Web.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ServiceProcess.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.Encoding.CodePages.dll assemblyVersion=4.1.2.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.Encoding.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.Encoding.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.Encodings.Web.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.Json.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Text.RegularExpressions.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Channels.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Overlapped.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Tasks.Dataflow.dll assemblyVersion=4.6.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Tasks.Extensions.dll assemblyVersion=4.3.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Tasks.Parallel.dll assemblyVersion=4.0.3.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Tasks.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Thread.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.ThreadPool.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.Timer.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Threading.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Transactions.Local.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Transactions.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.ValueTuple.dll assemblyVersion=4.0.4.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Web.HttpUtility.dll assemblyVersion=4.0.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Web.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Windows.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.Linq.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.ReaderWriter.dll assemblyVersion=4.2.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.XDocument.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.XPath.XDocument.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.XPath.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.XmlDocument.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.XmlSerializer.dll assemblyVersion=4.1.1.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.Xml.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset System.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset WindowsBase.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset mscorlib.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding runtime asset netstandard.dll assemblyVersion=2.1.0.0 fileVersion=4.700.19.46214 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset SOS_README.md assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Globalization.Native.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.IO.Compression.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.IO.Compression.Native.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Native.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Net.Http.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Net.Http.Native.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Net.Security.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Net.Security.Native.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Private.CoreLib.dll assemblyVersion=4.0.0.0 fileVersion=4.700.19.46205 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Security.Cryptography.Native.OpenSsl.a assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset System.Security.Cryptography.Native.OpenSsl.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset createdump assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libclrjit.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libcoreclr.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libdbgshim.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libhostfxr.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libhostpolicy.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libmscordaccore.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Adding native asset libmscordbi.so assemblyVersion= fileVersion=0.0.0.0 from runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Reconciling library HelloApp/1.0.0
Parsed runtime deps entry 0 for asset name: HelloApp from project: HelloApp, library version: 1.0.0, relpath: HelloApp.dll, assemblyVersion , fileVersion
Reconciling library runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0
Parsed runtime deps entry 1 for asset name: Microsoft.CSharp from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: Microsoft.CSharp.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 2 for asset name: Microsoft.VisualBasic.Core from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: Microsoft.VisualBasic.Core.dll, assemblyVersion 10.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 3 for asset name: Microsoft.VisualBasic from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: Microsoft.VisualBasic.dll, assemblyVersion 10.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 4 for asset name: Microsoft.Win32.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: Microsoft.Win32.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 5 for asset name: Microsoft.Win32.Registry from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: Microsoft.Win32.Registry.dll, assemblyVersion 4.1.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 6 for asset name: System.AppContext from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.AppContext.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 7 for asset name: System.Buffers from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Buffers.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 8 for asset name: System.Collections.Concurrent from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Collections.Concurrent.dll, assemblyVersion 4.0.14.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 9 for asset name: System.Collections.Immutable from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Collections.Immutable.dll, assemblyVersion 1.2.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 10 for asset name: System.Collections.NonGeneric from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Collections.NonGeneric.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 11 for asset name: System.Collections.Specialized from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Collections.Specialized.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 12 for asset name: System.Collections from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Collections.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 13 for asset name: System.ComponentModel.Annotations from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.Annotations.dll, assemblyVersion 4.3.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 14 for asset name: System.ComponentModel.DataAnnotations from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.DataAnnotations.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 15 for asset name: System.ComponentModel.EventBasedAsync from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.EventBasedAsync.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 16 for asset name: System.ComponentModel.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.Primitives.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 17 for asset name: System.ComponentModel.TypeConverter from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.TypeConverter.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 18 for asset name: System.ComponentModel from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ComponentModel.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 19 for asset name: System.Configuration from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Configuration.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 20 for asset name: System.Console from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Console.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 21 for asset name: System.Core from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Core.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 22 for asset name: System.Data.Common from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Data.Common.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 23 for asset name: System.Data.DataSetExtensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Data.DataSetExtensions.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 24 for asset name: System.Data from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Data.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 25 for asset name: System.Diagnostics.Contracts from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.Contracts.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 26 for asset name: System.Diagnostics.Debug from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.Debug.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 27 for asset name: System.Diagnostics.DiagnosticSource from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.DiagnosticSource.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 28 for asset name: System.Diagnostics.FileVersionInfo from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.FileVersionInfo.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 29 for asset name: System.Diagnostics.Process from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.Process.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 30 for asset name: System.Diagnostics.StackTrace from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.StackTrace.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 31 for asset name: System.Diagnostics.TextWriterTraceListener from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.TextWriterTraceListener.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 32 for asset name: System.Diagnostics.Tools from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.Tools.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 33 for asset name: System.Diagnostics.TraceSource from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.TraceSource.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 34 for asset name: System.Diagnostics.Tracing from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Diagnostics.Tracing.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 35 for asset name: System.Drawing.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Drawing.Primitives.dll, assemblyVersion 4.2.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 36 for asset name: System.Drawing from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Drawing.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 37 for asset name: System.Dynamic.Runtime from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Dynamic.Runtime.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 38 for asset name: System.Globalization.Calendars from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Globalization.Calendars.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 39 for asset name: System.Globalization.Extensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Globalization.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 40 for asset name: System.Globalization from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Globalization.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 41 for asset name: System.IO.Compression.Brotli from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.Brotli.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 42 for asset name: System.IO.Compression.FileSystem from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.FileSystem.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 43 for asset name: System.IO.Compression.ZipFile from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.ZipFile.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 44 for asset name: System.IO.Compression from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 45 for asset name: System.IO.FileSystem.AccessControl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.FileSystem.AccessControl.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 46 for asset name: System.IO.FileSystem.DriveInfo from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.FileSystem.DriveInfo.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 47 for asset name: System.IO.FileSystem.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.FileSystem.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 48 for asset name: System.IO.FileSystem.Watcher from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.FileSystem.Watcher.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 49 for asset name: System.IO.FileSystem from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.FileSystem.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 50 for asset name: System.IO.IsolatedStorage from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.IsolatedStorage.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 51 for asset name: System.IO.MemoryMappedFiles from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.MemoryMappedFiles.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 52 for asset name: System.IO.Pipes.AccessControl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Pipes.AccessControl.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 53 for asset name: System.IO.Pipes from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Pipes.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 54 for asset name: System.IO.UnmanagedMemoryStream from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.UnmanagedMemoryStream.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 55 for asset name: System.IO from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 56 for asset name: System.Linq.Expressions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Linq.Expressions.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 57 for asset name: System.Linq.Parallel from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Linq.Parallel.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 58 for asset name: System.Linq.Queryable from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Linq.Queryable.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 59 for asset name: System.Linq from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Linq.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 60 for asset name: System.Memory from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Memory.dll, assemblyVersion 4.2.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 61 for asset name: System.Net.Http from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Http.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 62 for asset name: System.Net.HttpListener from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.HttpListener.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 63 for asset name: System.Net.Mail from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Mail.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 64 for asset name: System.Net.NameResolution from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.NameResolution.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 65 for asset name: System.Net.NetworkInformation from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.NetworkInformation.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 66 for asset name: System.Net.Ping from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Ping.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 67 for asset name: System.Net.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 68 for asset name: System.Net.Requests from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Requests.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 69 for asset name: System.Net.Security from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Security.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 70 for asset name: System.Net.ServicePoint from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.ServicePoint.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 71 for asset name: System.Net.Sockets from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Sockets.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 72 for asset name: System.Net.WebClient from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.WebClient.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 73 for asset name: System.Net.WebHeaderCollection from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.WebHeaderCollection.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 74 for asset name: System.Net.WebProxy from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.WebProxy.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 75 for asset name: System.Net.WebSockets.Client from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.WebSockets.Client.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 76 for asset name: System.Net.WebSockets from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.WebSockets.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 77 for asset name: System.Net from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 78 for asset name: System.Numerics.Vectors from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Numerics.Vectors.dll, assemblyVersion 4.1.5.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 79 for asset name: System.Numerics from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Numerics.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 80 for asset name: System.ObjectModel from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ObjectModel.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 81 for asset name: System.Private.DataContractSerialization from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Private.DataContractSerialization.dll, assemblyVersion 4.1.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 82 for asset name: System.Private.Uri from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Private.Uri.dll, assemblyVersion 4.0.5.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 83 for asset name: System.Private.Xml.Linq from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Private.Xml.Linq.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 84 for asset name: System.Private.Xml from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Private.Xml.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 85 for asset name: System.Reflection.DispatchProxy from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.DispatchProxy.dll, assemblyVersion 4.0.5.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 86 for asset name: System.Reflection.Emit.ILGeneration from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Emit.ILGeneration.dll, assemblyVersion 4.1.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 87 for asset name: System.Reflection.Emit.Lightweight from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Emit.Lightweight.dll, assemblyVersion 4.1.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 88 for asset name: System.Reflection.Emit from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Emit.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 89 for asset name: System.Reflection.Extensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 90 for asset name: System.Reflection.Metadata from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Metadata.dll, assemblyVersion 1.4.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 91 for asset name: System.Reflection.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 92 for asset name: System.Reflection.TypeExtensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.TypeExtensions.dll, assemblyVersion 4.1.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 93 for asset name: System.Reflection from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Reflection.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 94 for asset name: System.Resources.Reader from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Resources.Reader.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 95 for asset name: System.Resources.ResourceManager from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Resources.ResourceManager.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 96 for asset name: System.Resources.Writer from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Resources.Writer.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 97 for asset name: System.Runtime.CompilerServices.Unsafe from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.CompilerServices.Unsafe.dll, assemblyVersion 4.0.5.0, fileVersion 4.0.0.0
Parsed runtime deps entry 98 for asset name: System.Runtime.CompilerServices.VisualC from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.CompilerServices.VisualC.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 99 for asset name: System.Runtime.Extensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Extensions.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 100 for asset name: System.Runtime.Handles from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Handles.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 101 for asset name: System.Runtime.InteropServices.RuntimeInformation from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.InteropServices.RuntimeInformation.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 102 for asset name: System.Runtime.InteropServices.WindowsRuntime from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.InteropServices.WindowsRuntime.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 103 for asset name: System.Runtime.InteropServices from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.InteropServices.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 104 for asset name: System.Runtime.Intrinsics from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Intrinsics.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 105 for asset name: System.Runtime.Loader from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Loader.dll, assemblyVersion 4.1.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 106 for asset name: System.Runtime.Numerics from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Numerics.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 107 for asset name: System.Runtime.Serialization.Formatters from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Serialization.Formatters.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 108 for asset name: System.Runtime.Serialization.Json from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Serialization.Json.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 109 for asset name: System.Runtime.Serialization.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Serialization.Primitives.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 110 for asset name: System.Runtime.Serialization.Xml from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Serialization.Xml.dll, assemblyVersion 4.1.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 111 for asset name: System.Runtime.Serialization from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 112 for asset name: System.Runtime.WindowsRuntime.UI.Xaml from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.WindowsRuntime.UI.Xaml.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 113 for asset name: System.Runtime.WindowsRuntime from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.WindowsRuntime.dll, assemblyVersion 4.0.14.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 114 for asset name: System.Runtime from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Runtime.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 115 for asset name: System.Security.AccessControl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.AccessControl.dll, assemblyVersion 4.1.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 116 for asset name: System.Security.Claims from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Claims.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 117 for asset name: System.Security.Cryptography.Algorithms from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Algorithms.dll, assemblyVersion 4.3.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 118 for asset name: System.Security.Cryptography.Cng from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Cng.dll, assemblyVersion 4.3.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 119 for asset name: System.Security.Cryptography.Csp from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Csp.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 120 for asset name: System.Security.Cryptography.Encoding from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Encoding.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 121 for asset name: System.Security.Cryptography.OpenSsl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.OpenSsl.dll, assemblyVersion 4.1.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 122 for asset name: System.Security.Cryptography.Primitives from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 123 for asset name: System.Security.Cryptography.X509Certificates from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.X509Certificates.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 124 for asset name: System.Security.Principal.Windows from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Principal.Windows.dll, assemblyVersion 4.1.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 125 for asset name: System.Security.Principal from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Principal.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 126 for asset name: System.Security.SecureString from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.SecureString.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 127 for asset name: System.Security from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 128 for asset name: System.ServiceModel.Web from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ServiceModel.Web.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 129 for asset name: System.ServiceProcess from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ServiceProcess.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 130 for asset name: System.Text.Encoding.CodePages from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.Encoding.CodePages.dll, assemblyVersion 4.1.2.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 131 for asset name: System.Text.Encoding.Extensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.Encoding.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 132 for asset name: System.Text.Encoding from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.Encoding.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 133 for asset name: System.Text.Encodings.Web from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.Encodings.Web.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 134 for asset name: System.Text.Json from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.Json.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 135 for asset name: System.Text.RegularExpressions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Text.RegularExpressions.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 136 for asset name: System.Threading.Channels from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Channels.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 137 for asset name: System.Threading.Overlapped from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Overlapped.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 138 for asset name: System.Threading.Tasks.Dataflow from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Tasks.Dataflow.dll, assemblyVersion 4.6.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 139 for asset name: System.Threading.Tasks.Extensions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Tasks.Extensions.dll, assemblyVersion 4.3.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 140 for asset name: System.Threading.Tasks.Parallel from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Tasks.Parallel.dll, assemblyVersion 4.0.3.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 141 for asset name: System.Threading.Tasks from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Tasks.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 142 for asset name: System.Threading.Thread from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Thread.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 143 for asset name: System.Threading.ThreadPool from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.ThreadPool.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 144 for asset name: System.Threading.Timer from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.Timer.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 145 for asset name: System.Threading from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Threading.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 146 for asset name: System.Transactions.Local from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Transactions.Local.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 147 for asset name: System.Transactions from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Transactions.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 148 for asset name: System.ValueTuple from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.ValueTuple.dll, assemblyVersion 4.0.4.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 149 for asset name: System.Web.HttpUtility from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Web.HttpUtility.dll, assemblyVersion 4.0.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 150 for asset name: System.Web from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Web.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 151 for asset name: System.Windows from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Windows.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 152 for asset name: System.Xml.Linq from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.Linq.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 153 for asset name: System.Xml.ReaderWriter from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.ReaderWriter.dll, assemblyVersion 4.2.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 154 for asset name: System.Xml.Serialization from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 155 for asset name: System.Xml.XDocument from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.XDocument.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 156 for asset name: System.Xml.XPath.XDocument from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.XPath.XDocument.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 157 for asset name: System.Xml.XPath from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.XPath.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 158 for asset name: System.Xml.XmlDocument from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.XmlDocument.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 159 for asset name: System.Xml.XmlSerializer from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.XmlSerializer.dll, assemblyVersion 4.1.1.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 160 for asset name: System.Xml from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Xml.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 161 for asset name: System from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 162 for asset name: WindowsBase from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: WindowsBase.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 163 for asset name: mscorlib from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: mscorlib.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46214
Parsed runtime deps entry 164 for asset name: netstandard from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: netstandard.dll, assemblyVersion 2.1.0.0, fileVersion 4.700.19.46214
Parsed native deps entry 0 for asset name: SOS_README from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: SOS_README.md, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 1 for asset name: System.Globalization.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Globalization.Native.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 2 for asset name: System.IO.Compression.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 3 for asset name: System.IO.Compression.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.IO.Compression.Native.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 4 for asset name: System.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 5 for asset name: System.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Native.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 6 for asset name: System.Net.Http.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Http.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 7 for asset name: System.Net.Http.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Http.Native.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 8 for asset name: System.Net.Security.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Security.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 9 for asset name: System.Net.Security.Native from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Net.Security.Native.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 10 for asset name: System.Private.CoreLib from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Private.CoreLib.dll, assemblyVersion 4.0.0.0, fileVersion 4.700.19.46205
Parsed native deps entry 11 for asset name: System.Security.Cryptography.Native.OpenSsl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Native.OpenSsl.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 12 for asset name: System.Security.Cryptography.Native.OpenSsl from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: System.Security.Cryptography.Native.OpenSsl.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 13 for asset name: createdump from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: createdump, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 14 for asset name: libclrjit from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libclrjit.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 15 for asset name: libcoreclr from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libcoreclr.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 16 for asset name: libdbgshim from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libdbgshim.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 17 for asset name: libhostfxr from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libhostfxr.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 18 for asset name: libhostpolicy from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libhostpolicy.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 19 for asset name: libmscordaccore from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libmscordaccore.so, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 20 for asset name: libmscordbi from runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, library version: 3.0.0, relpath: libmscordbi.so, assemblyVersion , fileVersion 0.0.0.0
The rid fallback graph is: {
}
-- Listing probe configurations...
probe_config_t: probe=[] deps-dir-probe=[1]
Adding tpa entry: /HelloApp.dll, AssemblyVersion: , FileVersion:
Processing TPA for deps entry [HelloApp, 1.0.0, HelloApp.dll]
Considering entry [HelloApp/1.0.0/HelloApp.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /HelloApp.dll
Probed deps dir and matched '/HelloApp.dll'
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, Microsoft.CSharp.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/Microsoft.CSharp.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Microsoft.CSharp.dll
Probed deps dir and matched '/Microsoft.CSharp.dll'
Adding tpa entry: /Microsoft.CSharp.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, Microsoft.VisualBasic.Core.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/Microsoft.VisualBasic.Core.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Microsoft.VisualBasic.Core.dll
Probed deps dir and matched '/Microsoft.VisualBasic.Core.dll'
Adding tpa entry: /Microsoft.VisualBasic.Core.dll, AssemblyVersion: 10.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, Microsoft.VisualBasic.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/Microsoft.VisualBasic.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Microsoft.VisualBasic.dll
Probed deps dir and matched '/Microsoft.VisualBasic.dll'
Adding tpa entry: /Microsoft.VisualBasic.dll, AssemblyVersion: 10.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, Microsoft.Win32.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/Microsoft.Win32.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Microsoft.Win32.Primitives.dll
Probed deps dir and matched '/Microsoft.Win32.Primitives.dll'
Adding tpa entry: /Microsoft.Win32.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, Microsoft.Win32.Registry.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/Microsoft.Win32.Registry.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Microsoft.Win32.Registry.dll
Probed deps dir and matched '/Microsoft.Win32.Registry.dll'
Adding tpa entry: /Microsoft.Win32.Registry.dll, AssemblyVersion: 4.1.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.AppContext.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.AppContext.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.AppContext.dll
Probed deps dir and matched '/System.AppContext.dll'
Adding tpa entry: /System.AppContext.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Buffers.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Buffers.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Buffers.dll
Probed deps dir and matched '/System.Buffers.dll'
Adding tpa entry: /System.Buffers.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Collections.Concurrent.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Collections.Concurrent.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Collections.Concurrent.dll
Probed deps dir and matched '/System.Collections.Concurrent.dll'
Adding tpa entry: /System.Collections.Concurrent.dll, AssemblyVersion: 4.0.14.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Collections.Immutable.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Collections.Immutable.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Collections.Immutable.dll
Probed deps dir and matched '/System.Collections.Immutable.dll'
Adding tpa entry: /System.Collections.Immutable.dll, AssemblyVersion: 1.2.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Collections.NonGeneric.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Collections.NonGeneric.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Collections.NonGeneric.dll
Probed deps dir and matched '/System.Collections.NonGeneric.dll'
Adding tpa entry: /System.Collections.NonGeneric.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Collections.Specialized.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Collections.Specialized.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Collections.Specialized.dll
Probed deps dir and matched '/System.Collections.Specialized.dll'
Adding tpa entry: /System.Collections.Specialized.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Collections.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Collections.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Collections.dll
Probed deps dir and matched '/System.Collections.dll'
Adding tpa entry: /System.Collections.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.Annotations.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.Annotations.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.Annotations.dll
Probed deps dir and matched '/System.ComponentModel.Annotations.dll'
Adding tpa entry: /System.ComponentModel.Annotations.dll, AssemblyVersion: 4.3.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.DataAnnotations.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.DataAnnotations.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.DataAnnotations.dll
Probed deps dir and matched '/System.ComponentModel.DataAnnotations.dll'
Adding tpa entry: /System.ComponentModel.DataAnnotations.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.EventBasedAsync.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.EventBasedAsync.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.EventBasedAsync.dll
Probed deps dir and matched '/System.ComponentModel.EventBasedAsync.dll'
Adding tpa entry: /System.ComponentModel.EventBasedAsync.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.Primitives.dll
Probed deps dir and matched '/System.ComponentModel.Primitives.dll'
Adding tpa entry: /System.ComponentModel.Primitives.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.TypeConverter.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.TypeConverter.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.TypeConverter.dll
Probed deps dir and matched '/System.ComponentModel.TypeConverter.dll'
Adding tpa entry: /System.ComponentModel.TypeConverter.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ComponentModel.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ComponentModel.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ComponentModel.dll
Probed deps dir and matched '/System.ComponentModel.dll'
Adding tpa entry: /System.ComponentModel.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Configuration.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Configuration.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Configuration.dll
Probed deps dir and matched '/System.Configuration.dll'
Adding tpa entry: /System.Configuration.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Console.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Console.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Console.dll
Probed deps dir and matched '/System.Console.dll'
Adding tpa entry: /System.Console.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Core.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Core.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Core.dll
Probed deps dir and matched '/System.Core.dll'
Adding tpa entry: /System.Core.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Data.Common.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Data.Common.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Data.Common.dll
Probed deps dir and matched '/System.Data.Common.dll'
Adding tpa entry: /System.Data.Common.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Data.DataSetExtensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Data.DataSetExtensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Data.DataSetExtensions.dll
Probed deps dir and matched '/System.Data.DataSetExtensions.dll'
Adding tpa entry: /System.Data.DataSetExtensions.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Data.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Data.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Data.dll
Probed deps dir and matched '/System.Data.dll'
Adding tpa entry: /System.Data.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.Contracts.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.Contracts.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.Contracts.dll
Probed deps dir and matched '/System.Diagnostics.Contracts.dll'
Adding tpa entry: /System.Diagnostics.Contracts.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.Debug.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.Debug.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.Debug.dll
Probed deps dir and matched '/System.Diagnostics.Debug.dll'
Adding tpa entry: /System.Diagnostics.Debug.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.DiagnosticSource.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.DiagnosticSource.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.DiagnosticSource.dll
Probed deps dir and matched '/System.Diagnostics.DiagnosticSource.dll'
Adding tpa entry: /System.Diagnostics.DiagnosticSource.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.FileVersionInfo.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.FileVersionInfo.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.FileVersionInfo.dll
Probed deps dir and matched '/System.Diagnostics.FileVersionInfo.dll'
Adding tpa entry: /System.Diagnostics.FileVersionInfo.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.Process.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.Process.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.Process.dll
Probed deps dir and matched '/System.Diagnostics.Process.dll'
Adding tpa entry: /System.Diagnostics.Process.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.StackTrace.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.StackTrace.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.StackTrace.dll
Probed deps dir and matched '/System.Diagnostics.StackTrace.dll'
Adding tpa entry: /System.Diagnostics.StackTrace.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.TextWriterTraceListener.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.TextWriterTraceListener.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.TextWriterTraceListener.dll
Probed deps dir and matched '/System.Diagnostics.TextWriterTraceListener.dll'
Adding tpa entry: /System.Diagnostics.TextWriterTraceListener.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.Tools.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.Tools.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.Tools.dll
Probed deps dir and matched '/System.Diagnostics.Tools.dll'
Adding tpa entry: /System.Diagnostics.Tools.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.TraceSource.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.TraceSource.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.TraceSource.dll
Probed deps dir and matched '/System.Diagnostics.TraceSource.dll'
Adding tpa entry: /System.Diagnostics.TraceSource.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Diagnostics.Tracing.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Diagnostics.Tracing.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Diagnostics.Tracing.dll
Probed deps dir and matched '/System.Diagnostics.Tracing.dll'
Adding tpa entry: /System.Diagnostics.Tracing.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Drawing.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Drawing.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Drawing.Primitives.dll
Probed deps dir and matched '/System.Drawing.Primitives.dll'
Adding tpa entry: /System.Drawing.Primitives.dll, AssemblyVersion: 4.2.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Drawing.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Drawing.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Drawing.dll
Probed deps dir and matched '/System.Drawing.dll'
Adding tpa entry: /System.Drawing.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Dynamic.Runtime.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Dynamic.Runtime.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Dynamic.Runtime.dll
Probed deps dir and matched '/System.Dynamic.Runtime.dll'
Adding tpa entry: /System.Dynamic.Runtime.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Globalization.Calendars.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Globalization.Calendars.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Globalization.Calendars.dll
Probed deps dir and matched '/System.Globalization.Calendars.dll'
Adding tpa entry: /System.Globalization.Calendars.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Globalization.Extensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Globalization.Extensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Globalization.Extensions.dll
Probed deps dir and matched '/System.Globalization.Extensions.dll'
Adding tpa entry: /System.Globalization.Extensions.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Globalization.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Globalization.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Globalization.dll
Probed deps dir and matched '/System.Globalization.dll'
Adding tpa entry: /System.Globalization.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.Brotli.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.Brotli.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.Brotli.dll
Probed deps dir and matched '/System.IO.Compression.Brotli.dll'
Adding tpa entry: /System.IO.Compression.Brotli.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.FileSystem.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.FileSystem.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.FileSystem.dll
Probed deps dir and matched '/System.IO.Compression.FileSystem.dll'
Adding tpa entry: /System.IO.Compression.FileSystem.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.ZipFile.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.ZipFile.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.ZipFile.dll
Probed deps dir and matched '/System.IO.Compression.ZipFile.dll'
Adding tpa entry: /System.IO.Compression.ZipFile.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.dll
Probed deps dir and matched '/System.IO.Compression.dll'
Adding tpa entry: /System.IO.Compression.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.FileSystem.AccessControl.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.FileSystem.AccessControl.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.FileSystem.AccessControl.dll
Probed deps dir and matched '/System.IO.FileSystem.AccessControl.dll'
Adding tpa entry: /System.IO.FileSystem.AccessControl.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.FileSystem.DriveInfo.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.FileSystem.DriveInfo.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.FileSystem.DriveInfo.dll
Probed deps dir and matched '/System.IO.FileSystem.DriveInfo.dll'
Adding tpa entry: /System.IO.FileSystem.DriveInfo.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.FileSystem.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.FileSystem.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.FileSystem.Primitives.dll
Probed deps dir and matched '/System.IO.FileSystem.Primitives.dll'
Adding tpa entry: /System.IO.FileSystem.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.FileSystem.Watcher.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.FileSystem.Watcher.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.FileSystem.Watcher.dll
Probed deps dir and matched '/System.IO.FileSystem.Watcher.dll'
Adding tpa entry: /System.IO.FileSystem.Watcher.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.FileSystem.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.FileSystem.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.FileSystem.dll
Probed deps dir and matched '/System.IO.FileSystem.dll'
Adding tpa entry: /System.IO.FileSystem.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.IsolatedStorage.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.IsolatedStorage.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.IsolatedStorage.dll
Probed deps dir and matched '/System.IO.IsolatedStorage.dll'
Adding tpa entry: /System.IO.IsolatedStorage.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.MemoryMappedFiles.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.MemoryMappedFiles.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.MemoryMappedFiles.dll
Probed deps dir and matched '/System.IO.MemoryMappedFiles.dll'
Adding tpa entry: /System.IO.MemoryMappedFiles.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Pipes.AccessControl.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Pipes.AccessControl.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Pipes.AccessControl.dll
Probed deps dir and matched '/System.IO.Pipes.AccessControl.dll'
Adding tpa entry: /System.IO.Pipes.AccessControl.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Pipes.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Pipes.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Pipes.dll
Probed deps dir and matched '/System.IO.Pipes.dll'
Adding tpa entry: /System.IO.Pipes.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.UnmanagedMemoryStream.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.UnmanagedMemoryStream.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.UnmanagedMemoryStream.dll
Probed deps dir and matched '/System.IO.UnmanagedMemoryStream.dll'
Adding tpa entry: /System.IO.UnmanagedMemoryStream.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.dll
Probed deps dir and matched '/System.IO.dll'
Adding tpa entry: /System.IO.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Linq.Expressions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Linq.Expressions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Linq.Expressions.dll
Probed deps dir and matched '/System.Linq.Expressions.dll'
Adding tpa entry: /System.Linq.Expressions.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Linq.Parallel.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Linq.Parallel.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Linq.Parallel.dll
Probed deps dir and matched '/System.Linq.Parallel.dll'
Adding tpa entry: /System.Linq.Parallel.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Linq.Queryable.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Linq.Queryable.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Linq.Queryable.dll
Probed deps dir and matched '/System.Linq.Queryable.dll'
Adding tpa entry: /System.Linq.Queryable.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Linq.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Linq.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Linq.dll
Probed deps dir and matched '/System.Linq.dll'
Adding tpa entry: /System.Linq.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Memory.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Memory.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Memory.dll
Probed deps dir and matched '/System.Memory.dll'
Adding tpa entry: /System.Memory.dll, AssemblyVersion: 4.2.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Http.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Http.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Http.dll
Probed deps dir and matched '/System.Net.Http.dll'
Adding tpa entry: /System.Net.Http.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.HttpListener.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.HttpListener.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.HttpListener.dll
Probed deps dir and matched '/System.Net.HttpListener.dll'
Adding tpa entry: /System.Net.HttpListener.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Mail.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Mail.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Mail.dll
Probed deps dir and matched '/System.Net.Mail.dll'
Adding tpa entry: /System.Net.Mail.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.NameResolution.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.NameResolution.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.NameResolution.dll
Probed deps dir and matched '/System.Net.NameResolution.dll'
Adding tpa entry: /System.Net.NameResolution.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.NetworkInformation.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.NetworkInformation.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.NetworkInformation.dll
Probed deps dir and matched '/System.Net.NetworkInformation.dll'
Adding tpa entry: /System.Net.NetworkInformation.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Ping.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Ping.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Ping.dll
Probed deps dir and matched '/System.Net.Ping.dll'
Adding tpa entry: /System.Net.Ping.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Primitives.dll
Probed deps dir and matched '/System.Net.Primitives.dll'
Adding tpa entry: /System.Net.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Requests.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Requests.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Requests.dll
Probed deps dir and matched '/System.Net.Requests.dll'
Adding tpa entry: /System.Net.Requests.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Security.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Security.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Security.dll
Probed deps dir and matched '/System.Net.Security.dll'
Adding tpa entry: /System.Net.Security.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.ServicePoint.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.ServicePoint.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.ServicePoint.dll
Probed deps dir and matched '/System.Net.ServicePoint.dll'
Adding tpa entry: /System.Net.ServicePoint.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Sockets.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Sockets.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Sockets.dll
Probed deps dir and matched '/System.Net.Sockets.dll'
Adding tpa entry: /System.Net.Sockets.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.WebClient.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.WebClient.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.WebClient.dll
Probed deps dir and matched '/System.Net.WebClient.dll'
Adding tpa entry: /System.Net.WebClient.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.WebHeaderCollection.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.WebHeaderCollection.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.WebHeaderCollection.dll
Probed deps dir and matched '/System.Net.WebHeaderCollection.dll'
Adding tpa entry: /System.Net.WebHeaderCollection.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.WebProxy.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.WebProxy.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.WebProxy.dll
Probed deps dir and matched '/System.Net.WebProxy.dll'
Adding tpa entry: /System.Net.WebProxy.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.WebSockets.Client.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.WebSockets.Client.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.WebSockets.Client.dll
Probed deps dir and matched '/System.Net.WebSockets.Client.dll'
Adding tpa entry: /System.Net.WebSockets.Client.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.WebSockets.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.WebSockets.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.WebSockets.dll
Probed deps dir and matched '/System.Net.WebSockets.dll'
Adding tpa entry: /System.Net.WebSockets.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.dll
Probed deps dir and matched '/System.Net.dll'
Adding tpa entry: /System.Net.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Numerics.Vectors.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Numerics.Vectors.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Numerics.Vectors.dll
Probed deps dir and matched '/System.Numerics.Vectors.dll'
Adding tpa entry: /System.Numerics.Vectors.dll, AssemblyVersion: 4.1.5.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Numerics.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Numerics.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Numerics.dll
Probed deps dir and matched '/System.Numerics.dll'
Adding tpa entry: /System.Numerics.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ObjectModel.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ObjectModel.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ObjectModel.dll
Probed deps dir and matched '/System.ObjectModel.dll'
Adding tpa entry: /System.ObjectModel.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Private.DataContractSerialization.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Private.DataContractSerialization.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Private.DataContractSerialization.dll
Probed deps dir and matched '/System.Private.DataContractSerialization.dll'
Adding tpa entry: /System.Private.DataContractSerialization.dll, AssemblyVersion: 4.1.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Private.Uri.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Private.Uri.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Private.Uri.dll
Probed deps dir and matched '/System.Private.Uri.dll'
Adding tpa entry: /System.Private.Uri.dll, AssemblyVersion: 4.0.5.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Private.Xml.Linq.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Private.Xml.Linq.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Private.Xml.Linq.dll
Probed deps dir and matched '/System.Private.Xml.Linq.dll'
Adding tpa entry: /System.Private.Xml.Linq.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Private.Xml.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Private.Xml.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Private.Xml.dll
Probed deps dir and matched '/System.Private.Xml.dll'
Adding tpa entry: /System.Private.Xml.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.DispatchProxy.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.DispatchProxy.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.DispatchProxy.dll
Probed deps dir and matched '/System.Reflection.DispatchProxy.dll'
Adding tpa entry: /System.Reflection.DispatchProxy.dll, AssemblyVersion: 4.0.5.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Emit.ILGeneration.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Emit.ILGeneration.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Emit.ILGeneration.dll
Probed deps dir and matched '/System.Reflection.Emit.ILGeneration.dll'
Adding tpa entry: /System.Reflection.Emit.ILGeneration.dll, AssemblyVersion: 4.1.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Emit.Lightweight.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Emit.Lightweight.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Emit.Lightweight.dll
Probed deps dir and matched '/System.Reflection.Emit.Lightweight.dll'
Adding tpa entry: /System.Reflection.Emit.Lightweight.dll, AssemblyVersion: 4.1.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Emit.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Emit.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Emit.dll
Probed deps dir and matched '/System.Reflection.Emit.dll'
Adding tpa entry: /System.Reflection.Emit.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Extensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Extensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Extensions.dll
Probed deps dir and matched '/System.Reflection.Extensions.dll'
Adding tpa entry: /System.Reflection.Extensions.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Metadata.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Metadata.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Metadata.dll
Probed deps dir and matched '/System.Reflection.Metadata.dll'
Adding tpa entry: /System.Reflection.Metadata.dll, AssemblyVersion: 1.4.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.Primitives.dll
Probed deps dir and matched '/System.Reflection.Primitives.dll'
Adding tpa entry: /System.Reflection.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.TypeExtensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.TypeExtensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.TypeExtensions.dll
Probed deps dir and matched '/System.Reflection.TypeExtensions.dll'
Adding tpa entry: /System.Reflection.TypeExtensions.dll, AssemblyVersion: 4.1.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Reflection.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Reflection.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Reflection.dll
Probed deps dir and matched '/System.Reflection.dll'
Adding tpa entry: /System.Reflection.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Resources.Reader.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Resources.Reader.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Resources.Reader.dll
Probed deps dir and matched '/System.Resources.Reader.dll'
Adding tpa entry: /System.Resources.Reader.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Resources.ResourceManager.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Resources.ResourceManager.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Resources.ResourceManager.dll
Probed deps dir and matched '/System.Resources.ResourceManager.dll'
Adding tpa entry: /System.Resources.ResourceManager.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Resources.Writer.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Resources.Writer.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Resources.Writer.dll
Probed deps dir and matched '/System.Resources.Writer.dll'
Adding tpa entry: /System.Resources.Writer.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.CompilerServices.Unsafe.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.CompilerServices.Unsafe.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.CompilerServices.Unsafe.dll
Probed deps dir and matched '/System.Runtime.CompilerServices.Unsafe.dll'
Adding tpa entry: /System.Runtime.CompilerServices.Unsafe.dll, AssemblyVersion: 4.0.5.0, FileVersion: 4.0.0.0
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.CompilerServices.VisualC.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.CompilerServices.VisualC.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.CompilerServices.VisualC.dll
Probed deps dir and matched '/System.Runtime.CompilerServices.VisualC.dll'
Adding tpa entry: /System.Runtime.CompilerServices.VisualC.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Extensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Extensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Extensions.dll
Probed deps dir and matched '/System.Runtime.Extensions.dll'
Adding tpa entry: /System.Runtime.Extensions.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Handles.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Handles.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Handles.dll
Probed deps dir and matched '/System.Runtime.Handles.dll'
Adding tpa entry: /System.Runtime.Handles.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.InteropServices.RuntimeInformation.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.InteropServices.RuntimeInformation.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.InteropServices.RuntimeInformation.dll
Probed deps dir and matched '/System.Runtime.InteropServices.RuntimeInformation.dll'
Adding tpa entry: /System.Runtime.InteropServices.RuntimeInformation.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.InteropServices.WindowsRuntime.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.InteropServices.WindowsRuntime.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.InteropServices.WindowsRuntime.dll
Probed deps dir and matched '/System.Runtime.InteropServices.WindowsRuntime.dll'
Adding tpa entry: /System.Runtime.InteropServices.WindowsRuntime.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.InteropServices.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.InteropServices.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.InteropServices.dll
Probed deps dir and matched '/System.Runtime.InteropServices.dll'
Adding tpa entry: /System.Runtime.InteropServices.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Intrinsics.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Intrinsics.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Intrinsics.dll
Probed deps dir and matched '/System.Runtime.Intrinsics.dll'
Adding tpa entry: /System.Runtime.Intrinsics.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Loader.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Loader.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Loader.dll
Probed deps dir and matched '/System.Runtime.Loader.dll'
Adding tpa entry: /System.Runtime.Loader.dll, AssemblyVersion: 4.1.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Numerics.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Numerics.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Numerics.dll
Probed deps dir and matched '/System.Runtime.Numerics.dll'
Adding tpa entry: /System.Runtime.Numerics.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Serialization.Formatters.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Serialization.Formatters.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Serialization.Formatters.dll
Probed deps dir and matched '/System.Runtime.Serialization.Formatters.dll'
Adding tpa entry: /System.Runtime.Serialization.Formatters.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Serialization.Json.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Serialization.Json.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Serialization.Json.dll
Probed deps dir and matched '/System.Runtime.Serialization.Json.dll'
Adding tpa entry: /System.Runtime.Serialization.Json.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Serialization.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Serialization.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Serialization.Primitives.dll
Probed deps dir and matched '/System.Runtime.Serialization.Primitives.dll'
Adding tpa entry: /System.Runtime.Serialization.Primitives.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Serialization.Xml.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Serialization.Xml.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Serialization.Xml.dll
Probed deps dir and matched '/System.Runtime.Serialization.Xml.dll'
Adding tpa entry: /System.Runtime.Serialization.Xml.dll, AssemblyVersion: 4.1.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.Serialization.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.Serialization.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.Serialization.dll
Probed deps dir and matched '/System.Runtime.Serialization.dll'
Adding tpa entry: /System.Runtime.Serialization.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.WindowsRuntime.UI.Xaml.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.WindowsRuntime.UI.Xaml.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.WindowsRuntime.UI.Xaml.dll
Probed deps dir and matched '/System.Runtime.WindowsRuntime.UI.Xaml.dll'
Adding tpa entry: /System.Runtime.WindowsRuntime.UI.Xaml.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.WindowsRuntime.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.WindowsRuntime.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.WindowsRuntime.dll
Probed deps dir and matched '/System.Runtime.WindowsRuntime.dll'
Adding tpa entry: /System.Runtime.WindowsRuntime.dll, AssemblyVersion: 4.0.14.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Runtime.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Runtime.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Runtime.dll
Probed deps dir and matched '/System.Runtime.dll'
Adding tpa entry: /System.Runtime.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.AccessControl.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.AccessControl.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.AccessControl.dll
Probed deps dir and matched '/System.Security.AccessControl.dll'
Adding tpa entry: /System.Security.AccessControl.dll, AssemblyVersion: 4.1.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Claims.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Claims.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Claims.dll
Probed deps dir and matched '/System.Security.Claims.dll'
Adding tpa entry: /System.Security.Claims.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Algorithms.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Algorithms.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Algorithms.dll
Probed deps dir and matched '/System.Security.Cryptography.Algorithms.dll'
Adding tpa entry: /System.Security.Cryptography.Algorithms.dll, AssemblyVersion: 4.3.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Cng.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Cng.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Cng.dll
Probed deps dir and matched '/System.Security.Cryptography.Cng.dll'
Adding tpa entry: /System.Security.Cryptography.Cng.dll, AssemblyVersion: 4.3.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Csp.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Csp.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Csp.dll
Probed deps dir and matched '/System.Security.Cryptography.Csp.dll'
Adding tpa entry: /System.Security.Cryptography.Csp.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Encoding.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Encoding.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Encoding.dll
Probed deps dir and matched '/System.Security.Cryptography.Encoding.dll'
Adding tpa entry: /System.Security.Cryptography.Encoding.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.OpenSsl.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.OpenSsl.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.OpenSsl.dll
Probed deps dir and matched '/System.Security.Cryptography.OpenSsl.dll'
Adding tpa entry: /System.Security.Cryptography.OpenSsl.dll, AssemblyVersion: 4.1.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Primitives.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Primitives.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Primitives.dll
Probed deps dir and matched '/System.Security.Cryptography.Primitives.dll'
Adding tpa entry: /System.Security.Cryptography.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.X509Certificates.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.X509Certificates.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.X509Certificates.dll
Probed deps dir and matched '/System.Security.Cryptography.X509Certificates.dll'
Adding tpa entry: /System.Security.Cryptography.X509Certificates.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Principal.Windows.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Principal.Windows.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Principal.Windows.dll
Probed deps dir and matched '/System.Security.Principal.Windows.dll'
Adding tpa entry: /System.Security.Principal.Windows.dll, AssemblyVersion: 4.1.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Principal.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Principal.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Principal.dll
Probed deps dir and matched '/System.Security.Principal.dll'
Adding tpa entry: /System.Security.Principal.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.SecureString.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.SecureString.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.SecureString.dll
Probed deps dir and matched '/System.Security.SecureString.dll'
Adding tpa entry: /System.Security.SecureString.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.dll
Probed deps dir and matched '/System.Security.dll'
Adding tpa entry: /System.Security.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ServiceModel.Web.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ServiceModel.Web.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ServiceModel.Web.dll
Probed deps dir and matched '/System.ServiceModel.Web.dll'
Adding tpa entry: /System.ServiceModel.Web.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ServiceProcess.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ServiceProcess.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ServiceProcess.dll
Probed deps dir and matched '/System.ServiceProcess.dll'
Adding tpa entry: /System.ServiceProcess.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.Encoding.CodePages.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.Encoding.CodePages.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.Encoding.CodePages.dll
Probed deps dir and matched '/System.Text.Encoding.CodePages.dll'
Adding tpa entry: /System.Text.Encoding.CodePages.dll, AssemblyVersion: 4.1.2.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.Encoding.Extensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.Encoding.Extensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.Encoding.Extensions.dll
Probed deps dir and matched '/System.Text.Encoding.Extensions.dll'
Adding tpa entry: /System.Text.Encoding.Extensions.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.Encoding.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.Encoding.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.Encoding.dll
Probed deps dir and matched '/System.Text.Encoding.dll'
Adding tpa entry: /System.Text.Encoding.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.Encodings.Web.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.Encodings.Web.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.Encodings.Web.dll
Probed deps dir and matched '/System.Text.Encodings.Web.dll'
Adding tpa entry: /System.Text.Encodings.Web.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.Json.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.Json.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.Json.dll
Probed deps dir and matched '/System.Text.Json.dll'
Adding tpa entry: /System.Text.Json.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Text.RegularExpressions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Text.RegularExpressions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Text.RegularExpressions.dll
Probed deps dir and matched '/System.Text.RegularExpressions.dll'
Adding tpa entry: /System.Text.RegularExpressions.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Channels.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Channels.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Channels.dll
Probed deps dir and matched '/System.Threading.Channels.dll'
Adding tpa entry: /System.Threading.Channels.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Overlapped.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Overlapped.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Overlapped.dll
Probed deps dir and matched '/System.Threading.Overlapped.dll'
Adding tpa entry: /System.Threading.Overlapped.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Tasks.Dataflow.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Tasks.Dataflow.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Tasks.Dataflow.dll
Probed deps dir and matched '/System.Threading.Tasks.Dataflow.dll'
Adding tpa entry: /System.Threading.Tasks.Dataflow.dll, AssemblyVersion: 4.6.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Tasks.Extensions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Tasks.Extensions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Tasks.Extensions.dll
Probed deps dir and matched '/System.Threading.Tasks.Extensions.dll'
Adding tpa entry: /System.Threading.Tasks.Extensions.dll, AssemblyVersion: 4.3.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Tasks.Parallel.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Tasks.Parallel.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Tasks.Parallel.dll
Probed deps dir and matched '/System.Threading.Tasks.Parallel.dll'
Adding tpa entry: /System.Threading.Tasks.Parallel.dll, AssemblyVersion: 4.0.3.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Tasks.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Tasks.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Tasks.dll
Probed deps dir and matched '/System.Threading.Tasks.dll'
Adding tpa entry: /System.Threading.Tasks.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Thread.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Thread.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Thread.dll
Probed deps dir and matched '/System.Threading.Thread.dll'
Adding tpa entry: /System.Threading.Thread.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.ThreadPool.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.ThreadPool.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.ThreadPool.dll
Probed deps dir and matched '/System.Threading.ThreadPool.dll'
Adding tpa entry: /System.Threading.ThreadPool.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.Timer.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.Timer.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.Timer.dll
Probed deps dir and matched '/System.Threading.Timer.dll'
Adding tpa entry: /System.Threading.Timer.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Threading.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Threading.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Threading.dll
Probed deps dir and matched '/System.Threading.dll'
Adding tpa entry: /System.Threading.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Transactions.Local.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Transactions.Local.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Transactions.Local.dll
Probed deps dir and matched '/System.Transactions.Local.dll'
Adding tpa entry: /System.Transactions.Local.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Transactions.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Transactions.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Transactions.dll
Probed deps dir and matched '/System.Transactions.dll'
Adding tpa entry: /System.Transactions.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.ValueTuple.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.ValueTuple.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.ValueTuple.dll
Probed deps dir and matched '/System.ValueTuple.dll'
Adding tpa entry: /System.ValueTuple.dll, AssemblyVersion: 4.0.4.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Web.HttpUtility.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Web.HttpUtility.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Web.HttpUtility.dll
Probed deps dir and matched '/System.Web.HttpUtility.dll'
Adding tpa entry: /System.Web.HttpUtility.dll, AssemblyVersion: 4.0.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Web.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Web.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Web.dll
Probed deps dir and matched '/System.Web.dll'
Adding tpa entry: /System.Web.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Windows.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Windows.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Windows.dll
Probed deps dir and matched '/System.Windows.dll'
Adding tpa entry: /System.Windows.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.Linq.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.Linq.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.Linq.dll
Probed deps dir and matched '/System.Xml.Linq.dll'
Adding tpa entry: /System.Xml.Linq.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.ReaderWriter.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.ReaderWriter.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.ReaderWriter.dll
Probed deps dir and matched '/System.Xml.ReaderWriter.dll'
Adding tpa entry: /System.Xml.ReaderWriter.dll, AssemblyVersion: 4.2.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.Serialization.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.Serialization.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.Serialization.dll
Probed deps dir and matched '/System.Xml.Serialization.dll'
Adding tpa entry: /System.Xml.Serialization.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.XDocument.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.XDocument.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.XDocument.dll
Probed deps dir and matched '/System.Xml.XDocument.dll'
Adding tpa entry: /System.Xml.XDocument.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.XPath.XDocument.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.XPath.XDocument.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.XPath.XDocument.dll
Probed deps dir and matched '/System.Xml.XPath.XDocument.dll'
Adding tpa entry: /System.Xml.XPath.XDocument.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.XPath.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.XPath.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.XPath.dll
Probed deps dir and matched '/System.Xml.XPath.dll'
Adding tpa entry: /System.Xml.XPath.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.XmlDocument.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.XmlDocument.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.XmlDocument.dll
Probed deps dir and matched '/System.Xml.XmlDocument.dll'
Adding tpa entry: /System.Xml.XmlDocument.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.XmlSerializer.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.XmlSerializer.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.XmlSerializer.dll
Probed deps dir and matched '/System.Xml.XmlSerializer.dll'
Adding tpa entry: /System.Xml.XmlSerializer.dll, AssemblyVersion: 4.1.1.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Xml.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Xml.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Xml.dll
Probed deps dir and matched '/System.Xml.dll'
Adding tpa entry: /System.Xml.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.dll
Probed deps dir and matched '/System.dll'
Adding tpa entry: /System.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, WindowsBase.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/WindowsBase.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /WindowsBase.dll
Probed deps dir and matched '/WindowsBase.dll'
Adding tpa entry: /WindowsBase.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, mscorlib.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/mscorlib.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /mscorlib.dll
Probed deps dir and matched '/mscorlib.dll'
Adding tpa entry: /mscorlib.dll, AssemblyVersion: 4.0.0.0, FileVersion: 4.700.19.46214
Processing TPA for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, netstandard.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/netstandard.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /netstandard.dll
Probed deps dir and matched '/netstandard.dll'
Adding tpa entry: /netstandard.dll, AssemblyVersion: 2.1.0.0, FileVersion: 4.700.19.46214
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, SOS_README.md]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/SOS_README.md], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /SOS_README.md
Probed deps dir and matched '/SOS_README.md'
Adding to native path: /
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Globalization.Native.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Globalization.Native.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Globalization.Native.so
Probed deps dir and matched '/System.Globalization.Native.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.Native.a]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.Native.a], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.Native.a
Probed deps dir and matched '/System.IO.Compression.Native.a'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.IO.Compression.Native.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.IO.Compression.Native.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.IO.Compression.Native.so
Probed deps dir and matched '/System.IO.Compression.Native.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Native.a]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Native.a], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Native.a
Probed deps dir and matched '/System.Native.a'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Native.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Native.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Native.so
Probed deps dir and matched '/System.Native.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Http.Native.a]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Http.Native.a], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Http.Native.a
Probed deps dir and matched '/System.Net.Http.Native.a'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Http.Native.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Http.Native.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Http.Native.so
Probed deps dir and matched '/System.Net.Http.Native.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Security.Native.a]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Security.Native.a], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Security.Native.a
Probed deps dir and matched '/System.Net.Security.Native.a'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Net.Security.Native.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Net.Security.Native.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Net.Security.Native.so
Probed deps dir and matched '/System.Net.Security.Native.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Private.CoreLib.dll]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Private.CoreLib.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Private.CoreLib.dll
Probed deps dir and matched '/System.Private.CoreLib.dll'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Native.OpenSsl.a]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Native.OpenSsl.a], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Native.OpenSsl.a
Probed deps dir and matched '/System.Security.Cryptography.Native.OpenSsl.a'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, System.Security.Cryptography.Native.OpenSsl.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/System.Security.Cryptography.Native.OpenSsl.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /System.Security.Cryptography.Native.OpenSsl.so
Probed deps dir and matched '/System.Security.Cryptography.Native.OpenSsl.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, createdump]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/createdump], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /createdump
Probed deps dir and matched '/createdump'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libclrjit.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libclrjit.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libclrjit.so
Probed deps dir and matched '/libclrjit.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libcoreclr.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libcoreclr.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libcoreclr.so
Probed deps dir and matched '/libcoreclr.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libdbgshim.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libdbgshim.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libdbgshim.so
Probed deps dir and matched '/libdbgshim.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libhostfxr.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libhostfxr.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libhostfxr.so
Probed deps dir and matched '/libhostfxr.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libhostpolicy.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libhostpolicy.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libhostpolicy.so
Probed deps dir and matched '/libhostpolicy.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libmscordaccore.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libmscordaccore.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libmscordaccore.so
Probed deps dir and matched '/libmscordaccore.so'
Processing native/culture for deps entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64, 3.0.0, libmscordbi.so]
Considering entry [runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.0.0/libmscordbi.so], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /libmscordbi.so
Probed deps dir and matched '/libmscordbi.so'
The resolved JIT path is '/libclrjit.so'
Property JIT_PATH = /libclrjit.so
Property FX_PRODUCT_VERSION = 3.0.0
Property FX_DEPS_FILE =
Property APP_CONTEXT_DEPS_FILES = /HelloApp.deps.json
Property APP_CONTEXT_BASE_DIRECTORY = /
Property AppDomainCompatSwitch = UseLatestBehaviorWhenTFMNotSpecified
Property PLATFORM_RESOURCE_ROOTS =
Property PROBING_DIRECTORIES =
Property NATIVE_DLL_SEARCH_DIRECTORIES = /:
Property TRUSTED_PLATFORM_ASSEMBLIES = /System.dll:/System.Xml.XmlDocument.dll:/System.Xml.XPath.XDocument.dll:/System.Xml.XDocument.dll:/System.Xml.XmlSerializer.dll:/System.Xml.Linq.dll:/System.Transactions.Local.dll:/System.Threading.Timer.dll:/System.Threading.Thread.dll:/System.Threading.Tasks.dll:/System.Threading.Tasks.Parallel.dll:/System.ValueTuple.dll:/System.Text.Json.dll:/System.Text.Encoding.dll:/System.Text.Encoding.CodePages.dll:/System.Security.dll:/System.Security.Principal.dll:/System.Security.Cryptography.X509Certificates.dll:/mscorlib.dll:/System.Security.Cryptography.OpenSsl.dll:/System.Security.Cryptography.Encoding.dll:/System.Security.Cryptography.Csp.dll:/System.Security.Cryptography.Algorithms.dll:/System.Security.Cryptography.Cng.dll:/System.Security.AccessControl.dll:/System.Runtime.dll:/System.Xml.XPath.dll:/System.Runtime.WindowsRuntime.dll:/System.Runtime.WindowsRuntime.UI.Xaml.dll:/System.Runtime.Serialization.Xml.dll:/System.Runtime.Serialization.Json.dll:/System.Runtime.Serialization.Formatters.dll:/System.Runtime.Numerics.dll:/System.Runtime.Loader.dll:/System.Security.Principal.Windows.dll:/System.Runtime.Handles.dll:/System.Runtime.Extensions.dll:/System.Runtime.CompilerServices.VisualC.dll:/System.Threading.dll:/System.Runtime.CompilerServices.Unsafe.dll:/System.Runtime.InteropServices.dll:/System.IO.FileSystem.DriveInfo.dll:/System.IO.Compression.Brotli.dll:/System.Net.dll:/System.Drawing.dll:/System.Diagnostics.Tools.dll:/System.IO.Compression.dll:/System.IO.FileSystem.Watcher.dll:/System.Xml.dll:/System.Diagnostics.TextWriterTraceListener.dll:/System.Text.Encodings.Web.dll:/System.Security.Cryptography.Primitives.dll:/Microsoft.VisualBasic.dll:/System.Diagnostics.DiagnosticSource.dll:/System.Diagnostics.Debug.dll:/System.ServiceProcess.dll:/System.Data.dll:/System.Diagnostics.FileVersionInfo.dll:/System.Collections.NonGeneric.dll:/System.Data.Common.dll:/System.Data.DataSetExtensions.dll:/System.Numerics.Vectors.dll:/System.Collections.dll:/System.ComponentModel.dll:/System.Threading.Tasks.Dataflow.dll:/System.ComponentModel.TypeConverter.dll:/System.IO.IsolatedStorage.dll:/System.Net.Requests.dll:/System.Runtime.Intrinsics.dll:/Microsoft.Win32.Registry.dll:/System.Reflection.dll:/System.IO.Compression.ZipFile.dll:/System.Xml.Serialization.dll:/Microsoft.Win32.Primitives.dll:/System.Net.ServicePoint.dll:/System.Collections.Concurrent.dll:/System.Globalization.dll:/System.IO.FileSystem.dll:/System.Private.Xml.dll:/System.Diagnostics.TraceSource.dll:/System.Net.WebClient.dll:/System.Collections.Immutable.dll:/System.Console.dll:/System.Reflection.Extensions.dll:/System.Runtime.Serialization.Primitives.dll:/System.IO.FileSystem.Primitives.dll:/System.Globalization.Calendars.dll:/System.Reflection.Emit.ILGeneration.dll:/System.Buffers.dll:/System.Reflection.Emit.dll:/System.Globalization.Extensions.dll:/System.AppContext.dll:/System.Private.Xml.Linq.dll:/System.Transactions.dll:/System.IO.dll:/System.ComponentModel.Annotations.dll:/System.ComponentModel.DataAnnotations.dll:/System.Security.Claims.dll:/System.Net.NetworkInformation.dll:/System.Diagnostics.Contracts.dll:/System.Collections.Specialized.dll:/System.Linq.Queryable.dll:/System.Diagnostics.StackTrace.dll:/System.Diagnostics.Tracing.dll:/System.Threading.Channels.dll:/System.ComponentModel.EventBasedAsync.dll:/netstandard.dll:/System.IO.Compression.FileSystem.dll:/Microsoft.VisualBasic.Core.dll:/System.Runtime.InteropServices.RuntimeInformation.dll:/System.Linq.Parallel.dll:/System.Text.RegularExpressions.dll:/System.Runtime.Serialization.dll:/System.Reflection.DispatchProxy.dll:/System.Configuration.dll:/System.Core.dll:/System.Diagnostics.Process.dll:/System.Reflection.TypeExtensions.dll:/System.Text.Encoding.Extensions.dll:/System.IO.MemoryMappedFiles.dll:/System.IO.Pipes.dll:/System.Memory.dll:/System.IO.UnmanagedMemoryStream.dll:/WindowsBase.dll:/System.Threading.Overlapped.dll:/System.ServiceModel.Web.dll:/System.Linq.Expressions.dll:/System.Security.SecureString.dll:/System.Reflection.Metadata.dll:/System.ComponentModel.Primitives.dll:/System.Dynamic.Runtime.dll:/System.Reflection.Primitives.dll:/System.Linq.dll:/System.Windows.dll:/System.Net.Mail.dll:/System.Threading.Tasks.Extensions.dll:/System.Runtime.InteropServices.WindowsRuntime.dll:/System.Net.NameResolution.dll:/System.Net.HttpListener.dll:/System.Net.Security.dll:/System.Net.Primitives.dll:/System.Drawing.Primitives.dll:/System.ObjectModel.dll:/System.Net.Ping.dll:/System.Private.Uri.dll:/System.Net.Sockets.dll:/System.Net.Http.dll:/System.Net.WebHeaderCollection.dll:/Microsoft.CSharp.dll:/System.Net.WebProxy.dll:/System.Net.WebSockets.Client.dll:/System.Xml.ReaderWriter.dll:/System.Net.WebSockets.dll:/System.Threading.ThreadPool.dll:/System.IO.FileSystem.AccessControl.dll:/System.IO.Pipes.AccessControl.dll:/System.Numerics.dll:/HelloApp.dll:/System.Private.DataContractSerialization.dll:/System.Reflection.Emit.Lightweight.dll:/System.Web.HttpUtility.dll:/System.Resources.Reader.dll:/System.Web.dll:/System.Resources.ResourceManager.dll:/System.Resources.Writer.dll:/System.Private.CoreLib.dll
CoreCLR path = '/libcoreclr.so', CoreCLR dir = '/'
-> Loaded object: /libcoreclr.so
trying to execute null pointer
[backtrace]
0x000000004039e73e <page_fault+302>
0x000000004039d506 <???+1077531910>
0x0000100000dcf492 <???+14480530>
0x0000100000dcf67a <???+14481018>
0x0000100000dcf024 <???+14479396>
0x0000100000dcee8d <???+14478989>
0x0000100000d1a991 <???+13740433>
0x0000100000cf375c <???+13580124>
0x0000100000a0ad8e <???+10530190>
0xffffa0000090475f <???+9455455>
0xffff006f732e7468 <???+1932424296>
And the stack traces of two .NET threads:
(gdb) osv thread 36
(gdb) bt
#0 0x00000000403a4522 in processor::cli_hlt () at arch/x64/processor.hh:247
dotnet/coreclr#1 arch::halt_no_interrupts () at arch/x64/arch.hh:48
dotnet/coreclr#2 osv::halt () at arch/x64/power.cc:26
dotnet/coreclr#3 0x00000000402381a4 in abort (fmt=fmt@entry=0x4061c1a8 "trying to execute null pointer") at runtime.cc:132
dotnet/coreclr#4 0x000000004039e2df in page_fault (ef=0xffff8000015e6068) at arch/x64/mmu.cc:30
dotnet/coreclr#5 <signal handler called>
dotnet/coreclr#6 0x0000000000000000 in ?? ()
dotnet/coreclr#7 0x0000100000cf49da in ?? ()
dotnet/coreclr#8 0x0000200000200780 in ?? ()
dotnet/coreclr#9 0x0000000000000000 in ?? ()
(gdb) osv thread 37
(gdb) bt
#0 sched::thread::switch_to (this=0x230, this@entry=0xffff80000005b040) at arch/x64/arch-switch.hh:108
dotnet/coreclr#1 0x00000000403f7184 in sched::cpu::reschedule_from_interrupt (this=0xffff80000001e040, called_from_yield=called_from_yield@entry=false,
preempt_after=..., preempt_after@entry=...) at core/sched.cc:339
dotnet/coreclr#2 0x00000000403f767c in sched::cpu::schedule () at include/osv/sched.hh:1310
dotnet/coreclr#3 0x00000000403f7d62 in sched::thread::wait (this=this@entry=0xffff800001c93040) at core/sched.cc:1214
dotnet/coreclr#4 0x0000000040415a08 in sched::thread::do_wait_until<sched::noninterruptible, sched::thread::dummy_lock, do_poll(std::vector<poll_file>&, file::timeout_t)::<lambda()> > (mtx=<synthetic pointer>..., pred=...) at /usr/include/c++/8/bits/atomic_base.h:390
dotnet/coreclr#5 sched::thread::wait_until<do_poll(std::vector<poll_file>&, file::timeout_t)::<lambda()> > (pred=...) at include/osv/sched.hh:1077
dotnet/coreclr#6 do_poll (pfd=std::vector of length 0, capacity 0, _timeout=...) at core/poll.cc:274
dotnet/coreclr#7 0x0000000040415da2 in file::poll_many (_pfd=0x200000300e68, _nfds=1, timeout=...) at /usr/include/c++/8/new:169
dotnet/coreclr#8 0x0000000040416041 in file::poll_sync (timeout=..., pfd=..., this=<optimized out>) at /usr/include/c++/8/new:169
dotnet/coreclr#9 poll_one (timeout=..., pfd=...) at core/poll.cc:334
dotnet/coreclr#10 poll (_pfd=0x200000300e68, _nfds=<optimized out>, _timeout=<optimized out>) at core/poll.cc:351
dotnet/coreclr#11 0x00001000010c970e in StgIO::ReadFromDisk(void*, unsigned int, unsigned int*) ()
dotnet/coreclr#12 0x00001000010c92e8 in StgIO::GetPtrForMem(unsigned int, unsigned int, void*&) ()
dotnet/coreclr#13 0x00001000010c8f64 in StgIO::FreePageMap() ()
dotnet/coreclr#14 0x00001000010d186d in MDInternalRW::FindTypeDef(char const*, char const*, unsigned int, unsigned int*) ()
dotnet/coreclr#15 0x000000004045b7e6 in pthread_private::pthread::<lambda()>::operator() (__closure=0xffff800000021798) at libc/pthread.cc:114
dotnet/coreclr#16 std::_Function_handler<void(), pthread_private::pthread::pthread(void* (*)(void*), void*, sigset_t, const pthread_private::thread_attr*)::<lambda()> >::_M_invoke(const std::_Any_data &) (__functor=...) at /usr/include/c++/8/bits/std_function.h:297
dotnet/coreclr#17 0x00000000403f8b07 in sched::thread_main_c (t=0xffff800001c93040) at arch/x64/arch-switch.hh:321
dotnet/coreclr#18 0x000000004039e023 in thread_main () at arch/x64/entry.S:113
As you can see the initial thread 36 has corrupt stack whereas the other child one looks OK.
I have the feeling this issue has to do with mishandled TLS.
Any ideas what might be wrong or what is the best way to debug it further?
Thanks a lot in advance, Waldek
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 1
- Comments: 20 (10 by maintainers)
dotnet new webapiwill give you a simple REST API over HTTP.I believe I have found the root cause of this latest issue. It is a more logical one than anything else. Here is a snippet of code that prevents OSv from running dotnet - https://github.com/dotnet/coreclr/blob/ed5dc831b09a0bfed76ddad684008bebc86ab2f0/src/pal/src/handlemgr/handleapi.cpp#L115-L125. In OSv and I believe other Linux-compatible unikernels there is a single process with PID 0. The code I am pointing to restricts the PID to be different than 0. I wonder what was the exact intention behind as in general the 0 is a valid PID in Linux. It just happens to be the init process.
I am yet to verify for sure if once I comment out this condition dotnet will run successfully. I would obviously need to build from source.
It doesn’t have to be the case. The 0x80004005 is a general failure error code which basically means that something has failed but we didn’t have a specific error code that would well describe what was wrong. So it can happen due to many different reasons. But it is true that the native libraries built from the coreclr repo must match the System.Private.CoreLib.dll built from the same repo. By “must match” I mean that they need to be built from the same commit and also that they have to be of the same build flavor (release / debug / checked). This is of course true for the official binaries, but if you build it yourself, the ideal way is to follow my advice from https://github.com/dotnet/coreclr/issues/20996#issuecomment-439000306. That’s the way I do it myself when debugging issues in a specific version of .NET Core.