dotnet / core

.NET news, announcements, release notes, and more!
https://dot.net
MIT License
20.91k stars 4.89k forks source link

`Error: assembly specified in the dependencies manifest was not found` -- Even when explicitly referenced #4035

Open brianjenkins94 opened 4 years ago

brianjenkins94 commented 4 years ago

So I'm working this issue https://github.com/agracio/edge-js/issues/96#issuecomment-568206718 (relevant bits included below) but my resultant binary from node-gyp can't seem to locate Microsoft.CodeAnalysis.CSharp.Workspaces.dll even though it's plainly there on disk right alongside all of my other nuget-retrieved packages:

Error: assembly specified in the dependencies manifest was not found -- 
package: 'Microsoft.CodeAnalysis.CSharp.Workspaces',
version: '3.4.0',
path: 'lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll'

I even swapped out the relative reference for an absolute one and it's pointed right at it but it still can't seem to find it.

Error: assembly specified in the dependencies manifest was not found -- 
package: 'Microsoft.CodeAnalysis.CSharp.Workspaces', 
version: '3.4.0', 
path: '/Users/bjenks/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll'
$ dotnet --info ``` .NET Core SDK (reflecting any global.json): Version: 3.1.100 Commit: cd82f021f4 Runtime Environment: OS Name: Mac OS X OS Version: 10.15 OS Platform: Darwin RID: osx.10.15-x64 Base Path: /usr/local/share/dotnet/sdk/3.1.100/ Host (useful for support): Version: 3.1.0 Commit: 65f04fb6db .NET Core SDKs installed: 2.1.202 [/usr/local/share/dotnet/sdk] 2.1.607 [/usr/local/share/dotnet/sdk] 2.2.207 [/usr/local/share/dotnet/sdk] 3.0.100 [/usr/local/share/dotnet/sdk] 3.1.100 [/usr/local/share/dotnet/sdk] .NET Core runtimes installed: Microsoft.AspNetCore.All 2.1.14 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.All] Microsoft.AspNetCore.All 2.2.8 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.All] Microsoft.AspNetCore.App 2.1.14 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 2.2.8 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 3.0.0 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.AspNetCore.App 3.1.0 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 2.0.9 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 2.1.13 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 2.1.14 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 2.2.8 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 3.0.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] Microsoft.NETCore.App 3.1.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App] To install additional .NET Core runtimes or SDKs: https://aka.ms/dotnet-download ```

Let me know if there's anything I can attach that might be of diagnostic help.

Same results on Linux. Error: Call to coreclr_create_delegate() for G failed with a return code of 0x80070002 on Windows (probably unrelated).

Weird thing that I probably should have mentioned earlier: I don't even have a using statement for Microsoft.CodeAnalysis.CSharp.Workspaces, just these three.

brianjenkins94 commented 4 years ago

I found a way to get more information:

$ node-gyp configure build && node -e "process.env.COREHOST_TRACE = 1; process.env.EDGE_USE_CORECLR = '1'; require('./lib/edge.js').func('async (input) => { return input.ToString(); }')" ``` Load edge native library from: /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/build/Release/edge_coreclr Tracing enabled CoreClrEmbedding::Initialize - Started CoreClrEmbedding::Initialize - edge.node path is /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/build/Release CoreClrEmbedding::Initialize - Bootstrapper is /usr/local/bin/node CoreClrEmbedding::Initialize - Resolved bootstrapper is /usr/local/Cellar/node/12.12.0/bin/node CoreClrEmbedding::Initialize - No EDGE_APP_ROOT environment variable present, using the Edge bootstrapper directory at /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1 CoreClrEmbedding::Initialize - Getting the dependency manifest file for the Edge app directory: /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1 CoreClrEmbedding::Initialize - Exactly one (/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/bootstrap.deps.json) dependency manifest file found in the Edge app directory, using it CoreClrEmbedding::Initialize - Path is /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands CoreClrEmbedding::Initialize - Checking for dotnet at /usr/local/bin/dotnet CoreClrEmbedding::Initialize - Found dotnet at /usr/local/share/dotnet/dotnet Checking if CoreCLR path exists=[/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/libcoreclr.dylib] --- Resolving dotnet from working dir Probing path [/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/global.json] for global.json Probing path [/Users/bjenks/Developer/node-native-addon-experiments/edge/global.json] for global.json Probing path [/Users/bjenks/Developer/node-native-addon-experiments/global.json] for global.json Probing path [/Users/bjenks/Developer/global.json] for global.json Probing path [/Users/bjenks/global.json] for global.json Probing path [/Users/global.json] for global.json Terminating global.json search at [] --- Resolving SDK version from SDK dir [/usr/local/share/dotnet/sdk] Considering version... [.] Considering version... [..] Considering version... [2.1.202] Considering version... [2.2.207] Considering version... [3.0.100] Considering version... [3.1.100] Considering version... [2.1.607] Considering version... [NuGetFallbackFolder] Checking if resolved SDK dir [/usr/local/share/dotnet/sdk/3.1.100] exists Resolved SDK dir is [/usr/local/share/dotnet/sdk/3.1.100] Found CLI SDK in: /usr/local/share/dotnet/sdk/3.1.100 Runtime config is cfg=/usr/local/share/dotnet/sdk/3.1.100/dotnet.runtimeconfig.json dev=/usr/local/share/dotnet/sdk/3.1.100/dotnet.runtimeconfig.dev.json Attempting to read runtime config: /usr/local/share/dotnet/sdk/3.1.100/dotnet.runtimeconfig.json Attempting to read dev runtime config: /usr/local/share/dotnet/sdk/3.1.100/dotnet.runtimeconfig.dev.json Runtime config [/usr/local/share/dotnet/sdk/3.1.100/dotnet.runtimeconfig.json] is valid=[1] --- Resolving FX directory from muxer dir '/usr/local/share/dotnet', specified '' Attempting FX roll forward starting from [3.1.0] Inspecting version... [.] Inspecting version... [..] Inspecting version... [2.1.13] Inspecting version... [2.1.14] Inspecting version... [2.0.9] Inspecting version... [3.0.0] Inspecting version... [3.1.0] Inspecting version... [2.2.8] Chose FX version [/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0] Reading from host interface version: [0x16041101:120] to initialize policy version: [0x16041101:120] Using /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0/Microsoft.NETCore.App.deps.json FX deps file Using /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/bootstrap.deps.json deps file Loading deps file... /usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0/Microsoft.NETCore.App.deps.json as portable=[0] Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.AppContext.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Buffers.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Configuration.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Console.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Core.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Data.Common.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Data.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Drawing.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Pipes.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.IO.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Memory.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Http.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Mail.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Ping.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Requests.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Security.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Sockets.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebClient.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Net.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Numerics.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ObjectModel.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Uri.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Xml.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.Reader.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.Writer.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Claims.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Principal.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.SecureString.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Security.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ServiceProcess.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Json.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Channels.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Thread.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Timer.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Transactions.Local.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Transactions.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.ValueTuple.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Web.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Windows.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.Linq.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XPath.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/System.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/WindowsBase.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/mscorlib.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding runtime asset runtimes/osx-x64/lib/netcoreapp3.1/netstandard.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/SOS_README.md from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Globalization.Native.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.IO.Compression.Native.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.IO.Compression.Native.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Native.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Native.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Net.Http.Native.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Net.Http.Native.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Net.Security.Native.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Net.Security.Native.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Private.CoreLib.dll from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.a from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libclrjit.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libcoreclr.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libdbgshim.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libmscordaccore.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libmscordbi.dylib from runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Adding native asset runtimes/osx-x64/native/libhostpolicy.dylib from runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy/3.1.0 Reconciling library Microsoft.Build.Tasks.Git/1.0.0-beta2-19367-01 Library Microsoft.Build.Tasks.Git/1.0.0-beta2-19367-01 does not exist Reconciling library Microsoft.NETCore.App.Internal/3.1.0-rtm.19565.2 Library Microsoft.NETCore.App.Internal/3.1.0-rtm.19565.2 does not exist Reconciling library Microsoft.NETCore.App/3.1.0-rtm.19565.2 Library Microsoft.NETCore.App/3.1.0-rtm.19565.2 does not exist Reconciling library Microsoft.NETCore.DotNetHostPolicy/3.1.0 Library Microsoft.NETCore.DotNetHostPolicy/3.1.0 does not exist Reconciling library Microsoft.NETCore.Platforms/3.1.0 Library Microsoft.NETCore.Platforms/3.1.0 does not exist Reconciling library Microsoft.NETCore.Targets/3.1.0 Library Microsoft.NETCore.Targets/3.1.0 does not exist Reconciling library Microsoft.SourceLink.Common/1.0.0-beta2-19367-01 Library Microsoft.SourceLink.Common/1.0.0-beta2-19367-01 does not exist Reconciling library Microsoft.SourceLink.GitHub/1.0.0-beta2-19367-01 Library Microsoft.SourceLink.GitHub/1.0.0-beta2-19367-01 does not exist Reconciling library Microsoft.SourceLink.Vsts.Git/1.0.0-beta2-19367-01 Library Microsoft.SourceLink.Vsts.Git/1.0.0-beta2-19367-01 does not exist Reconciling library NETStandard.Library/2.1.0 Library NETStandard.Library/2.1.0 does not exist Reconciling library XliffTasks/1.0.0-beta.19252.1 Library XliffTasks/1.0.0-beta.19252.1 does not exist Reconciling library runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2 Added runtime Microsoft.CSharp deps entry [0] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll] Added runtime Microsoft.VisualBasic.Core deps entry [1] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll] Added runtime Microsoft.VisualBasic deps entry [2] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll] Added runtime Microsoft.Win32.Primitives deps entry [3] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll] Added runtime Microsoft.Win32.Registry deps entry [4] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll] Added runtime System.AppContext deps entry [5] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.AppContext.dll] Added runtime System.Buffers deps entry [6] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Buffers.dll] Added runtime System.Collections.Concurrent deps entry [7] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll] Added runtime System.Collections.Immutable deps entry [8] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll] Added runtime System.Collections.NonGeneric deps entry [9] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll] Added runtime System.Collections.Specialized deps entry [10] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll] Added runtime System.Collections deps entry [11] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Collections.dll] Added runtime System.ComponentModel.Annotations deps entry [12] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll] Added runtime System.ComponentModel.DataAnnotations deps entry [13] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll] Added runtime System.ComponentModel.EventBasedAsync deps entry [14] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll] Added runtime System.ComponentModel.Primitives deps entry [15] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll] Added runtime System.ComponentModel.TypeConverter deps entry [16] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll] Added runtime System.ComponentModel deps entry [17] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ComponentModel.dll] Added runtime System.Configuration deps entry [18] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Configuration.dll] Added runtime System.Console deps entry [19] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Console.dll] Added runtime System.Core deps entry [20] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Core.dll] Added runtime System.Data.Common deps entry [21] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Data.Common.dll] Added runtime System.Data.DataSetExtensions deps entry [22] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll] Added runtime System.Data deps entry [23] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Data.dll] Added runtime System.Diagnostics.Contracts deps entry [24] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll] Added runtime System.Diagnostics.Debug deps entry [25] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll] Added runtime System.Diagnostics.DiagnosticSource deps entry [26] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll] Added runtime System.Diagnostics.FileVersionInfo deps entry [27] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll] Added runtime System.Diagnostics.Process deps entry [28] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll] Added runtime System.Diagnostics.StackTrace deps entry [29] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll] Added runtime System.Diagnostics.TextWriterTraceListener deps entry [30] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll] Added runtime System.Diagnostics.Tools deps entry [31] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll] Added runtime System.Diagnostics.TraceSource deps entry [32] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll] Added runtime System.Diagnostics.Tracing deps entry [33] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll] Added runtime System.Drawing.Primitives deps entry [34] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll] Added runtime System.Drawing deps entry [35] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Drawing.dll] Added runtime System.Dynamic.Runtime deps entry [36] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll] Added runtime System.Globalization.Calendars deps entry [37] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll] Added runtime System.Globalization.Extensions deps entry [38] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll] Added runtime System.Globalization deps entry [39] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Globalization.dll] Added runtime System.IO.Compression.Brotli deps entry [40] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll] Added runtime System.IO.Compression.FileSystem deps entry [41] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll] Added runtime System.IO.Compression.ZipFile deps entry [42] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll] Added runtime System.IO.Compression deps entry [43] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Compression.dll] Added runtime System.IO.FileSystem.AccessControl deps entry [44] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll] Added runtime System.IO.FileSystem.DriveInfo deps entry [45] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll] Added runtime System.IO.FileSystem.Primitives deps entry [46] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll] Added runtime System.IO.FileSystem.Watcher deps entry [47] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll] Added runtime System.IO.FileSystem deps entry [48] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll] Added runtime System.IO.IsolatedStorage deps entry [49] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll] Added runtime System.IO.MemoryMappedFiles deps entry [50] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll] Added runtime System.IO.Pipes.AccessControl deps entry [51] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll] Added runtime System.IO.Pipes deps entry [52] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.Pipes.dll] Added runtime System.IO.UnmanagedMemoryStream deps entry [53] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll] Added runtime System.IO deps entry [54] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.IO.dll] Added runtime System.Linq.Expressions deps entry [55] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll] Added runtime System.Linq.Parallel deps entry [56] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll] Added runtime System.Linq.Queryable deps entry [57] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll] Added runtime System.Linq deps entry [58] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Linq.dll] Added runtime System.Memory deps entry [59] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Memory.dll] Added runtime System.Net.Http deps entry [60] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Http.dll] Added runtime System.Net.HttpListener deps entry [61] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll] Added runtime System.Net.Mail deps entry [62] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Mail.dll] Added runtime System.Net.NameResolution deps entry [63] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll] Added runtime System.Net.NetworkInformation deps entry [64] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll] Added runtime System.Net.Ping deps entry [65] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Ping.dll] Added runtime System.Net.Primitives deps entry [66] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Primitives.dll] Added runtime System.Net.Requests deps entry [67] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Requests.dll] Added runtime System.Net.Security deps entry [68] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Security.dll] Added runtime System.Net.ServicePoint deps entry [69] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll] Added runtime System.Net.Sockets deps entry [70] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.Sockets.dll] Added runtime System.Net.WebClient deps entry [71] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebClient.dll] Added runtime System.Net.WebHeaderCollection deps entry [72] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll] Added runtime System.Net.WebProxy deps entry [73] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll] Added runtime System.Net.WebSockets.Client deps entry [74] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll] Added runtime System.Net.WebSockets deps entry [75] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll] Added runtime System.Net deps entry [76] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Net.dll] Added runtime System.Numerics.Vectors deps entry [77] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll] Added runtime System.Numerics deps entry [78] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Numerics.dll] Added runtime System.ObjectModel deps entry [79] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ObjectModel.dll] Added runtime System.Private.DataContractSerialization deps entry [80] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll] Added runtime System.Private.Uri deps entry [81] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Uri.dll] Added runtime System.Private.Xml.Linq deps entry [82] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll] Added runtime System.Private.Xml deps entry [83] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Private.Xml.dll] Added runtime System.Reflection.DispatchProxy deps entry [84] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll] Added runtime System.Reflection.Emit.ILGeneration deps entry [85] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll] Added runtime System.Reflection.Emit.Lightweight deps entry [86] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll] Added runtime System.Reflection.Emit deps entry [87] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll] Added runtime System.Reflection.Extensions deps entry [88] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll] Added runtime System.Reflection.Metadata deps entry [89] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll] Added runtime System.Reflection.Primitives deps entry [90] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll] Added runtime System.Reflection.TypeExtensions deps entry [91] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll] Added runtime System.Reflection deps entry [92] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Reflection.dll] Added runtime System.Resources.Reader deps entry [93] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.Reader.dll] Added runtime System.Resources.ResourceManager deps entry [94] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll] Added runtime System.Resources.Writer deps entry [95] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Resources.Writer.dll] Added runtime System.Runtime.CompilerServices.Unsafe deps entry [96] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll] Added runtime System.Runtime.CompilerServices.VisualC deps entry [97] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll] Added runtime System.Runtime.Extensions deps entry [98] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll] Added runtime System.Runtime.Handles deps entry [99] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll] Added runtime System.Runtime.InteropServices.RuntimeInformation deps entry [100] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll] Added runtime System.Runtime.InteropServices.WindowsRuntime deps entry [101] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll] Added runtime System.Runtime.InteropServices deps entry [102] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll] Added runtime System.Runtime.Intrinsics deps entry [103] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll] Added runtime System.Runtime.Loader deps entry [104] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll] Added runtime System.Runtime.Numerics deps entry [105] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll] Added runtime System.Runtime.Serialization.Formatters deps entry [106] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll] Added runtime System.Runtime.Serialization.Json deps entry [107] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll] Added runtime System.Runtime.Serialization.Primitives deps entry [108] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll] Added runtime System.Runtime.Serialization.Xml deps entry [109] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll] Added runtime System.Runtime.Serialization deps entry [110] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll] Added runtime System.Runtime.WindowsRuntime.UI.Xaml deps entry [111] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll] Added runtime System.Runtime.WindowsRuntime deps entry [112] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll] Added runtime System.Runtime deps entry [113] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.dll] Added runtime System.Security.AccessControl deps entry [114] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll] Added runtime System.Security.Claims deps entry [115] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Claims.dll] Added runtime System.Security.Cryptography.Algorithms deps entry [116] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll] Added runtime System.Security.Cryptography.Cng deps entry [117] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll] Added runtime System.Security.Cryptography.Csp deps entry [118] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll] Added runtime System.Security.Cryptography.Encoding deps entry [119] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll] Added runtime System.Security.Cryptography.OpenSsl deps entry [120] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll] Added runtime System.Security.Cryptography.Primitives deps entry [121] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll] Added runtime System.Security.Cryptography.X509Certificates deps entry [122] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll] Added runtime System.Security.Principal.Windows deps entry [123] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll] Added runtime System.Security.Principal deps entry [124] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.Principal.dll] Added runtime System.Security.SecureString deps entry [125] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.SecureString.dll] Added runtime System.Security deps entry [126] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Security.dll] Added runtime System.ServiceModel.Web deps entry [127] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll] Added runtime System.ServiceProcess deps entry [128] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ServiceProcess.dll] Added runtime System.Text.Encoding.CodePages deps entry [129] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll] Added runtime System.Text.Encoding.Extensions deps entry [130] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll] Added runtime System.Text.Encoding deps entry [131] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encoding.dll] Added runtime System.Text.Encodings.Web deps entry [132] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll] Added runtime System.Text.Json deps entry [133] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.Json.dll] Added runtime System.Text.RegularExpressions deps entry [134] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll] Added runtime System.Threading.Channels deps entry [135] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Channels.dll] Added runtime System.Threading.Overlapped deps entry [136] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll] Added runtime System.Threading.Tasks.Dataflow deps entry [137] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll] Added runtime System.Threading.Tasks.Extensions deps entry [138] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll] Added runtime System.Threading.Tasks.Parallel deps entry [139] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll] Added runtime System.Threading.Tasks deps entry [140] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll] Added runtime System.Threading.Thread deps entry [141] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Thread.dll] Added runtime System.Threading.ThreadPool deps entry [142] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll] Added runtime System.Threading.Timer deps entry [143] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.Timer.dll] Added runtime System.Threading deps entry [144] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Threading.dll] Added runtime System.Transactions.Local deps entry [145] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Transactions.Local.dll] Added runtime System.Transactions deps entry [146] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Transactions.dll] Added runtime System.ValueTuple deps entry [147] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.ValueTuple.dll] Added runtime System.Web.HttpUtility deps entry [148] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll] Added runtime System.Web deps entry [149] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Web.dll] Added runtime System.Windows deps entry [150] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Windows.dll] Added runtime System.Xml.Linq deps entry [151] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.Linq.dll] Added runtime System.Xml.ReaderWriter deps entry [152] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll] Added runtime System.Xml.Serialization deps entry [153] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll] Added runtime System.Xml.XDocument deps entry [154] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll] Added runtime System.Xml.XPath.XDocument deps entry [155] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll] Added runtime System.Xml.XPath deps entry [156] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XPath.dll] Added runtime System.Xml.XmlDocument deps entry [157] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll] Added runtime System.Xml.XmlSerializer deps entry [158] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll] Added runtime System.Xml deps entry [159] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Xml.dll] Added runtime System deps entry [160] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.dll] Added runtime WindowsBase deps entry [161] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/WindowsBase.dll] Added runtime mscorlib deps entry [162] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/mscorlib.dll] Added runtime netstandard deps entry [163] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/netstandard.dll] Added native SOS_README deps entry [0] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/SOS_README.md] Added native System.Globalization.Native deps entry [1] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Globalization.Native.dylib] Added native System.IO.Compression.Native deps entry [2] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.IO.Compression.Native.a] Added native System.IO.Compression.Native deps entry [3] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.IO.Compression.Native.dylib] Added native System.Native deps entry [4] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Native.a] Added native System.Native deps entry [5] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Native.dylib] Added native System.Net.Http.Native deps entry [6] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Net.Http.Native.a] Added native System.Net.Http.Native deps entry [7] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Net.Http.Native.dylib] Added native System.Net.Security.Native deps entry [8] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Net.Security.Native.a] Added native System.Net.Security.Native deps entry [9] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Net.Security.Native.dylib] Added native System.Private.CoreLib deps entry [10] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Private.CoreLib.dll] Added native System.Security.Cryptography.Native.Apple deps entry [11] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.a] Added native System.Security.Cryptography.Native.Apple deps entry [12] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.dylib] Added native System.Security.Cryptography.Native.OpenSsl deps entry [13] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.a] Added native System.Security.Cryptography.Native.OpenSsl deps entry [14] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib] Added native libclrjit deps entry [15] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/libclrjit.dylib] Added native libcoreclr deps entry [16] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/libcoreclr.dylib] Added native libdbgshim deps entry [17] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/libdbgshim.dylib] Added native libmscordaccore deps entry [18] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/libmscordaccore.dylib] Added native libmscordbi deps entry [19] [runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/native/libmscordbi.dylib] Reconciling library runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy/3.1.0 Added native libhostpolicy deps entry [20] [runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy, 3.1.0, runtimes/osx-x64/native/libhostpolicy.dylib] The rid fallback graph is: { osx.10.15-x64 => [ osx.10.15, osx.10.14-x64, osx.10.14, osx.10.13-x64, osx.10.13, osx.10.12-x64, osx.10.12, osx.10.11-x64, osx.10.11, osx.10.10-x64, osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx.10.15 => [ osx.10.14, osx.10.13, osx.10.12, osx.10.11, osx.10.10, osx, unix, any, base, ] osx.10.14-x64 => [ osx.10.14, osx.10.13-x64, osx.10.13, osx.10.12-x64, osx.10.12, osx.10.11-x64, osx.10.11, osx.10.10-x64, osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx.10.13 => [ osx.10.12, osx.10.11, osx.10.10, osx, unix, any, base, ] osx.10.14 => [ osx.10.13, osx.10.12, osx.10.11, osx.10.10, osx, unix, any, base, ] osx.10.13-x64 => [ osx.10.13, osx.10.12-x64, osx.10.12, osx.10.11-x64, osx.10.11, osx.10.10-x64, osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx.10.11-x64 => [ osx.10.11, osx.10.10-x64, osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx.10.12 => [ osx.10.11, osx.10.10, osx, unix, any, base, ] osx.10.10 => [ osx, unix, any, base, ] osx.10.11 => [ osx.10.10, osx, unix, any, base, ] osx.10.10-x64 => [ osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx-x64 => [ osx, unix-x64, unix, any, base, ] osx.10.12-x64 => [ osx.10.12, osx.10.11-x64, osx.10.11, osx.10.10-x64, osx.10.10, osx-x64, osx, unix-x64, unix, any, base, ] osx => [ unix, any, base, ] } Loading deps file... /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/bootstrap.deps.json as portable=[1] Adding runtime asset Edge.js.CSharp.dll from Edge.js.CSharp/1.2.0 Adding runtime asset EdgeJs.dll from Edge.js/9.3.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll from Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll from Microsoft.CodeAnalysis.CSharp/3.4.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll from Microsoft.CodeAnalysis.Common/3.4.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll from Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll from Microsoft.CodeAnalysis.VisualBasic/3.4.0 Adding runtime asset lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding resources asset lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll from Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Adding runtime asset lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll from Microsoft.DotNet.InternalAbstractions/1.0.0 Adding runtime asset lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll from Microsoft.Extensions.DependencyModel/3.1.0 Adding runtime asset lib/netstandard1.0/System.Composition.AttributedModel.dll from System.Composition.AttributedModel/1.0.31 Adding runtime asset lib/netstandard1.0/System.Composition.Convention.dll from System.Composition.Convention/1.0.31 Adding runtime asset lib/netstandard1.0/System.Composition.Hosting.dll from System.Composition.Hosting/1.0.31 Adding runtime asset lib/netstandard1.0/System.Composition.Runtime.dll from System.Composition.Runtime/1.0.31 Adding runtime asset lib/netstandard1.0/System.Composition.TypedParts.dll from System.Composition.TypedParts/1.0.31 Adding runtime asset bootstrap.dll from bootstrap/1.0.0 Reconciling library Edge.js.CSharp/1.2.0 Library Edge.js.CSharp/1.2.0 is not a package Reconciling library Edge.js/9.3.0 Library Edge.js/9.3.0 is not a package Reconciling library Microsoft.CSharp/4.0.0.0 Library Microsoft.CSharp/4.0.0.0 is not a package Reconciling library Microsoft.CodeAnalysis.Analyzers/2.9.6 Library Microsoft.CodeAnalysis.Analyzers/2.9.6 does not exist Reconciling library Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0 Added runtime Microsoft.CodeAnalysis.CSharp.Workspaces deps entry [0] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [0] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [1] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [2] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [3] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [4] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [5] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [6] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [7] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [8] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [9] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [10] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [11] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.Workspaces.resources deps entry [12] [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll] Reconciling library Microsoft.CodeAnalysis.CSharp/3.4.0 Added runtime Microsoft.CodeAnalysis.CSharp deps entry [1] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [13] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [14] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [15] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [16] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [17] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [18] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [19] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [20] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [21] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [22] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [23] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [24] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll] Added resources Microsoft.CodeAnalysis.CSharp.resources deps entry [25] [Microsoft.CodeAnalysis.CSharp, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll] Reconciling library Microsoft.CodeAnalysis.Common/3.4.0 Added runtime Microsoft.CodeAnalysis deps entry [2] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [26] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [27] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [28] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [29] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [30] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [31] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [32] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [33] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [34] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [35] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [36] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [37] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll] Added resources Microsoft.CodeAnalysis.resources deps entry [38] [Microsoft.CodeAnalysis.Common, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll] Reconciling library Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.4.0 Added runtime Microsoft.CodeAnalysis.VisualBasic.Workspaces deps entry [3] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [39] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [40] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [41] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [42] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [43] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [44] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [45] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [46] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [47] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [48] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [49] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [50] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources deps entry [51] [Microsoft.CodeAnalysis.VisualBasic.Workspaces, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll] Reconciling library Microsoft.CodeAnalysis.VisualBasic/3.4.0 Added runtime Microsoft.CodeAnalysis.VisualBasic deps entry [4] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [52] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [53] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [54] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [55] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [56] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [57] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [58] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [59] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [60] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [61] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [62] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [63] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Added resources Microsoft.CodeAnalysis.VisualBasic.resources deps entry [64] [Microsoft.CodeAnalysis.VisualBasic, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll] Reconciling library Microsoft.CodeAnalysis.Workspaces.Common/3.4.0 Added runtime Microsoft.CodeAnalysis.Workspaces deps entry [5] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [65] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [66] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [67] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [68] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [69] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [70] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [71] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [72] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [73] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [74] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [75] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [76] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll] Added resources Microsoft.CodeAnalysis.Workspaces.resources deps entry [77] [Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll] Reconciling library Microsoft.CodeAnalysis/3.4.0 Library Microsoft.CodeAnalysis/3.4.0 does not exist Reconciling library Microsoft.DotNet.InternalAbstractions/1.0.0 Added runtime Microsoft.DotNet.InternalAbstractions deps entry [6] [Microsoft.DotNet.InternalAbstractions, 1.0.0, lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll] Reconciling library Microsoft.Extensions.DependencyModel/3.1.0 Added runtime Microsoft.Extensions.DependencyModel deps entry [7] [Microsoft.Extensions.DependencyModel, 3.1.0, lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll] Reconciling library Microsoft.NETCore.Platforms/2.1.2 Library Microsoft.NETCore.Platforms/2.1.2 does not exist Reconciling library Microsoft.NETCore.Targets/1.1.0 Library Microsoft.NETCore.Targets/1.1.0 does not exist Reconciling library Microsoft.VisualBasic.Core/10.0.5.0 Library Microsoft.VisualBasic.Core/10.0.5.0 is not a package Reconciling library Microsoft.VisualBasic/10.0.0.0 Library Microsoft.VisualBasic/10.0.0.0 is not a package Reconciling library Microsoft.Win32.Primitives/4.1.2.0 Library Microsoft.Win32.Primitives/4.1.2.0 is not a package Reconciling library System.AppContext.Reference/4.2.2.0 Library System.AppContext.Reference/4.2.2.0 is not a package Reconciling library System.AppContext/4.1.0 Library System.AppContext/4.1.0 does not exist Reconciling library System.Buffers/4.0.2.0 Library System.Buffers/4.0.2.0 is not a package Reconciling library System.Collections.Concurrent/4.0.15.0 Library System.Collections.Concurrent/4.0.15.0 is not a package Reconciling library System.Collections.Immutable.Reference/1.2.5.0 Library System.Collections.Immutable.Reference/1.2.5.0 is not a package Reconciling library System.Collections.Immutable/1.5.0 Library System.Collections.Immutable/1.5.0 does not exist Reconciling library System.Collections.NonGeneric/4.1.2.0 Library System.Collections.NonGeneric/4.1.2.0 is not a package Reconciling library System.Collections.Reference/4.1.2.0 Library System.Collections.Reference/4.1.2.0 is not a package Reconciling library System.Collections.Specialized/4.1.2.0 Library System.Collections.Specialized/4.1.2.0 is not a package Reconciling library System.Collections/4.3.0 Library System.Collections/4.3.0 does not exist Reconciling library System.ComponentModel.Annotations/4.3.1.0 Library System.ComponentModel.Annotations/4.3.1.0 is not a package Reconciling library System.ComponentModel.DataAnnotations/4.0.0.0 Library System.ComponentModel.DataAnnotations/4.0.0.0 is not a package Reconciling library System.ComponentModel.EventBasedAsync/4.1.2.0 Library System.ComponentModel.EventBasedAsync/4.1.2.0 is not a package Reconciling library System.ComponentModel.Primitives/4.2.2.0 Library System.ComponentModel.Primitives/4.2.2.0 is not a package Reconciling library System.ComponentModel.TypeConverter/4.2.2.0 Library System.ComponentModel.TypeConverter/4.2.2.0 is not a package Reconciling library System.ComponentModel/4.0.4.0 Library System.ComponentModel/4.0.4.0 is not a package Reconciling library System.Composition.AttributedModel/1.0.31 Added runtime System.Composition.AttributedModel deps entry [8] [System.Composition.AttributedModel, 1.0.31, lib/netstandard1.0/System.Composition.AttributedModel.dll] Reconciling library System.Composition.Convention/1.0.31 Added runtime System.Composition.Convention deps entry [9] [System.Composition.Convention, 1.0.31, lib/netstandard1.0/System.Composition.Convention.dll] Reconciling library System.Composition.Hosting/1.0.31 Added runtime System.Composition.Hosting deps entry [10] [System.Composition.Hosting, 1.0.31, lib/netstandard1.0/System.Composition.Hosting.dll] Reconciling library System.Composition.Runtime/1.0.31 Added runtime System.Composition.Runtime deps entry [11] [System.Composition.Runtime, 1.0.31, lib/netstandard1.0/System.Composition.Runtime.dll] Reconciling library System.Composition.TypedParts/1.0.31 Added runtime System.Composition.TypedParts deps entry [12] [System.Composition.TypedParts, 1.0.31, lib/netstandard1.0/System.Composition.TypedParts.dll] Reconciling library System.Composition/1.0.31 Library System.Composition/1.0.31 does not exist Reconciling library System.Configuration/4.0.0.0 Library System.Configuration/4.0.0.0 is not a package Reconciling library System.Console/4.1.2.0 Library System.Console/4.1.2.0 is not a package Reconciling library System.Core/4.0.0.0 Library System.Core/4.0.0.0 is not a package Reconciling library System.Data.Common/4.2.2.0 Library System.Data.Common/4.2.2.0 is not a package Reconciling library System.Data.DataSetExtensions/4.0.1.0 Library System.Data.DataSetExtensions/4.0.1.0 is not a package Reconciling library System.Data/4.0.0.0 Library System.Data/4.0.0.0 is not a package Reconciling library System.Diagnostics.Contracts/4.0.4.0 Library System.Diagnostics.Contracts/4.0.4.0 is not a package Reconciling library System.Diagnostics.Debug.Reference/4.1.2.0 Library System.Diagnostics.Debug.Reference/4.1.2.0 is not a package Reconciling library System.Diagnostics.Debug/4.3.0 Library System.Diagnostics.Debug/4.3.0 does not exist Reconciling library System.Diagnostics.DiagnosticSource/4.0.5.0 Library System.Diagnostics.DiagnosticSource/4.0.5.0 is not a package Reconciling library System.Diagnostics.FileVersionInfo/4.0.4.0 Library System.Diagnostics.FileVersionInfo/4.0.4.0 is not a package Reconciling library System.Diagnostics.Process/4.2.2.0 Library System.Diagnostics.Process/4.2.2.0 is not a package Reconciling library System.Diagnostics.StackTrace/4.1.2.0 Library System.Diagnostics.StackTrace/4.1.2.0 is not a package Reconciling library System.Diagnostics.TextWriterTraceListener/4.1.2.0 Library System.Diagnostics.TextWriterTraceListener/4.1.2.0 is not a package Reconciling library System.Diagnostics.Tools.Reference/4.1.2.0 Library System.Diagnostics.Tools.Reference/4.1.2.0 is not a package Reconciling library System.Diagnostics.Tools/4.3.0 Library System.Diagnostics.Tools/4.3.0 does not exist Reconciling library System.Diagnostics.TraceSource/4.1.2.0 Library System.Diagnostics.TraceSource/4.1.2.0 is not a package Reconciling library System.Diagnostics.Tracing/4.2.2.0 Library System.Diagnostics.Tracing/4.2.2.0 is not a package Reconciling library System.Drawing.Primitives/4.2.1.0 Library System.Drawing.Primitives/4.2.1.0 is not a package Reconciling library System.Drawing/4.0.0.0 Library System.Drawing/4.0.0.0 is not a package Reconciling library System.Dynamic.Runtime/4.1.2.0 Library System.Dynamic.Runtime/4.1.2.0 is not a package Reconciling library System.Globalization.Calendars/4.1.2.0 Library System.Globalization.Calendars/4.1.2.0 is not a package Reconciling library System.Globalization.Extensions/4.1.2.0 Library System.Globalization.Extensions/4.1.2.0 is not a package Reconciling library System.Globalization.Reference/4.1.2.0 Library System.Globalization.Reference/4.1.2.0 is not a package Reconciling library System.Globalization/4.3.0 Library System.Globalization/4.3.0 does not exist Reconciling library System.IO.Compression.Brotli/4.2.2.0 Library System.IO.Compression.Brotli/4.2.2.0 is not a package Reconciling library System.IO.Compression.FileSystem/4.0.0.0 Library System.IO.Compression.FileSystem/4.0.0.0 is not a package Reconciling library System.IO.Compression.ZipFile/4.0.5.0 Library System.IO.Compression.ZipFile/4.0.5.0 is not a package Reconciling library System.IO.Compression/4.2.2.0 Library System.IO.Compression/4.2.2.0 is not a package Reconciling library System.IO.FileSystem.DriveInfo/4.1.2.0 Library System.IO.FileSystem.DriveInfo/4.1.2.0 is not a package Reconciling library System.IO.FileSystem.Primitives.Reference/4.1.2.0 Library System.IO.FileSystem.Primitives.Reference/4.1.2.0 is not a package Reconciling library System.IO.FileSystem.Primitives/4.0.1 Library System.IO.FileSystem.Primitives/4.0.1 does not exist Reconciling library System.IO.FileSystem.Reference/4.1.2.0 Library System.IO.FileSystem.Reference/4.1.2.0 is not a package Reconciling library System.IO.FileSystem.Watcher/4.1.2.0 Library System.IO.FileSystem.Watcher/4.1.2.0 is not a package Reconciling library System.IO.FileSystem/4.0.1 Library System.IO.FileSystem/4.0.1 does not exist Reconciling library System.IO.IsolatedStorage/4.1.2.0 Library System.IO.IsolatedStorage/4.1.2.0 is not a package Reconciling library System.IO.MemoryMappedFiles/4.1.2.0 Library System.IO.MemoryMappedFiles/4.1.2.0 is not a package Reconciling library System.IO.Pipes/4.1.2.0 Library System.IO.Pipes/4.1.2.0 is not a package Reconciling library System.IO.Reference/4.2.2.0 Library System.IO.Reference/4.2.2.0 is not a package Reconciling library System.IO.UnmanagedMemoryStream/4.1.2.0 Library System.IO.UnmanagedMemoryStream/4.1.2.0 is not a package Reconciling library System.IO/4.3.0 Library System.IO/4.3.0 does not exist Reconciling library System.Linq.Expressions.Reference/4.2.2.0 Library System.Linq.Expressions.Reference/4.2.2.0 is not a package Reconciling library System.Linq.Expressions/4.3.0 Library System.Linq.Expressions/4.3.0 does not exist Reconciling library System.Linq.Parallel/4.0.4.0 Library System.Linq.Parallel/4.0.4.0 is not a package Reconciling library System.Linq.Queryable/4.0.4.0 Library System.Linq.Queryable/4.0.4.0 is not a package Reconciling library System.Linq.Reference/4.2.2.0 Library System.Linq.Reference/4.2.2.0 is not a package Reconciling library System.Linq/4.3.0 Library System.Linq/4.3.0 does not exist Reconciling library System.Memory.Reference/4.2.1.0 Library System.Memory.Reference/4.2.1.0 is not a package Reconciling library System.Memory/4.5.3 Library System.Memory/4.5.3 does not exist Reconciling library System.Net.Http/4.2.2.0 Library System.Net.Http/4.2.2.0 is not a package Reconciling library System.Net.HttpListener/4.0.2.0 Library System.Net.HttpListener/4.0.2.0 is not a package Reconciling library System.Net.Mail/4.0.2.0 Library System.Net.Mail/4.0.2.0 is not a package Reconciling library System.Net.NameResolution/4.1.2.0 Library System.Net.NameResolution/4.1.2.0 is not a package Reconciling library System.Net.NetworkInformation/4.2.2.0 Library System.Net.NetworkInformation/4.2.2.0 is not a package Reconciling library System.Net.Ping/4.1.2.0 Library System.Net.Ping/4.1.2.0 is not a package Reconciling library System.Net.Primitives/4.1.2.0 Library System.Net.Primitives/4.1.2.0 is not a package Reconciling library System.Net.Requests/4.1.2.0 Library System.Net.Requests/4.1.2.0 is not a package Reconciling library System.Net.Security/4.1.2.0 Library System.Net.Security/4.1.2.0 is not a package Reconciling library System.Net.ServicePoint/4.0.2.0 Library System.Net.ServicePoint/4.0.2.0 is not a package Reconciling library System.Net.Sockets/4.2.2.0 Library System.Net.Sockets/4.2.2.0 is not a package Reconciling library System.Net.WebClient/4.0.2.0 Library System.Net.WebClient/4.0.2.0 is not a package Reconciling library System.Net.WebHeaderCollection/4.1.2.0 Library System.Net.WebHeaderCollection/4.1.2.0 is not a package Reconciling library System.Net.WebProxy/4.0.2.0 Library System.Net.WebProxy/4.0.2.0 is not a package Reconciling library System.Net.WebSockets.Client/4.1.2.0 Library System.Net.WebSockets.Client/4.1.2.0 is not a package Reconciling library System.Net.WebSockets/4.1.2.0 Library System.Net.WebSockets/4.1.2.0 is not a package Reconciling library System.Net/4.0.0.0 Library System.Net/4.0.0.0 is not a package Reconciling library System.Numerics.Vectors/4.1.6.0 Library System.Numerics.Vectors/4.1.6.0 is not a package Reconciling library System.Numerics/4.0.0.0 Library System.Numerics/4.0.0.0 is not a package Reconciling library System.ObjectModel.Reference/4.1.2.0 Library System.ObjectModel.Reference/4.1.2.0 is not a package Reconciling library System.ObjectModel/4.3.0 Library System.ObjectModel/4.3.0 does not exist Reconciling library System.Reflection.DispatchProxy/4.0.6.0 Library System.Reflection.DispatchProxy/4.0.6.0 is not a package Reconciling library System.Reflection.Emit.ILGeneration.Reference/4.1.1.0 Library System.Reflection.Emit.ILGeneration.Reference/4.1.1.0 is not a package Reconciling library System.Reflection.Emit.ILGeneration/4.3.0 Library System.Reflection.Emit.ILGeneration/4.3.0 does not exist Reconciling library System.Reflection.Emit.Lightweight.Reference/4.1.1.0 Library System.Reflection.Emit.Lightweight.Reference/4.1.1.0 is not a package Reconciling library System.Reflection.Emit.Lightweight/4.3.0 Library System.Reflection.Emit.Lightweight/4.3.0 does not exist Reconciling library System.Reflection.Emit.Reference/4.1.2.0 Library System.Reflection.Emit.Reference/4.1.2.0 is not a package Reconciling library System.Reflection.Emit/4.3.0 Library System.Reflection.Emit/4.3.0 does not exist Reconciling library System.Reflection.Extensions.Reference/4.1.2.0 Library System.Reflection.Extensions.Reference/4.1.2.0 is not a package Reconciling library System.Reflection.Extensions/4.3.0 Library System.Reflection.Extensions/4.3.0 does not exist Reconciling library System.Reflection.Metadata.Reference/1.4.5.0 Library System.Reflection.Metadata.Reference/1.4.5.0 is not a package Reconciling library System.Reflection.Metadata/1.6.0 Library System.Reflection.Metadata/1.6.0 does not exist Reconciling library System.Reflection.Primitives.Reference/4.1.2.0 Library System.Reflection.Primitives.Reference/4.1.2.0 is not a package Reconciling library System.Reflection.Primitives/4.3.0 Library System.Reflection.Primitives/4.3.0 does not exist Reconciling library System.Reflection.Reference/4.2.2.0 Library System.Reflection.Reference/4.2.2.0 is not a package Reconciling library System.Reflection.TypeExtensions.Reference/4.1.2.0 Library System.Reflection.TypeExtensions.Reference/4.1.2.0 is not a package Reconciling library System.Reflection.TypeExtensions/4.3.0 Library System.Reflection.TypeExtensions/4.3.0 does not exist Reconciling library System.Reflection/4.3.0 Library System.Reflection/4.3.0 does not exist Reconciling library System.Resources.Reader/4.1.2.0 Library System.Resources.Reader/4.1.2.0 is not a package Reconciling library System.Resources.ResourceManager.Reference/4.1.2.0 Library System.Resources.ResourceManager.Reference/4.1.2.0 is not a package Reconciling library System.Resources.ResourceManager/4.3.0 Library System.Resources.ResourceManager/4.3.0 does not exist Reconciling library System.Resources.Writer/4.1.2.0 Library System.Resources.Writer/4.1.2.0 is not a package Reconciling library System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0 Library System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0 is not a package Reconciling library System.Runtime.CompilerServices.Unsafe/4.5.2 Library System.Runtime.CompilerServices.Unsafe/4.5.2 does not exist Reconciling library System.Runtime.CompilerServices.VisualC/4.1.2.0 Library System.Runtime.CompilerServices.VisualC/4.1.2.0 is not a package Reconciling library System.Runtime.Extensions.Reference/4.2.2.0 Library System.Runtime.Extensions.Reference/4.2.2.0 is not a package Reconciling library System.Runtime.Extensions/4.3.0 Library System.Runtime.Extensions/4.3.0 does not exist Reconciling library System.Runtime.Handles.Reference/4.1.2.0 Library System.Runtime.Handles.Reference/4.1.2.0 is not a package Reconciling library System.Runtime.Handles/4.0.1 Library System.Runtime.Handles/4.0.1 does not exist Reconciling library System.Runtime.InteropServices.Reference/4.2.2.0 Library System.Runtime.InteropServices.Reference/4.2.2.0 is not a package Reconciling library System.Runtime.InteropServices.RuntimeInformation.Reference/4.0.4.0 Library System.Runtime.InteropServices.RuntimeInformation.Reference/4.0.4.0 is not a package Reconciling library System.Runtime.InteropServices.RuntimeInformation/4.0.0 Library System.Runtime.InteropServices.RuntimeInformation/4.0.0 does not exist Reconciling library System.Runtime.InteropServices.WindowsRuntime/4.0.4.0 Library System.Runtime.InteropServices.WindowsRuntime/4.0.4.0 is not a package Reconciling library System.Runtime.InteropServices/4.1.0 Library System.Runtime.InteropServices/4.1.0 does not exist Reconciling library System.Runtime.Intrinsics/4.0.1.0 Library System.Runtime.Intrinsics/4.0.1.0 is not a package Reconciling library System.Runtime.Loader/4.1.1.0 Library System.Runtime.Loader/4.1.1.0 is not a package Reconciling library System.Runtime.Numerics/4.1.2.0 Library System.Runtime.Numerics/4.1.2.0 is not a package Reconciling library System.Runtime.Reference/4.2.2.0 Library System.Runtime.Reference/4.2.2.0 is not a package Reconciling library System.Runtime.Serialization.Formatters/4.0.4.0 Library System.Runtime.Serialization.Formatters/4.0.4.0 is not a package Reconciling library System.Runtime.Serialization.Json/4.0.5.0 Library System.Runtime.Serialization.Json/4.0.5.0 is not a package Reconciling library System.Runtime.Serialization.Primitives/4.2.2.0 Library System.Runtime.Serialization.Primitives/4.2.2.0 is not a package Reconciling library System.Runtime.Serialization.Xml/4.1.5.0 Library System.Runtime.Serialization.Xml/4.1.5.0 is not a package Reconciling library System.Runtime.Serialization/4.0.0.0 Library System.Runtime.Serialization/4.0.0.0 is not a package Reconciling library System.Runtime/4.3.0 Library System.Runtime/4.3.0 does not exist Reconciling library System.Security.Claims/4.1.2.0 Library System.Security.Claims/4.1.2.0 is not a package Reconciling library System.Security.Cryptography.Algorithms/4.3.2.0 Library System.Security.Cryptography.Algorithms/4.3.2.0 is not a package Reconciling library System.Security.Cryptography.Csp/4.1.2.0 Library System.Security.Cryptography.Csp/4.1.2.0 is not a package Reconciling library System.Security.Cryptography.Encoding/4.1.2.0 Library System.Security.Cryptography.Encoding/4.1.2.0 is not a package Reconciling library System.Security.Cryptography.Primitives/4.1.2.0 Library System.Security.Cryptography.Primitives/4.1.2.0 is not a package Reconciling library System.Security.Cryptography.X509Certificates/4.2.2.0 Library System.Security.Cryptography.X509Certificates/4.2.2.0 is not a package Reconciling library System.Security.Principal/4.1.2.0 Library System.Security.Principal/4.1.2.0 is not a package Reconciling library System.Security.SecureString/4.1.2.0 Library System.Security.SecureString/4.1.2.0 is not a package Reconciling library System.Security/4.0.0.0 Library System.Security/4.0.0.0 is not a package Reconciling library System.ServiceModel.Web/4.0.0.0 Library System.ServiceModel.Web/4.0.0.0 is not a package Reconciling library System.ServiceProcess/4.0.0.0 Library System.ServiceProcess/4.0.0.0 is not a package Reconciling library System.Text.Encoding.CodePages.Reference/4.1.3.0 Library System.Text.Encoding.CodePages.Reference/4.1.3.0 is not a package Reconciling library System.Text.Encoding.CodePages/4.5.1 Library System.Text.Encoding.CodePages/4.5.1 does not exist Reconciling library System.Text.Encoding.Extensions/4.1.2.0 Library System.Text.Encoding.Extensions/4.1.2.0 is not a package Reconciling library System.Text.Encoding.Reference/4.1.2.0 Library System.Text.Encoding.Reference/4.1.2.0 is not a package Reconciling library System.Text.Encoding/4.3.0 Library System.Text.Encoding/4.3.0 does not exist Reconciling library System.Text.Encodings.Web/4.0.5.0 Library System.Text.Encodings.Web/4.0.5.0 is not a package Reconciling library System.Text.Json.Reference/4.0.1.0 Library System.Text.Json.Reference/4.0.1.0 is not a package Reconciling library System.Text.Json/4.7.0 Library System.Text.Json/4.7.0 does not exist Reconciling library System.Text.RegularExpressions/4.2.2.0 Library System.Text.RegularExpressions/4.2.2.0 is not a package Reconciling library System.Threading.Channels/4.0.2.0 Library System.Threading.Channels/4.0.2.0 is not a package Reconciling library System.Threading.Overlapped/4.1.2.0 Library System.Threading.Overlapped/4.1.2.0 is not a package Reconciling library System.Threading.Reference/4.1.2.0 Library System.Threading.Reference/4.1.2.0 is not a package Reconciling library System.Threading.Tasks.Dataflow/4.6.5.0 Library System.Threading.Tasks.Dataflow/4.6.5.0 is not a package Reconciling library System.Threading.Tasks.Extensions.Reference/4.3.1.0 Library System.Threading.Tasks.Extensions.Reference/4.3.1.0 is not a package Reconciling library System.Threading.Tasks.Extensions/4.5.3 Library System.Threading.Tasks.Extensions/4.5.3 does not exist Reconciling library System.Threading.Tasks.Parallel/4.0.4.0 Library System.Threading.Tasks.Parallel/4.0.4.0 is not a package Reconciling library System.Threading.Tasks.Reference/4.1.2.0 Library System.Threading.Tasks.Reference/4.1.2.0 is not a package Reconciling library System.Threading.Tasks/4.3.0 Library System.Threading.Tasks/4.3.0 does not exist Reconciling library System.Threading.Thread/4.1.2.0 Library System.Threading.Thread/4.1.2.0 is not a package Reconciling library System.Threading.ThreadPool/4.1.2.0 Library System.Threading.ThreadPool/4.1.2.0 is not a package Reconciling library System.Threading.Timer/4.1.2.0 Library System.Threading.Timer/4.1.2.0 is not a package Reconciling library System.Threading/4.3.0 Library System.Threading/4.3.0 does not exist Reconciling library System.Transactions.Local/4.0.2.0 Library System.Transactions.Local/4.0.2.0 is not a package Reconciling library System.Transactions/4.0.0.0 Library System.Transactions/4.0.0.0 is not a package Reconciling library System.ValueTuple/4.0.3.0 Library System.ValueTuple/4.0.3.0 is not a package Reconciling library System.Web.HttpUtility/4.0.2.0 Library System.Web.HttpUtility/4.0.2.0 is not a package Reconciling library System.Web/4.0.0.0 Library System.Web/4.0.0.0 is not a package Reconciling library System.Windows/4.0.0.0 Library System.Windows/4.0.0.0 is not a package Reconciling library System.Xml.Linq/4.0.0.0 Library System.Xml.Linq/4.0.0.0 is not a package Reconciling library System.Xml.ReaderWriter/4.2.2.0 Library System.Xml.ReaderWriter/4.2.2.0 is not a package Reconciling library System.Xml.Serialization/4.0.0.0 Library System.Xml.Serialization/4.0.0.0 is not a package Reconciling library System.Xml.XDocument/4.1.2.0 Library System.Xml.XDocument/4.1.2.0 is not a package Reconciling library System.Xml.XPath.XDocument/4.1.2.0 Library System.Xml.XPath.XDocument/4.1.2.0 is not a package Reconciling library System.Xml.XPath/4.1.2.0 Library System.Xml.XPath/4.1.2.0 is not a package Reconciling library System.Xml.XmlDocument/4.1.2.0 Library System.Xml.XmlDocument/4.1.2.0 is not a package Reconciling library System.Xml.XmlSerializer/4.1.2.0 Library System.Xml.XmlSerializer/4.1.2.0 is not a package Reconciling library System.Xml/4.0.0.0 Library System.Xml/4.0.0.0 is not a package Reconciling library System/4.0.0.0 Library System/4.0.0.0 is not a package Reconciling library WindowsBase/4.0.0.0 Library WindowsBase/4.0.0.0 is not a package Reconciling library bootstrap/1.0.0 Library bootstrap/1.0.0 is not a package Reconciling library mscorlib/4.0.0.0 Library mscorlib/4.0.0.0 is not a package Reconciling library netstandard/2.1.0.0 Library netstandard/2.1.0.0 is not a package Reconciling library runtime.native.System/4.0.0 Library runtime.native.System/4.0.0 does not exist -- Listing probe configurations... probe_config_t: probe=[/Users/bjenks/.nuget/packages] match-hash=[1] patch-roll-forward=[0] prerelease-roll-forward=[0] deps-json=[0x0] probe_config_t: probe=[/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0] match-hash=[0] patch-roll-forward=[0] prerelease-roll-forward=[0] deps-json=[0x104a3a550] Adding tpa entry: /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/bootstrap.dll Processing TPA for deps entry [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] Considering entry [Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] and probe dir [/Users/bjenks/.nuget/packages] The file hash [eEGy3aupnjYWvdNDLqMyM7/b755t7cejBgRB0XF1rg2LIBtTmZHlxDOdT2ebMovyelM9k2z1XUlCgiZIR177ZQ==][88] did not match entry hash [ReUtqcb+Pz1jtnVZTfDZl1uPV0mrngVA2U+pzxJ7MtrFM1rjlCU2KxuXs8VaOXUteYYAlAn1ZhMYlE3P8j2hIg==][88] Skipping... match hash failed Considering entry [Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] and probe dir [/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0] Skipping... probe in deps json failed Local path query did not exist /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll Error: assembly specified in the dependencies manifest was not found -- package: 'Microsoft.CodeAnalysis.CSharp.Workspaces', version: '3.4.0', path: 'lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll' /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145 return edge.initializeClrFunc(options); ^ TypeError: edge.initializeClrFunc is not a function at Object.exports.func (/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145:17) at [eval]:1:94 at Script.runInThisContext (vm.js:116:20) at Object.runInThisContext (vm.js:306:38) at Object. ([eval]-wrapper:9:26) at Module._compile (internal/modules/cjs/loader.js:956:30) at evalScript (internal/process/execution.js:80:25) at internal/main/eval_string.js:23:3 ```

Most Relevant Bit:

-- Listing probe configurations...
probe_config_t: probe=[/Users/bjenks/.nuget/packages] match-hash=[1] patch-roll-forward=[0] prerelease-roll-forward=[0] deps-json=[0x0]
probe_config_t: probe=[/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0] match-hash=[0] patch-roll-forward=[0] prerelease-roll-forward=[0] deps-json=[0x104a3a550]
Adding tpa entry: /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/bootstrap.dll
Processing TPA for deps entry [Microsoft.CodeAnalysis.CSharp.Workspaces, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll]
  Considering entry [Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] and probe dir [/Users/bjenks/.nuget/packages]
The file hash [eEGy3aupnjYWvdNDLqMyM7/b755t7cejBgRB0XF1rg2LIBtTmZHlxDOdT2ebMovyelM9k2z1XUlCgiZIR177ZQ==][88] did not match entry hash [ReUtqcb+Pz1jtnVZTfDZl1uPV0mrngVA2U+pzxJ7MtrFM1rjlCU2KxuXs8VaOXUteYYAlAn1ZhMYlE3P8j2hIg==][88]
    Skipping... match hash failed
  Considering entry [Microsoft.CodeAnalysis.CSharp.Workspaces/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll] and probe dir [/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0]
    Skipping... probe in deps json failed
    Local path query did not exist /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Error: assembly specified in the dependencies manifest was not found -- package: 'Microsoft.CodeAnalysis.CSharp.Workspaces', version: '3.4.0', path: 'lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll'
brianjenkins94 commented 4 years ago

Based off of this I've added a publish step.

$ cd lib/bootstrap \
    && dotnet publish --configuration Release --framework netcoreapp3.1 --output bin/Release/netcoreapp3.1 --self-contained \
    && cd ../.. \
    && node-gyp configure build \
    && node -e "process.env.EDGE_USE_CORECLR = '1'; require('./lib/edge.js').func('async (input) => { return input.ToString(); }')"

Output:

Load edge native library from: /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/build/Release/edge_coreclr

/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145
    return edge.initializeClrFunc(options);
                ^
/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145
    return edge.initializeClrFunc(options);
                ^

Error: Unable to resolve reference to System.Runtime.
    at Object.exports.func (/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145:17)
    at [eval]:1:63
    at Script.runInThisContext (vm.js:116:20)
    at Object.runInThisContext (vm.js:306:38)
    at Object.<anonymous> ([eval]-wrapper:9:26)
    at Module._compile (internal/modules/cjs/loader.js:956:30)
    at evalScript (internal/process/execution.js:80:25)
    at internal/main/eval_string.js:23:3 {
  TargetSite: {
    ...
  },
  StackTrace: '   at EdgeCompiler.TryCompile(String source, List`1 references, IDictionary`2 compileAssemblies, String& errors, Assembly& assembly) in /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/src/double/Edge.js.CSharp/EdgeCompiler.cs:line 230\n' +
    '   at EdgeCompiler.CompileFunc(IDictionary`2 parameters, IDictionary`2 compileAssemblies)',
  Message: 'Unable to resolve reference to System.Runtime.',
  Data: {},
  InnerException: null,
  HelpLink: null,
  Source: 'Edge.js.CSharp',
  HResult: -2146233088,
  Name: 'System.Exception',
  message: 'Unable to resolve reference to System.Runtime.',
  name: 'System.Exception',
  stack: '/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145\n' +
    '    return edge.initializeClrFunc(options);\n' +
    '                ^\n' +
    '\n' +
    'Error: Unable to resolve reference to System.Runtime.\n' +
    '    at Object.exports.func (/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145:17)\n' +
    '    at [eval]:1:63\n' +
    '    at Script.runInThisContext (vm.js:116:20)\n' +
    '    at Object.runInThisContext (vm.js:306:38)\n' +
    '    at Object.<anonymous> ([eval]-wrapper:9:26)\n' +
    '    at Module._compile (internal/modules/cjs/loader.js:956:30)\n' +
    '    at evalScript (internal/process/execution.js:80:25)\n' +
    '    at internal/main/eval_string.js:23:3'
}

Unable to resolve reference to System.Runtime?

Why am I having so many dependency issues?

Actually, it looks like this time it's coming from my code.

brianjenkins94 commented 4 years ago

The problem is somewhere around here:

edge-js/src/double/Edge.js/dotnetcore/coreclrembedding.cs

Since adding System.Runtime as a dependency didn't fix the issue.

brianjenkins94 commented 4 years ago

I added these assemblies to Edge.js.csproj but no change.

The only assemblies that I get from compileAssemblies are:

Microsoft.CodeAnalysis.Common
Microsoft.CodeAnalysis.CSharp
Microsoft.CodeAnalysis.CSharp.Workspaces
Microsoft.CodeAnalysis.VisualBasic
Microsoft.CodeAnalysis.VisualBasic.Workspaces
Microsoft.CodeAnalysis.Workspaces.Common
Microsoft.DotNet.InternalAbstractions
Microsoft.Extensions.DependencyModel
System.Composition.AttributedModel
System.Composition.Convention
System.Composition.Hosting
System.Composition.Runtime
System.Composition.TypedParts
System.Text.Json
System.Xml.XPath.XmlDocument
bootstrap
Microsoft.CodeAnalysis
Microsoft.CodeAnalysis.Workspaces
Edge.js
EdgeJs
Edge.js.CSharp

Weirdly I can't seem to influence that collection.

The issue may be originating from C++ land.

Lots of libraries look like they're being skipped here:

edge-js/src/CoreCLREmbedding/deps/deps_resolver.cpp

227 match-hash-failed's

brianjenkins94 commented 4 years ago

Dissecting the entires for System.Runtime (did not load):

Processing TPA for deps entry

[runtime.osx-x64.Microsoft.NETCore.App, 3.1.0-rtm.19565.2, runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.dll]

Considering entry

[runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2/runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.dll]

and probe dir

[/Users/bjenks/.nuget/packages]

-The hash file is invalid

-[/Users/bjenks/.nuget/packages/runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2/runtime.osx-x64.Microsoft.NETCore.App.3.1.0-rtm.19565.2.nupkg.sha512]

-Skipping... match hash failed
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Considering entry

[runtime.osx-x64.Microsoft.NETCore.App/3.1.0-rtm.19565.2/runtimes/osx-x64/lib/netcoreapp3.1/System.Runtime.dll]

-and probe dir

-[/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0]

Local path query exists

/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0/System.Runtime.dll

Probed deps json and matched

[/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0/System.Runtime.dll]

Adding tpa entry:

/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0/System.Runtime.dll

and Microsoft.CodeAnalysis.Workspaces (loaded):

Processing TPA for deps entry

[Microsoft.CodeAnalysis.Workspaces.Common, 3.4.0, lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll]

Considering entry

[Microsoft.CodeAnalysis.Workspaces.Common/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll]

and probe dir

[/Users/bjenks/.nuget/packages]

-The file hash

-[BnE/sgDNtxSaCxbwfUglgyUqNiGUHrH/iJ5s6WC62gqpNYUWthdbvkOPml+2Kyit3ZhW7nvQBX8wvG5JCFK7BQ==][88]

-did not match entry hash

-[AJszIKY+hXBXDqbcYTiztAQ17GTYfSMDB5u2plzJQqwKN17bqYKr1aC/1NkI5Oho9tixVJ0T/SoeYHpDUMsIBA==][88]

-Skipping... match hash failed
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Considering entry

[Microsoft.CodeAnalysis.Workspaces.Common/3.4.0/lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll]

-and probe dir

-[/usr/local/share/dotnet/shared/Microsoft.NETCore.App/3.1.0]

-Skipping... probe in deps json failed
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Local path query exists

/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll

Adding tpa entry:

/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/bootstrap/bin/Release/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll
brianjenkins94 commented 4 years ago

Well, I'm out of ideas.

@agracio or @tjanczuk any chance I could bother either of you for a consult?

I can't tell if it's an issue with CoreCLREmbedding's dependency resolution or with .NET Core but I can't seem to dynamically reference anything.

I'm quite stuck on this:

  StackTrace: '   at EdgeCompiler.TryCompile(String source, List`1 references, IDictionary`2 compileAssemblies, String& errors, Assembly& assembly) in /Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/src/double/Edge.js.CSharp/EdgeCompiler.cs:line 230\n' +
    '   at EdgeCompiler.CompileFunc(IDictionary`2 parameters, IDictionary`2 compileAssemblies)',
  Message: 'Unable to resolve reference to System.Runtime.',
  Data: {},
  InnerException: null,
  HelpLink: null,
  Source: 'Edge.js.CSharp',
  HResult: -2146233088,
  Name: 'System.Exception',
  message: 'Unable to resolve reference to System.Runtime.',
  name: 'System.Exception',
  stack: '/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145\n' +
    '    return edge.initializeClrFunc(options);\n' +
    '                ^\n' +
    '\n' +
    'Error: Unable to resolve reference to System.Runtime.\n' +
    '    at Object.exports.func (/Users/bjenks/Developer/node-native-addon-experiments/edge/edge-js/lib/edge.js:145:17)\n' +
    '    at [eval]:1:63\n' +
    '    at Script.runInThisContext (vm.js:116:20)\n' +
    '    at Object.runInThisContext (vm.js:306:38)\n' +
    '    at Object.<anonymous> ([eval]-wrapper:9:26)\n' +
    '    at Module._compile (internal/modules/cjs/loader.js:956:30)\n' +
    '    at evalScript (internal/process/execution.js:80:25)\n' +
    '    at internal/main/eval_string.js:23:3'

Here's my working copy: edge-js.zip

But I wouldn't expect it to work on Windows.

leszek95b commented 4 years ago

@brianjenkins94 was this issue ever resolved?

brianjenkins94 commented 4 years ago

I think @corylulu tracked it down to a case-sensitivity issue in one of the other issues I reported:

https://github.com/agracio/edge-js/issues/96#issuecomment-639995596

I haven't tried it though.