diff options
author | mwrock <matt@mattwrock.com> | 2020-11-17 13:08:59 -0800 |
---|---|---|
committer | mwrock <matt@mattwrock.com> | 2020-11-17 13:08:59 -0800 |
commit | bd6dc3c8eadb23713a4d50ef6284a08563b25a60 (patch) | |
tree | 07615f51d7047cedab386f86a2e2be89fb1b5764 | |
parent | 225268c1a4697b06d067420d69b3def1ea48b092 (diff) | |
download | chef-bd6dc3c8eadb23713a4d50ef6284a08563b25a60.tar.gz |
update pwsh in powershell_exec to 7.1.0 and add comments explaining how to pull in updatesps71
Signed-off-by: mwrock <matt@mattwrock.com>
1170 files changed, 5208 insertions, 5076 deletions
diff --git a/.gitignore b/.gitignore index d63295d803..0699f6f70f 100644 --- a/.gitignore +++ b/.gitignore @@ -86,7 +86,7 @@ ext/win32-eventlog/chef-log.man distro/powershell/chef/chef.psm1 # tool logs -ext/win32-eventlog/mkmf.log +mkmf.log # ignore byebug command history file. .byebug_history @@ -72,6 +72,9 @@ eval_gemfile("./Gemfile.local") if File.exist?("./Gemfile.local") # For FFI to call into PowerShell we need the binaries and assemblies located # in the Ruby bindir. # The Powershell DLL source lives here: https://github.com/chef/chef-powershell-shim +# Every merge into that repo triggers a Habitat build and promotion. Running +# the rake :update_chef_exec_dll task in this (chef/chef) repo will pull down +# the built packages and copy the binaries to distro/ruby_bin_folder. # # We copy (and overwrite) these files every time "bundle <exec|install>" is # executed, just in case they have changed. @@ -88,6 +88,25 @@ task :register_eventlog do end end +desc "Copies powershell_exec related binaries from the latest built Habitat Packages" +task :update_chef_exec_dll do + raise "This task must be run on Windows since we are installing a Windows targeted package!" unless Gem.win_platform? + + require "mkmf" + raise "Unable to locate Habitat cli. Please install Habitat cli before invoking this task!" unless find_executable "hab" + + sh("hab pkg install chef/chef-powershell-shim") + sh("hab pkg install chef/chef-powershell-shim-x86") + x64 = `hab pkg path chef/chef-powershell-shim`.chomp.gsub(/\\/, "/") + x86 = `hab pkg path chef/chef-powershell-shim-x86`.chomp.gsub(/\\/, "/") + FileUtils.rm_rf(Dir["distro/ruby_bin_folder/AMD64/*"]) + FileUtils.rm_rf(Dir["distro/ruby_bin_folder/x86/*"]) + puts "Copying #{x64}/bin/* to distro/ruby_bin_folder/AMD64" + FileUtils.cp_r(Dir["#{x64}/bin/*"], "distro/ruby_bin_folder/AMD64") + puts "Copying #{x86}/bin/* to distro/ruby_bin_folder/x86" + FileUtils.cp_r(Dir["#{x86}/bin/*"], "distro/ruby_bin_folder/x86") +end + begin require "chefstyle" require "rubocop/rake_task" diff --git a/distro/ruby_bin_folder/AMD64/Chef.PowerShell.Wrapper.dll b/distro/ruby_bin_folder/AMD64/Chef.PowerShell.Wrapper.dll Binary files differindex 4b1a0dd692..c411388674 100644 --- a/distro/ruby_bin_folder/AMD64/Chef.PowerShell.Wrapper.dll +++ b/distro/ruby_bin_folder/AMD64/Chef.PowerShell.Wrapper.dll diff --git a/distro/ruby_bin_folder/AMD64/Chef.PowerShell.dll b/distro/ruby_bin_folder/AMD64/Chef.PowerShell.dll Binary files differindex 19f5e0f1ed..ec80d05b33 100644 --- a/distro/ruby_bin_folder/AMD64/Chef.PowerShell.dll +++ b/distro/ruby_bin_folder/AMD64/Chef.PowerShell.dll diff --git a/distro/ruby_bin_folder/AMD64/Ijwhost.dll b/distro/ruby_bin_folder/AMD64/Ijwhost.dll Binary files differindex 0909a28a44..e2c6c9fc90 100644 --- a/distro/ruby_bin_folder/AMD64/Ijwhost.dll +++ b/distro/ruby_bin_folder/AMD64/Ijwhost.dll diff --git a/distro/ruby_bin_folder/AMD64/concrt140.dll b/distro/ruby_bin_folder/AMD64/concrt140.dll Binary files differindex 8345e986bb..87dd4f08fe 100644 --- a/distro/ruby_bin_folder/AMD64/concrt140.dll +++ b/distro/ruby_bin_folder/AMD64/concrt140.dll diff --git a/distro/ruby_bin_folder/AMD64/host/fxr/3.1.8/hostfxr.dll b/distro/ruby_bin_folder/AMD64/host/fxr/3.1.8/hostfxr.dll Binary files differdeleted file mode 100644 index 364091e819..0000000000 --- a/distro/ruby_bin_folder/AMD64/host/fxr/3.1.8/hostfxr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/host/fxr/5.0.0/hostfxr.dll b/distro/ruby_bin_folder/AMD64/host/fxr/5.0.0/hostfxr.dll Binary files differnew file mode 100644 index 0000000000..7595b4cd83 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/host/fxr/5.0.0/hostfxr.dll diff --git a/distro/ruby_bin_folder/AMD64/msvcp140.dll b/distro/ruby_bin_folder/AMD64/msvcp140.dll Binary files differindex a4ec72e872..0e0639bc22 100644 --- a/distro/ruby_bin_folder/AMD64/msvcp140.dll +++ b/distro/ruby_bin_folder/AMD64/msvcp140.dll diff --git a/distro/ruby_bin_folder/AMD64/msvcp140_1.dll b/distro/ruby_bin_folder/AMD64/msvcp140_1.dll Binary files differindex 08f9e4dff9..53845b5f1f 100644 --- a/distro/ruby_bin_folder/AMD64/msvcp140_1.dll +++ b/distro/ruby_bin_folder/AMD64/msvcp140_1.dll diff --git a/distro/ruby_bin_folder/AMD64/msvcp140_2.dll b/distro/ruby_bin_folder/AMD64/msvcp140_2.dll Binary files differindex 4805e97c6b..4365b9f06d 100644 --- a/distro/ruby_bin_folder/AMD64/msvcp140_2.dll +++ b/distro/ruby_bin_folder/AMD64/msvcp140_2.dll diff --git a/distro/ruby_bin_folder/AMD64/msvcp140_atomic_wait.dll b/distro/ruby_bin_folder/AMD64/msvcp140_atomic_wait.dll Binary files differnew file mode 100644 index 0000000000..1cfb379c67 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/msvcp140_atomic_wait.dll diff --git a/distro/ruby_bin_folder/AMD64/msvcp140_codecvt_ids.dll b/distro/ruby_bin_folder/AMD64/msvcp140_codecvt_ids.dll Binary files differindex 0b31cea98f..42cc3406a5 100644 --- a/distro/ruby_bin_folder/AMD64/msvcp140_codecvt_ids.dll +++ b/distro/ruby_bin_folder/AMD64/msvcp140_codecvt_ids.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll Binary files differdeleted file mode 100644 index e8f475c3dc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll Binary files differdeleted file mode 100644 index 573150ab44..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb Binary files differdeleted file mode 100644 index 244a59acc4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json deleted file mode 100644 index 48b8c87e25..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll Binary files differdeleted file mode 100644 index 0909a28a44..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll Binary files differdeleted file mode 100644 index 1cf1ed82bf..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll Binary files differdeleted file mode 100644 index e7c2bf1789..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll Binary files differdeleted file mode 100644 index 6eb512c704..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll Binary files differdeleted file mode 100644 index e4c8010fee..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll Binary files differdeleted file mode 100644 index 4761ae95de..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json deleted file mode 100644 index bf4cb3f196..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json +++ /dev/null @@ -1,2522 +0,0 @@ -{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1/win10-x64",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {},
- ".NETCoreApp,Version=v3.1/win10-x64": {
- "Chef.Powershell.Core/1.0.0": {
- "dependencies": {
- "Microsoft.PowerShell.Commands.Diagnostics": "7.0.3",
- "Microsoft.PowerShell.Commands.Management": "7.0.3",
- "Microsoft.PowerShell.Commands.Utility": "7.0.3",
- "Microsoft.PowerShell.ConsoleHost": "7.0.3",
- "Microsoft.WSMan.Management": "7.0.3",
- "Microsoft.WSMan.Runtime": "7.0.3",
- "Newtonsoft.Json": "12.0.3",
- "System.Management.Automation": "7.0.3",
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "3.1.0"
- },
- "runtime": {
- "Chef.Powershell.Core.dll": {}
- }
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.0": {
- "runtime": {
- "Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.VisualBasic.Core.dll": {
- "assemblyVersion": "10.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.VisualBasic.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.Win32.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.AppContext.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Buffers.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Concurrent.dll": {
- "assemblyVersion": "4.0.15.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.NonGeneric.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Specialized.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.Annotations.dll": {
- "assemblyVersion": "4.3.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.DataAnnotations.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.EventBasedAsync.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Configuration.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Console.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Core.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.Common.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.DataSetExtensions.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Contracts.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Debug.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.FileVersionInfo.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Process.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.StackTrace.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.TextWriterTraceListener.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Tools.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.TraceSource.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Tracing.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Drawing.Primitives.dll": {
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Drawing.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.Calendars.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.Brotli.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.FileSystem.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.DriveInfo.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.Watcher.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.IsolatedStorage.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.MemoryMappedFiles.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Pipes.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Pipes.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.UnmanagedMemoryStream.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Expressions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Parallel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Queryable.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Memory.dll": {
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Http.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.HttpListener.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Mail.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.NameResolution.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.NetworkInformation.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Ping.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Requests.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Security.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.ServicePoint.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Sockets.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebClient.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebHeaderCollection.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebProxy.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebSockets.Client.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebSockets.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Numerics.Vectors.dll": {
- "assemblyVersion": "4.1.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Numerics.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ObjectModel.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.DataContractSerialization.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Uri.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Xml.Linq.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Xml.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.DispatchProxy.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Metadata.dll": {
- "assemblyVersion": "1.4.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.Reader.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.ResourceManager.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.Writer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.CompilerServices.VisualC.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Extensions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Handles.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.WindowsRuntime.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Intrinsics.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Loader.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Numerics.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Formatters.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Json.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Xml.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.WindowsRuntime.UI.Xaml.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.WindowsRuntime.dll": {
- "assemblyVersion": "4.0.15.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.AccessControl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Claims.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Algorithms.dll": {
- "assemblyVersion": "4.3.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Cng.dll": {
- "assemblyVersion": "4.3.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Csp.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Encoding.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.OpenSsl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.X509Certificates.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Principal.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.SecureString.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ServiceModel.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ServiceProcess.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encodings.Web.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Json.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.RegularExpressions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Channels.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Overlapped.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Dataflow.dll": {
- "assemblyVersion": "4.6.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "4.3.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Parallel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Thread.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.ThreadPool.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Timer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Transactions.Local.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Transactions.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ValueTuple.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Web.HttpUtility.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Windows.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.Linq.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XPath.XDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XPath.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XmlDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XmlSerializer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "WindowsBase.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "mscorlib.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "netstandard.dll": {
- "assemblyVersion": "2.1.0.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "native": {
- "Microsoft.DiaSymReader.Native.amd64.dll": {
- "fileVersion": "14.12.25830.2"
- },
- "SOS_README.md": {
- "fileVersion": "0.0.0.0"
- },
- "System.Private.CoreLib.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56402"
- },
- "api-ms-win-core-console-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-datetime-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-debug-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-errorhandling-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l2-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-handle-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-heap-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-interlocked-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-libraryloader-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-localization-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-memory-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-namedpipe-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processenvironment-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processthreads-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processthreads-l1-1-1.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-profile-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-rtlsupport-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-string-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-synch-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-synch-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-sysinfo-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-timezone-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-util-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-conio-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-convert-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-environment-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-filesystem-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-heap-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-locale-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-math-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-multibyte-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-private-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-process-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-runtime-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-stdio-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-string-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-time-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-utility-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "clrcompression.dll": {
- "fileVersion": "4.700.19.56404"
- },
- "clretwrc.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "clrjit.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "coreclr.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "dbgshim.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "hostfxr.dll": {
- "fileVersion": "3.100.19.56502"
- },
- "hostpolicy.dll": {
- "fileVersion": "3.100.19.56502"
- },
- "mscordaccore.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscordaccore_amd64_amd64_4.700.19.56402.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscordbi.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscorrc.debug.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscorrc.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "ucrtbase.dll": {
- "fileVersion": "10.0.17134.12"
- }
- }
- },
- "Markdig.Signed/0.18.3": {
- "runtime": {
- "lib/netcoreapp2.1/Markdig.Signed.dll": {
- "assemblyVersion": "0.18.3.0",
- "fileVersion": "0.18.3.0"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.13.1": {
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "4.6.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
- "assemblyVersion": "2.13.1.12554",
- "fileVersion": "2.13.1.12554"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/2.9.6": {},
- "Microsoft.CodeAnalysis.Common/3.4.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "2.9.6",
- "System.Collections.Immutable": "1.5.0",
- "System.Memory": "4.5.3",
- "System.Reflection.Metadata": "1.6.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.7.1",
- "System.Threading.Tasks.Extensions": "4.5.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "3.4.0.0",
- "fileVersion": "3.400.19.56804"
- }
- },
- "resources": {
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.4.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "3.4.0.0",
- "fileVersion": "3.400.19.56804"
- }
- },
- "resources": {
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Microsoft.Management.Infrastructure/2.0.0": {
- "dependencies": {
- "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
- "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
- }
- },
- "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {},
- "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
- "runtime": {
- "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "10.0.18362.1"
- }
- },
- "native": {
- "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x64/native/mi.dll": {
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x64/native/miutils.dll": {
- "fileVersion": "10.0.18362.1"
- }
- }
- },
- "Microsoft.NETCore.Platforms/3.1.1": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.PowerShell.Commands.Diagnostics/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Diagnostics.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Commands.Management/7.0.3": {
- "dependencies": {
- "Microsoft.PowerShell.Security": "7.0.3",
- "System.ServiceProcess.ServiceController": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Management.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Commands.Utility/7.0.3": {
- "dependencies": {
- "Microsoft.CodeAnalysis.CSharp": "3.4.0",
- "Microsoft.PowerShell.MarkdownRender": "7.0.3",
- "NJsonSchema": "10.1.23",
- "System.Drawing.Common": "4.7.0",
- "System.Management.Automation": "7.0.3",
- "System.Threading.AccessControl": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Utility.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.ConsoleHost/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.ConsoleHost.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.CoreCLR.Eventing/7.0.3": {
- "dependencies": {
- "System.Diagnostics.EventLog": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.MarkdownRender/7.0.3": {
- "dependencies": {
- "Markdig.Signed": "0.18.3",
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.MarkdownRender.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Native/7.0.0": {
- "native": {
- "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
- "fileVersion": "10.0.10011.16384"
- },
- "runtimes/win-x64/native/pwrshplugin.dll": {
- "fileVersion": "10.0.10011.16384"
- }
- }
- },
- "Microsoft.PowerShell.Security/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Security.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.Win32.Registry/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.Win32.Registry.AccessControl/4.7.0": {
- "dependencies": {
- "Microsoft.Win32.Registry": "4.7.0",
- "System.Security.AccessControl": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.WSMan.Management/7.0.3": {
- "dependencies": {
- "Microsoft.WSMan.Runtime": "7.0.3",
- "System.Management.Automation": "7.0.3",
- "System.ServiceProcess.ServiceController": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.WSMan.Management.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.WSMan.Runtime/7.0.3": {
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.WSMan.Runtime.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Namotion.Reflection/1.0.11": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0"
- },
- "runtime": {
- "lib/netstandard2.0/Namotion.Reflection.dll": {
- "assemblyVersion": "1.0.11.0",
- "fileVersion": "1.0.11.0"
- }
- }
- },
- "Newtonsoft.Json/12.0.3": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "12.0.0.0",
- "fileVersion": "12.0.3.23909"
- }
- }
- },
- "NJsonSchema/10.1.23": {
- "dependencies": {
- "Namotion.Reflection": "1.0.11",
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/NJsonSchema.dll": {
- "assemblyVersion": "10.1.23.0",
- "fileVersion": "10.1.23.0"
- }
- }
- },
- "runtime.any.System.Collections/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Globalization/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Globalization.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.IO/4.3.0": {
- "runtime": {
- "lib/netstandard1.5/System.IO.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection/4.3.0": {
- "runtime": {
- "lib/netstandard1.5/System.Reflection.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection.Extensions/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Extensions.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection.Primitives/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Primitives.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Resources.ResourceManager/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Resources.ResourceManager.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime/4.3.0": {
- "dependencies": {
- "System.Private.Uri": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime.Handles/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Handles.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime.InteropServices/4.3.0": {
- "runtime": {
- "lib/netstandard1.6/System.Runtime.InteropServices.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Text.Encoding/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Text.Encoding.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Threading.Tasks/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Threading.Tasks.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win.System.Diagnostics.Debug/4.3.0": {
- "runtime": {
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win.System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "System.Private.Uri": "4.3.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win7.System.Private.Uri/4.3.0": {
- "runtime": {
- "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.CodeDom/4.7.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Collections": "4.3.0"
- }
- },
- "System.Collections.Immutable/1.5.0": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.3.0",
- "fileVersion": "4.6.26515.6"
- }
- }
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "4.7.0",
- "System.Security.Permissions": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.win.System.Diagnostics.Debug": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.6.0": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.46214"
- }
- }
- },
- "System.Diagnostics.EventLog/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.Registry": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.DirectoryServices/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "System.IO.FileSystem.AccessControl": "4.7.0",
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Permissions": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Drawing.Common/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.SystemEvents": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Globalization": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.any.System.IO": "4.3.0"
- }
- },
- "System.IO.FileSystem.AccessControl/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Management/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.Registry": "4.7.0",
- "System.CodeDom": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Management.Automation/7.0.3": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.13.1",
- "Microsoft.Management.Infrastructure": "2.0.0",
- "Microsoft.PowerShell.CoreCLR.Eventing": "7.0.3",
- "Microsoft.PowerShell.Native": "7.0.0",
- "Microsoft.Win32.Registry.AccessControl": "4.7.0",
- "Newtonsoft.Json": "12.0.3",
- "System.Configuration.ConfigurationManager": "4.7.0",
- "System.DirectoryServices": "4.7.0",
- "System.IO.FileSystem.AccessControl": "4.7.0",
- "System.Management": "4.7.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Cryptography.Pkcs": "4.7.0",
- "System.Security.Permissions": "4.7.0",
- "System.Text.Encoding.CodePages": "4.7.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/System.Management.Automation.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "System.Memory/4.5.3": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Private.Uri/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "runtime.win7.System.Private.Uri": "4.3.0"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection.Extensions": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.6.0": {
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "assemblyVersion": "1.4.3.0",
- "fileVersion": "4.6.26515.6"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection.Primitives": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Resources.ResourceManager": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "runtime.any.System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "runtime": {
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.20.12001"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.win.System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "runtime.any.System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.Security.AccessControl/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "assemblyVersion": "4.3.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.Cng": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Permissions/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Windows.Extensions": "4.7.0"
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Principal.Windows/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.ServiceProcess.ServiceController/4.7.0": {
- "dependencies": {
- "System.Diagnostics.EventLog": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
- "assemblyVersion": "4.2.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.7.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.AccessControl/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.3": {},
- "System.Windows.Extensions/4.7.0": {
- "dependencies": {
- "System.Drawing.Common": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- }
- }
- },
- "libraries": {
- "Chef.Powershell.Core/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.0": {
- "type": "runtimepack",
- "serviceable": false,
- "sha512": ""
- },
- "Markdig.Signed/0.18.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l8838LV/+sD1Smr13BnvS9MRlRpC3jfKmcFY3rTk/YFf0haE2QhzjBESnwwiS5LpMV3f09KKf0Pbkyh32dJPkQ==",
- "path": "markdig.signed/0.18.3",
- "hashPath": "markdig.signed.0.18.3.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights/2.13.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BQhLmYR06Z8TVCdxnr8WOhhovJHtqYRNeB5gePBdQ4uDOE8D4IK9HW9i6a3llELz1QHv4HtFpku6dpXMGnO22g==",
- "path": "microsoft.applicationinsights/2.13.1",
- "hashPath": "microsoft.applicationinsights.2.13.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/2.9.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Kmms3TxGQMNb95Cu/3K+0bIcMnV4qf/phZBLAB0HUi65rBPxP4JO3aM2LoAcb+DFS600RQJMZ7ZLyYDTbLwJOQ==",
- "path": "microsoft.codeanalysis.analyzers/2.9.6",
- "hashPath": "microsoft.codeanalysis.analyzers.2.9.6.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/3.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ncA7cV+iXGA1VYwe2UEZXcvWyZSlbexWjM9AvocP7sik5UD93qt9Hq0fMRGk0jFRmvmE4T2g+bGfXiBVZEhLw==",
- "path": "microsoft.codeanalysis.common/3.4.0",
- "hashPath": "microsoft.codeanalysis.common.3.4.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/3.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/LsTtgcMN6Tu1oo7/WYbRAHL4/ubXC/miEakwTpcZKJKtFo7D0AK95Hw0dbGxul6C8WJu60v6NP2435TDYZM+Q==",
- "path": "microsoft.codeanalysis.csharp/3.4.0",
- "hashPath": "microsoft.codeanalysis.csharp.3.4.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
- "path": "microsoft.management.infrastructure/2.0.0",
- "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
- "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
- "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
- "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
- "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/3.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
- "path": "microsoft.netcore.platforms/3.1.1",
- "hashPath": "microsoft.netcore.platforms.3.1.1.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Diagnostics/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nd8TAW5QRX3MKXB69ZUAOd7FrP3jLQA4iN4ObKdNljDRf05oecmF48hx+9f7XI1j16KbjQPcbKb3vbj3RlB7WQ==",
- "path": "microsoft.powershell.commands.diagnostics/7.0.3",
- "hashPath": "microsoft.powershell.commands.diagnostics.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Management/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dNZO4kMlM2X76IoYrxB8PRYlfXVzzysCyWkFdSQZRetKXJz4riLlSKbyQgIk2G2noiCyv0nyyLf2j0wBj8WduA==",
- "path": "microsoft.powershell.commands.management/7.0.3",
- "hashPath": "microsoft.powershell.commands.management.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Utility/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nM/wbPUwinyEm98qr6CAtJllcaerBTvBm49Uy6L2wLul0tXWPq/zkaAw0uRehTkfX2ZE5uCh9qhRXYUTeIh2jA==",
- "path": "microsoft.powershell.commands.utility/7.0.3",
- "hashPath": "microsoft.powershell.commands.utility.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.ConsoleHost/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q0T9WfMBUc+AxxcwdYw6I7VXysnwyyMD00Zb/rIDj0IO36x2DeGZf1RgmGs5aF5WpyvdMThnmeZbsRtcAYFWQg==",
- "path": "microsoft.powershell.consolehost/7.0.3",
- "hashPath": "microsoft.powershell.consolehost.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.CoreCLR.Eventing/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZMs1qMmqmaISqlLPbnX7uXM8/IpEGUB4qoSlBOgfFQrah16pxn+3E2+eLV6t/fUOVGLzm0kVXrcezABOmHudhA==",
- "path": "microsoft.powershell.coreclr.eventing/7.0.3",
- "hashPath": "microsoft.powershell.coreclr.eventing.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.MarkdownRender/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-82nQBTwcuYVwptYxx6J9hG3/qCj1IHg7eM+rpAhwNmE+bTa2mawCxFlJv5ScpmcBiijisUdsI+t0Nrq2N+OQtw==",
- "path": "microsoft.powershell.markdownrender/7.0.3",
- "hashPath": "microsoft.powershell.markdownrender.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Native/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-btrvvHj0QEdPU2lIKD5divnLbMok/dNUUo4pjTZJAyU+y+We6cuPL5UurHJTzWPEwU/NzS8+2tqV4jSXvlPB2Q==",
- "path": "microsoft.powershell.native/7.0.0",
- "hashPath": "microsoft.powershell.native.7.0.0.nupkg.sha512"
- },
- "Microsoft.PowerShell.Security/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/9Mjn4y0wlatKfIBqywJIDBeq8vUPZqsSOBk7O4JJGnLy1tAVchUT2+Ln66Zi9iXSt/v2DlGbSdIOSkiLVS3UQ==",
- "path": "microsoft.powershell.security/7.0.3",
- "hashPath": "microsoft.powershell.security.7.0.3.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
- "path": "microsoft.win32.registry/4.7.0",
- "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6ZBpiCrPHoRxm0GWrlUfSKx5i4987cRs2hi8KVHD+iI72pm0jScyr5QvqdLeyTgf22R4WgdmBo2k64wtVotPRA==",
- "path": "microsoft.win32.registry.accesscontrol/4.7.0",
- "hashPath": "microsoft.win32.registry.accesscontrol.4.7.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
- "path": "microsoft.win32.systemevents/4.7.0",
- "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
- },
- "Microsoft.WSMan.Management/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uumqzLPrFmL+B/3NjzHNBOvbR1dmd976AoQjhtJPx7ay8x48sg7D/hU3GSjLgu/gz6U7KyhmieFwEL9TmYl3Ww==",
- "path": "microsoft.wsman.management/7.0.3",
- "hashPath": "microsoft.wsman.management.7.0.3.nupkg.sha512"
- },
- "Microsoft.WSMan.Runtime/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RBdpZDUz8k+OCbXljSjLoGg3IDemn3b2YumGj0G+dJ7xdtVtzhS+sIUegOeG8Ci1wG6GjOgNTgy0e6MpCNaMzg==",
- "path": "microsoft.wsman.runtime/7.0.3",
- "hashPath": "microsoft.wsman.runtime.7.0.3.nupkg.sha512"
- },
- "Namotion.Reflection/1.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NT7/kod+9SCiL3XbCeY5OtohSGtLmclH5YAlWZiual5fhSldhDsrk8kzgSDx45UBOoeBnvmC8HEpAzKwj6grYQ==",
- "path": "namotion.reflection/1.0.11",
- "hashPath": "namotion.reflection.1.0.11.nupkg.sha512"
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "path": "newtonsoft.json/12.0.3",
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
- },
- "NJsonSchema/10.1.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zXyBnx3qUrS5vQ7lSG0VGd/ovm8t8V904cqOC9uwwQgMC9Fgz0z0WLyOiVmK05uNp4ryOIU5cK3jrLXgbUg7qA==",
- "path": "njsonschema/10.1.23",
- "hashPath": "njsonschema.10.1.23.nupkg.sha512"
- },
- "runtime.any.System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
- "path": "runtime.any.system.collections/4.3.0",
- "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
- "path": "runtime.any.system.globalization/4.3.0",
- "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
- "path": "runtime.any.system.io/4.3.0",
- "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
- "path": "runtime.any.system.reflection/4.3.0",
- "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
- "path": "runtime.any.system.reflection.extensions/4.3.0",
- "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
- "path": "runtime.any.system.reflection.primitives/4.3.0",
- "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
- "path": "runtime.any.system.resources.resourcemanager/4.3.0",
- "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
- "path": "runtime.any.system.runtime/4.3.0",
- "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
- "path": "runtime.any.system.runtime.handles/4.3.0",
- "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
- "path": "runtime.any.system.runtime.interopservices/4.3.0",
- "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
- "path": "runtime.any.system.text.encoding/4.3.0",
- "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
- "path": "runtime.any.system.threading.tasks/4.3.0",
- "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "runtime.win.System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
- "path": "runtime.win.system.diagnostics.debug/4.3.0",
- "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "runtime.win.System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
- "path": "runtime.win.system.runtime.extensions/4.3.0",
- "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "runtime.win7.System.Private.Uri/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
- "path": "runtime.win7.system.private.uri/4.3.0",
- "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
- },
- "System.CodeDom/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==",
- "path": "system.codedom/4.7.0",
- "hashPath": "system.codedom.4.7.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/1.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
- "path": "system.collections.immutable/1.5.0",
- "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
- "path": "system.configuration.configurationmanager/4.7.0",
- "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
- "path": "system.diagnostics.diagnosticsource/4.6.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
- },
- "System.Diagnostics.EventLog/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
- "path": "system.diagnostics.eventlog/4.7.0",
- "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
- },
- "System.DirectoryServices/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
- "path": "system.directoryservices/4.7.0",
- "hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
- },
- "System.Drawing.Common/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
- "path": "system.drawing.common/4.7.0",
- "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
- "path": "system.io.filesystem.accesscontrol/4.7.0",
- "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Management/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==",
- "path": "system.management/4.7.0",
- "hashPath": "system.management.4.7.0.nupkg.sha512"
- },
- "System.Management.Automation/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtqw4JAkwgSAqWf/yi5026w/b+cmUNqxT6CJ7lJOXdnvlJ3GzvvJ54YfJYqJLN6BJH9VtIYYA4vJKke3gHkWYQ==",
- "path": "system.management.automation/7.0.3",
- "hashPath": "system.management.automation.7.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
- "path": "system.memory/4.5.3",
- "hashPath": "system.memory.4.5.3.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Private.Uri/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
- "path": "system.private.uri/4.3.0",
- "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
- "path": "system.reflection.metadata/1.6.0",
- "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
- "path": "system.security.accesscontrol/4.7.0",
- "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
- "path": "system.security.cryptography.cng/4.7.0",
- "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
- "path": "system.security.cryptography.pkcs/4.7.0",
- "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
- "path": "system.security.cryptography.protecteddata/4.7.0",
- "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
- },
- "System.Security.Permissions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
- "path": "system.security.permissions/4.7.0",
- "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
- "path": "system.security.principal.windows/4.7.0",
- "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
- },
- "System.ServiceProcess.ServiceController/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FuYfwENKZqWxGtYU5Vay2ai2dPWLKzRgI+WZkjceN3jaTK9ZVYnV1GRMTtN3Qodm9RT0gOiN8WoHGNXzTaZ+fw==",
- "path": "system.serviceprocess.servicecontroller/4.7.0",
- "hashPath": "system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
- "path": "system.text.encoding.codepages/4.7.1",
- "hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/fmzEf1UYrdCzfOIHVJ2cx3v9DHLLLMkUrodpzJGW17N+K+SSmBD8OA/BGmtfN1Ae0Ex3rBjQVufnIi5zKefuQ==",
- "path": "system.threading.accesscontrol/4.7.0",
- "hashPath": "system.threading.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
- "path": "system.threading.tasks.extensions/4.5.3",
- "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
- },
- "System.Windows.Extensions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
- "path": "system.windows.extensions/4.7.0",
- "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll Binary files differdeleted file mode 100644 index c3d7df035e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll Binary files differdeleted file mode 100644 index d4ed646b24..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll Binary files differdeleted file mode 100644 index b2bf2f0de1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll Binary files differdeleted file mode 100644 index c8dfa2d4f8..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll Binary files differdeleted file mode 100644 index 21e4eda98d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll Binary files differdeleted file mode 100644 index 9819a96a3e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll Binary files differdeleted file mode 100644 index 4bc4b4340e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll Binary files differdeleted file mode 100644 index b57e2fb70b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll Binary files differdeleted file mode 100644 index 167dcde129..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll Binary files differdeleted file mode 100644 index c1da3cf5b5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll Binary files differdeleted file mode 100644 index 19d7f9b9e7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll Binary files differdeleted file mode 100644 index 180e1c37e9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll Binary files differdeleted file mode 100644 index cefc84b075..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll Binary files differdeleted file mode 100644 index 6852b0e666..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll Binary files differdeleted file mode 100644 index c49c358738..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll Binary files differdeleted file mode 100644 index f002b3918f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll Binary files differdeleted file mode 100644 index 333125ce36..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll Binary files differdeleted file mode 100644 index 1bb824f6b8..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md deleted file mode 100644 index d80472f192..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md +++ /dev/null @@ -1,5 +0,0 @@ -SOS and other diagnostic tools now ship of band and work with any version of the .NET Core runtime.
-
-SOS has moved to the diagnostics repo here: https://github.com/dotnet/diagnostics.git.
-
-Instructions to install SOS: https://github.com/dotnet/diagnostics#installing-sos.
diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll Binary files differdeleted file mode 100644 index 1820674373..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll Binary files differdeleted file mode 100644 index 1f134b37ef..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll Binary files differdeleted file mode 100644 index 9ddbb18479..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll Binary files differdeleted file mode 100644 index aa7fe0737c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll Binary files differdeleted file mode 100644 index dec020a3f4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll Binary files differdeleted file mode 100644 index 483241212b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll Binary files differdeleted file mode 100644 index 73c2b8e672..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll Binary files differdeleted file mode 100644 index 6a1ce7bd8c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll Binary files differdeleted file mode 100644 index 856e879575..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll Binary files differdeleted file mode 100644 index b1a67484d4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll Binary files differdeleted file mode 100644 index e64ac77fda..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll Binary files differdeleted file mode 100644 index f2b9e22f3e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll Binary files differdeleted file mode 100644 index 8fab314c42..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll Binary files differdeleted file mode 100644 index 5b606c74ba..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll Binary files differdeleted file mode 100644 index 6f34b8d937..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll Binary files differdeleted file mode 100644 index b1807ecd97..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll Binary files differdeleted file mode 100644 index 4c4e48b119..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll Binary files differdeleted file mode 100644 index 73a1fdf56f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll Binary files differdeleted file mode 100644 index bcc5ebfeb1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll Binary files differdeleted file mode 100644 index 7839f3dbf8..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll Binary files differdeleted file mode 100644 index aa2c9e5708..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll Binary files differdeleted file mode 100644 index 3da52e584d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll Binary files differdeleted file mode 100644 index d85782f444..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll Binary files differdeleted file mode 100644 index 7545895ce4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll Binary files differdeleted file mode 100644 index 536bdd484c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll Binary files differdeleted file mode 100644 index 5d103e30a2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll Binary files differdeleted file mode 100644 index b2e5c81a68..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll Binary files differdeleted file mode 100644 index 360aeaf329..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll Binary files differdeleted file mode 100644 index 276ec09a24..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll Binary files differdeleted file mode 100644 index 74e894c3f1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll Binary files differdeleted file mode 100644 index dc7fdab258..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll Binary files differdeleted file mode 100644 index cb70fcd1d6..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll Binary files differdeleted file mode 100644 index 04879eca28..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll Binary files differdeleted file mode 100644 index 9a04b68f4d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll Binary files differdeleted file mode 100644 index cc6d39f2cc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll Binary files differdeleted file mode 100644 index 2d72818e0b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll Binary files differdeleted file mode 100644 index 3c8c030c08..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll Binary files differdeleted file mode 100644 index 9c0d357f08..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll Binary files differdeleted file mode 100644 index 97184e5292..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll Binary files differdeleted file mode 100644 index 7eabc0794c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll Binary files differdeleted file mode 100644 index 18b50066d4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll Binary files differdeleted file mode 100644 index a8c73e3610..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll Binary files differdeleted file mode 100644 index 3f4270ad4f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll Binary files differdeleted file mode 100644 index 69fb33f959..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll Binary files differdeleted file mode 100644 index 0b39b00b72..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll Binary files differdeleted file mode 100644 index 3cd063836f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll Binary files differdeleted file mode 100644 index 33143076bc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll Binary files differdeleted file mode 100644 index 88015abe59..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll Binary files differdeleted file mode 100644 index 166ea0614b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll Binary files differdeleted file mode 100644 index 1c373da684..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll Binary files differdeleted file mode 100644 index 338ea1af2b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll Binary files differdeleted file mode 100644 index 6e2221eabc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll Binary files differdeleted file mode 100644 index fd7a3a677b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll Binary files differdeleted file mode 100644 index c47f0f6e1f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll Binary files differdeleted file mode 100644 index 9ff8b94631..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll Binary files differdeleted file mode 100644 index f90c17974e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll Binary files differdeleted file mode 100644 index a3c9ff18d3..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll Binary files differdeleted file mode 100644 index 5da47130c4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll Binary files differdeleted file mode 100644 index 30c8d9f816..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll Binary files differdeleted file mode 100644 index cc376e2f24..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll Binary files differdeleted file mode 100644 index e618469835..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll Binary files differdeleted file mode 100644 index 4bdab4c8f6..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll Binary files differdeleted file mode 100644 index a3337129a4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll Binary files differdeleted file mode 100644 index c8968c8f18..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll Binary files differdeleted file mode 100644 index 13d0021b64..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll Binary files differdeleted file mode 100644 index 6df2d99f17..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll Binary files differdeleted file mode 100644 index 87db4d7e50..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll Binary files differdeleted file mode 100644 index 43e6c7dd17..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll Binary files differdeleted file mode 100644 index 6e4febc75d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll Binary files differdeleted file mode 100644 index 34d6a372f3..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll Binary files differdeleted file mode 100644 index 46dc8f8e56..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll Binary files differdeleted file mode 100644 index 1764453019..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll Binary files differdeleted file mode 100644 index d76efe758c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll Binary files differdeleted file mode 100644 index e2caa2ee6f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll Binary files differdeleted file mode 100644 index c087092dc6..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll Binary files differdeleted file mode 100644 index c78fba9ddc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll Binary files differdeleted file mode 100644 index d393c42cfb..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll Binary files differdeleted file mode 100644 index 960d5cf581..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll Binary files differdeleted file mode 100644 index f0365f834e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll Binary files differdeleted file mode 100644 index f8d6e1a90d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll Binary files differdeleted file mode 100644 index 3d0c6afd08..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll Binary files differdeleted file mode 100644 index 25b8d53caf..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll Binary files differdeleted file mode 100644 index 94bf55db5b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll Binary files differdeleted file mode 100644 index 1e93fd15dc..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll Binary files differdeleted file mode 100644 index 722638de4b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll Binary files differdeleted file mode 100644 index 67098354bf..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll Binary files differdeleted file mode 100644 index f41ba8b42c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll Binary files differdeleted file mode 100644 index e97811cfc8..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll Binary files differdeleted file mode 100644 index 108cb78208..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll Binary files differdeleted file mode 100644 index b983e23d5b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll Binary files differdeleted file mode 100644 index 4f52c3a829..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll Binary files differdeleted file mode 100644 index 89a5419952..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll Binary files differdeleted file mode 100644 index 9ce603b0ff..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll Binary files differdeleted file mode 100644 index 452aa34b17..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll Binary files differdeleted file mode 100644 index f838795618..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll Binary files differdeleted file mode 100644 index 14136191a5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll Binary files differdeleted file mode 100644 index 93ac40b591..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll Binary files differdeleted file mode 100644 index 75b023b9fa..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll Binary files differdeleted file mode 100644 index 4f2e9c08c9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll Binary files differdeleted file mode 100644 index 66a9307e4e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll Binary files differdeleted file mode 100644 index a3dc9d1fe7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll Binary files differdeleted file mode 100644 index b0383bc01d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll Binary files differdeleted file mode 100644 index 7e2e398425..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll Binary files differdeleted file mode 100644 index 416ed0a9b3..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll Binary files differdeleted file mode 100644 index 1f10ef7e49..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll Binary files differdeleted file mode 100644 index 25e691e90a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll Binary files differdeleted file mode 100644 index 031c176391..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll Binary files differdeleted file mode 100644 index f8b4ea1e27..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll Binary files differdeleted file mode 100644 index f446c997ea..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll Binary files differdeleted file mode 100644 index fa4b74d5e0..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll Binary files differdeleted file mode 100644 index 44bd1731f2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll Binary files differdeleted file mode 100644 index ace757e55a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll Binary files differdeleted file mode 100644 index 5a468411f2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll Binary files differdeleted file mode 100644 index 9a3d227a94..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll Binary files differdeleted file mode 100644 index 2418c9ca0c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll Binary files differdeleted file mode 100644 index c993bfa031..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll Binary files differdeleted file mode 100644 index c3c776f856..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll Binary files differdeleted file mode 100644 index 81479e6e00..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll Binary files differdeleted file mode 100644 index f558ceb786..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll Binary files differdeleted file mode 100644 index 3c43994dca..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll Binary files differdeleted file mode 100644 index c6a096bb93..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll Binary files differdeleted file mode 100644 index a4cf55b03d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll Binary files differdeleted file mode 100644 index cbad0ef5b0..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll Binary files differdeleted file mode 100644 index d427d4942a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll Binary files differdeleted file mode 100644 index 14810343d2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll Binary files differdeleted file mode 100644 index ea7f577e07..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll Binary files differdeleted file mode 100644 index d8f2f45896..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll Binary files differdeleted file mode 100644 index 62c5cbf2ea..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll Binary files differdeleted file mode 100644 index 76faf41ec1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll Binary files differdeleted file mode 100644 index b64367ecf2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll Binary files differdeleted file mode 100644 index fc73b7c858..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll Binary files differdeleted file mode 100644 index 5f0dcd5595..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll Binary files differdeleted file mode 100644 index 6cf3a9bc4e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll Binary files differdeleted file mode 100644 index 27034ae99e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll Binary files differdeleted file mode 100644 index c828b717b6..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll Binary files differdeleted file mode 100644 index 6036a7d105..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll Binary files differdeleted file mode 100644 index 5b0542cb8c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll Binary files differdeleted file mode 100644 index d0210fce32..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll Binary files differdeleted file mode 100644 index 7afe7c105d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll Binary files differdeleted file mode 100644 index 7397efa4c4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll Binary files differdeleted file mode 100644 index de7923841d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll Binary files differdeleted file mode 100644 index b48c8af35b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll Binary files differdeleted file mode 100644 index 2af2a49085..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll Binary files differdeleted file mode 100644 index 5c9fcab4c2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll Binary files differdeleted file mode 100644 index 13738de5ea..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll Binary files differdeleted file mode 100644 index 52ac9900c1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll Binary files differdeleted file mode 100644 index 7046af391f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll Binary files differdeleted file mode 100644 index 76948e96ea..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll Binary files differdeleted file mode 100644 index ff1b3dd9f7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll Binary files differdeleted file mode 100644 index ac5073e2fa..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll Binary files differdeleted file mode 100644 index fe89260fb2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll Binary files differdeleted file mode 100644 index ababd2933d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll Binary files differdeleted file mode 100644 index 1cbb78ac6d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll Binary files differdeleted file mode 100644 index 59355105bf..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll Binary files differdeleted file mode 100644 index e25cfc9de5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll Binary files differdeleted file mode 100644 index 86cef7b97b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll Binary files differdeleted file mode 100644 index 6704424a90..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll Binary files differdeleted file mode 100644 index d802f032ce..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll Binary files differdeleted file mode 100644 index 3fb4939e5d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll Binary files differdeleted file mode 100644 index 81e35caf10..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll Binary files differdeleted file mode 100644 index b6f437313f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll Binary files differdeleted file mode 100644 index 5ff346ed74..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll Binary files differdeleted file mode 100644 index 4fd27ca734..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll Binary files differdeleted file mode 100644 index 0eea30b258..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll Binary files differdeleted file mode 100644 index e3a10d4344..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll Binary files differdeleted file mode 100644 index 555734da33..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll Binary files differdeleted file mode 100644 index 4c418fbbf3..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll Binary files differdeleted file mode 100644 index 3326469e33..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll Binary files differdeleted file mode 100644 index 8acf28a653..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.dll Binary files differdeleted file mode 100644 index 709c47106f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/System.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll Binary files differdeleted file mode 100644 index 5120cbda3d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll Binary files differdeleted file mode 100644 index 7840baf9ec..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll Binary files differdeleted file mode 100644 index 5dfdc3011f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll Binary files differdeleted file mode 100644 index 5013561dc5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll Binary files differdeleted file mode 100644 index c3ea2fc5a8..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll Binary files differdeleted file mode 100644 index 4e31e0aec1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll Binary files differdeleted file mode 100644 index a68e54d238..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll Binary files differdeleted file mode 100644 index a55333f37f..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll Binary files differdeleted file mode 100644 index 3d66e3de3b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll Binary files differdeleted file mode 100644 index 2317f20ccf..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll Binary files differdeleted file mode 100644 index d097fe800a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll Binary files differdeleted file mode 100644 index b23a0f59d1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll Binary files differdeleted file mode 100644 index eb87605ced..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll Binary files differdeleted file mode 100644 index 5f14ce626b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll Binary files differdeleted file mode 100644 index fa97b0688b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll Binary files differdeleted file mode 100644 index dee52aa0ee..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll Binary files differdeleted file mode 100644 index 2b90f9f8d4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll Binary files differdeleted file mode 100644 index 6eaae36c20..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll Binary files differdeleted file mode 100644 index 5f9a61fe4c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll Binary files differdeleted file mode 100644 index 7f5a9ca30b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll Binary files differdeleted file mode 100644 index 2ade913e9a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll Binary files differdeleted file mode 100644 index 2cfbe993e7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll Binary files differdeleted file mode 100644 index 5c368b20f2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll Binary files differdeleted file mode 100644 index ef61b1bb4e..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll Binary files differdeleted file mode 100644 index 3fb97367a9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll Binary files differdeleted file mode 100644 index d16b7b7eba..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll Binary files differdeleted file mode 100644 index 805d624787..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll Binary files differdeleted file mode 100644 index 6849a4a5a9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll Binary files differdeleted file mode 100644 index 6b9c9cc868..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll Binary files differdeleted file mode 100644 index 430331d75a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll Binary files differdeleted file mode 100644 index 7247858d7c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll Binary files differdeleted file mode 100644 index d71c6c20a2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll Binary files differdeleted file mode 100644 index ad2f7d28a2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll Binary files differdeleted file mode 100644 index 0cac01d0a0..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll Binary files differdeleted file mode 100644 index 40e4003bde..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll Binary files differdeleted file mode 100644 index c23ef80e75..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll Binary files differdeleted file mode 100644 index 3e5352378a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll Binary files differdeleted file mode 100644 index bd3852bd63..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll Binary files differdeleted file mode 100644 index 1e16a4c143..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll Binary files differdeleted file mode 100644 index 3107f09f60..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll Binary files differdeleted file mode 100644 index 5b08a2f821..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll Binary files differdeleted file mode 100644 index f8b55a34b3..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll Binary files differdeleted file mode 100644 index b2c03c8aca..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll Binary files differdeleted file mode 100644 index d17cbf14c9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll Binary files differdeleted file mode 100644 index 32953ca9b6..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 3926b05c1d..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index f6e93d5cd7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll Binary files differdeleted file mode 100644 index 2627e5cfd7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5fa5859991..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index cc47986b0a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index ed78e65bf1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index e229570134..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 7ff1eb278b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 81080f9e2a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll Binary files differdeleted file mode 100644 index 364091e819..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll Binary files differdeleted file mode 100644 index 76e00d3bed..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 4709ba2214..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index db624e3d86..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 15dfa07ca9..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index b44059b863..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5f41f9206b..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index cd1de70266..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll Binary files differdeleted file mode 100644 index 597eb3d8a5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_amd64_amd64_4.700.19.56402.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_amd64_amd64_4.700.19.56402.dll Binary files differdeleted file mode 100644 index 597eb3d8a5..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_amd64_amd64_4.700.19.56402.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll Binary files differdeleted file mode 100644 index 4768304913..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll Binary files differdeleted file mode 100644 index ee15e0fe85..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll Binary files differdeleted file mode 100644 index 75db83a673..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll Binary files differdeleted file mode 100644 index 85c195bacd..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll Binary files differdeleted file mode 100644 index 1823792313..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 4f469a20d4..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 155c7ff470..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5cf722e8d2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index da26fd9a86..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll Binary files differdeleted file mode 100644 index 165be008c7..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index de0d131b24..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 484ce0fd50..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index e8ab1c2da2..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 4a23afbede..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll Binary files differdeleted file mode 100644 index 90bd467dd1..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index ba89657418..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 0d8ef2e35c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 0e903ec47c..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 3da4deb28a..0000000000 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll Binary files differnew file mode 100644 index 0000000000..5334ee315e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll Binary files differnew file mode 100644 index 0000000000..c74bec50a4 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb Binary files differnew file mode 100644 index 0000000000..7ef67e5b43 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json new file mode 100644 index 0000000000..9d0500cd16 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json @@ -0,0 +1,9 @@ +{
+ "runtimeOptions": {
+ "tfm": "net5.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "5.0.0"
+ }
+ }
+}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll Binary files differnew file mode 100644 index 0000000000..e2c6c9fc90 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll Binary files differnew file mode 100644 index 0000000000..2a70d37424 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll Binary files differnew file mode 100644 index 0000000000..f1d216624a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll Binary files differnew file mode 100644 index 0000000000..fe584ad61c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll Binary files differnew file mode 100644 index 0000000000..8b6f598975 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll Binary files differnew file mode 100644 index 0000000000..bfdf0b004b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.DiaSymReader.Native.amd64.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.DiaSymReader.Native.amd64.dll Binary files differindex e376a20352..e376a20352 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.DiaSymReader.Native.amd64.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.DiaSymReader.Native.amd64.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.Unmanaged.dll Binary files differindex 2e5c7ea7d5..2e5c7ea7d5 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.Unmanaged.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.Unmanaged.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.dll Binary files differindex c70b1d3205..c70b1d3205 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.dll Binary files differindex 6d14e763cd..6d14e763cd 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json new file mode 100644 index 0000000000..a415e4237a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json @@ -0,0 +1,2576 @@ +{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0/win10-x64",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {},
+ ".NETCoreApp,Version=v5.0/win10-x64": {
+ "Chef.Powershell.Core/1.0.0": {
+ "dependencies": {
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.1.0",
+ "Microsoft.PowerShell.Commands.Management": "7.1.0",
+ "Microsoft.PowerShell.Commands.Utility": "7.1.0",
+ "Microsoft.PowerShell.ConsoleHost": "7.1.0",
+ "Microsoft.WSMan.Management": "7.1.0",
+ "Microsoft.WSMan.Runtime": "7.1.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Management.Automation": "7.1.0",
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.0"
+ },
+ "runtime": {
+ "Chef.Powershell.Core.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.0": {
+ "runtime": {
+ "Microsoft.CSharp.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.VisualBasic.Core.dll": {
+ "assemblyVersion": "10.0.6.0",
+ "fileVersion": "11.0.20.51904"
+ },
+ "Microsoft.VisualBasic.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.Win32.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.AppContext.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Buffers.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Concurrent.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Immutable.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.NonGeneric.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Specialized.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.DataAnnotations.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.EventBasedAsync.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.TypeConverter.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Configuration.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Console.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.Common.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.DataSetExtensions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Contracts.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.FileVersionInfo.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Process.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.StackTrace.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.TextWriterTraceListener.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Tools.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.TraceSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Tracing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Drawing.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Drawing.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Formats.Asn1.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.Calendars.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.Brotli.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.FileSystem.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.ZipFile.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.DriveInfo.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.Watcher.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.IsolatedStorage.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.MemoryMappedFiles.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Pipes.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Pipes.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.UnmanagedMemoryStream.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Expressions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Parallel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Queryable.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Memory.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Http.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Http.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.HttpListener.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Mail.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.NameResolution.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.NetworkInformation.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Ping.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Requests.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Security.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.ServicePoint.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Sockets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebClient.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebHeaderCollection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebProxy.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebSockets.Client.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebSockets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Numerics.Vectors.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Numerics.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ObjectModel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.DataContractSerialization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Uri.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Xml.Linq.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Xml.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.DispatchProxy.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Metadata.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.Reader.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.Writer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.CompilerServices.VisualC.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Handles.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Intrinsics.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Loader.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Numerics.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Formatters.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Xml.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Claims.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Algorithms.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Csp.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Encoding.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.OpenSsl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.X509Certificates.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Principal.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.SecureString.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ServiceModel.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ServiceProcess.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.RegularExpressions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Channels.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Overlapped.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Dataflow.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Parallel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Thread.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.ThreadPool.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Timer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Transactions.Local.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Transactions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ValueTuple.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Web.HttpUtility.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Windows.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.Linq.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.ReaderWriter.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XPath.XDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XPath.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XmlDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XmlSerializer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "WindowsBase.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscorlib.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "netstandard.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.CoreLib.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "native": {
+ "Microsoft.DiaSymReader.Native.amd64.dll": {
+ "fileVersion": "14.12.25830.2"
+ },
+ "api-ms-win-core-console-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-console-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-datetime-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-debug-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-errorhandling-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l2-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-handle-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-heap-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-interlocked-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-libraryloader-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-localization-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-memory-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-namedpipe-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processenvironment-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processthreads-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processthreads-l1-1-1.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-profile-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-rtlsupport-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-string-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-synch-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-synch-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-sysinfo-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-timezone-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-util-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-conio-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-convert-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-environment-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-filesystem-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-heap-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-locale-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-math-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-multibyte-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-private-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-process-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-runtime-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-stdio-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-string-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-time-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-utility-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "clrcompression.dll": {
+ "fileVersion": "42.42.42.42424"
+ },
+ "clretwrc.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "clrjit.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "coreclr.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "createdump.exe": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "dbgshim.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "hostfxr.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "hostpolicy.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordaccore.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordaccore_amd64_amd64_5.0.20.51904.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordbi.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscorrc.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "ucrtbase.dll": {
+ "fileVersion": "10.0.19041.1"
+ }
+ }
+ },
+ "Markdig.Signed/0.21.1": {
+ "runtime": {
+ "lib/netcoreapp3.1/Markdig.Signed.dll": {
+ "assemblyVersion": "0.21.1.0",
+ "fileVersion": "0.21.1.0"
+ }
+ }
+ },
+ "Microsoft.ApplicationInsights/2.15.0": {
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "4.6.0",
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
+ "assemblyVersion": "2.15.0.44797",
+ "fileVersion": "2.15.0.44797"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
+ "Microsoft.CodeAnalysis.Common/3.7.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.3"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "3.7.0.0",
+ "fileVersion": "3.700.20.37502"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/3.7.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "3.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "3.7.0.0",
+ "fileVersion": "3.700.20.37502"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CSharp/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.CSharp.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "Microsoft.Management.Infrastructure/2.0.0": {
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {},
+ "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
+ "runtime": {
+ "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.18362.1"
+ }
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x64/native/mi.dll": {
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x64/native/miutils.dll": {
+ "fileVersion": "10.0.18362.1"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.PowerShell.Commands.Diagnostics/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management/7.1.0": {
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.1.0",
+ "System.ServiceProcess.ServiceController": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility/7.1.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "3.7.0",
+ "Microsoft.PowerShell.MarkdownRender": "7.1.0",
+ "NJsonSchema": "10.2.2",
+ "System.Drawing.Common": "5.0.0",
+ "System.Management.Automation": "7.1.0",
+ "System.Threading.AccessControl": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.ConsoleHost/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender/7.1.0": {
+ "dependencies": {
+ "Markdig.Signed": "0.21.1",
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Native/7.1.0": {
+ "native": {
+ "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x64/native/pwrshplugin.dll": {
+ "fileVersion": "10.0.10011.16384"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Security/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Security.AccessControl": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Win32.SystemEvents/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.WSMan.Management/7.1.0": {
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.1.0",
+ "System.Management.Automation": "7.1.0",
+ "System.ServiceProcess.ServiceController": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.WSMan.Runtime/7.1.0": {
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Namotion.Reflection/1.0.14": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Namotion.Reflection.dll": {
+ "assemblyVersion": "1.0.14.0",
+ "fileVersion": "1.0.14.0"
+ }
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "NJsonSchema/10.2.2": {
+ "dependencies": {
+ "Namotion.Reflection": "1.0.14",
+ "Newtonsoft.Json": "12.0.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/NJsonSchema.dll": {
+ "assemblyVersion": "10.2.2.0",
+ "fileVersion": "10.2.2.0"
+ }
+ }
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Globalization.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.5/System.IO.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Extensions.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Primitives.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Handles.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.6/System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Text.Encoding.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Tasks.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win.System.Diagnostics.Debug/4.3.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win.System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.CodeDom/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Configuration.ConfigurationManager/5.0.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "5.0.0",
+ "System.Security.Permissions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "4.700.19.46214"
+ }
+ }
+ },
+ "System.Diagnostics.EventLog/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.DirectoryServices/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Permissions": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Drawing.Common/5.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Dynamic.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Formats.Asn1.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Management/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.CodeDom": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Management.Automation/7.1.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.15.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.0",
+ "Microsoft.PowerShell.Native": "7.1.0",
+ "Microsoft.Win32.Registry.AccessControl": "5.0.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Configuration.ConfigurationManager": "5.0.0",
+ "System.DirectoryServices": "5.0.0",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Management": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Cryptography.Pkcs": "5.0.0",
+ "System.Security.Permissions": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/System.Management.Automation.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "System.Memory/4.5.4": {},
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {
+ "assemblyVersion": "1.4.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0",
+ "System.Security.Cryptography.Cng": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/5.0.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Permissions/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Windows.Extensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.ServiceProcess.ServiceController/5.0.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.3": {},
+ "System.Windows.Extensions/5.0.0": {
+ "dependencies": {
+ "System.Drawing.Common": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Chef.Powershell.Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.0": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Markdig.Signed/0.21.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lg0FPQdKUXai4/XZpQGlQ/HldpHsGnsU6Jd+udJgHj/R7i3ngM2TtR+SZqdHRtgItIHe3dFh2DS/M5qXGSPRiQ==",
+ "path": "markdig.signed/0.21.1",
+ "hashPath": "markdig.signed.0.21.1.nupkg.sha512"
+ },
+ "Microsoft.ApplicationInsights/2.15.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==",
+ "path": "microsoft.applicationinsights/2.15.0",
+ "hashPath": "microsoft.applicationinsights.2.15.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
+ "path": "microsoft.codeanalysis.analyzers/3.0.0",
+ "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/3.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SFEdnbw8204hTlde3JePYSIpNX58h/MMXa7LctUsUDigWMR8Ar9gE8LnsLqAIFM0O33JEuQbJ0G4Sat+cPGldw==",
+ "path": "microsoft.codeanalysis.common/3.7.0",
+ "hashPath": "microsoft.codeanalysis.common.3.7.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/3.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sKi5PIVy9nVDerkbplY6OQhJBNzEO4XJsMGrnmb6KFEa6K1ulGCHIv6NtDjdUQ/dGrouU3OExc3yzww0COD76w==",
+ "path": "microsoft.codeanalysis.csharp/3.7.0",
+ "hashPath": "microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512"
+ },
+ "Microsoft.CSharp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
+ "path": "microsoft.csharp/4.3.0",
+ "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "path": "microsoft.management.infrastructure/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
+ "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
+ "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Hipqx38QOv1xWXbV4yGWHOmFIV8zp0O15z2H+Vx0Z0cOnzu4eb+MUblb4Dc1FA3S7ZE56qplC3XBK3hs0EsvYA==",
+ "path": "microsoft.powershell.commands.diagnostics/7.1.0",
+ "hashPath": "microsoft.powershell.commands.diagnostics.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Management/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3S5CU0Zq8ecdywaI3NoKyzjyaLaS7OKAi6z2AfiyKDG5IZfoLTBgIzNQElNFag8UALTNRlKGD8cumVtM3myAQA==",
+ "path": "microsoft.powershell.commands.management/7.1.0",
+ "hashPath": "microsoft.powershell.commands.management.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Utility/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6BXJ7NRCs8xCHqspv1VoijXKLfLrM6O8rJwyTk0mPc5BZvpC2NSQq1NAJHAlk60ENFTu0vtxK2IzWkbFvJ/BUQ==",
+ "path": "microsoft.powershell.commands.utility/7.1.0",
+ "hashPath": "microsoft.powershell.commands.utility.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.ConsoleHost/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vfs4i5cViK5YsiIveuFv7OTrN2m5vPfOXj3XBkrQHtlMb2u0mkIsqVMTDHRMAyopcpp0ZJ1H+4ZsZ9z1bcpagQ==",
+ "path": "microsoft.powershell.consolehost/7.1.0",
+ "hashPath": "microsoft.powershell.consolehost.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TCTaoyysnTHUErm0w8W50CVB5Mzwj1PQyb740K1DLvbw8Ba607Q1HCSzBHClEDlG+Cphuv9ie2pbvEWcUKslVg==",
+ "path": "microsoft.powershell.coreclr.eventing/7.1.0",
+ "hashPath": "microsoft.powershell.coreclr.eventing.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.MarkdownRender/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FD8ARPyKg22yRhU3gUk6NKZtmtSk5uekqufjJCiTu8A5lvWF9A0mCr/OUYE7+HQLnJoBu8BR19vwnED0Jpd1WQ==",
+ "path": "microsoft.powershell.markdownrender/7.1.0",
+ "hashPath": "microsoft.powershell.markdownrender.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Native/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==",
+ "path": "microsoft.powershell.native/7.1.0",
+ "hashPath": "microsoft.powershell.native.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Security/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4ab6z1Vlu25c33jc0gG0Val6YpSgyOyxNsNOENcBGue9TDJQ+d6ppw1IKcCILefpVAo/UWiE4xrWxO04KUc3g==",
+ "path": "microsoft.powershell.security/7.1.0",
+ "hashPath": "microsoft.powershell.security.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==",
+ "path": "microsoft.win32.registry.accesscontrol/5.0.0",
+ "hashPath": "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.SystemEvents/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
+ "path": "microsoft.win32.systemevents/5.0.0",
+ "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Management/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-noQxoEaJW5W4vbRfwIB1l+ecERA+K4ZygZBv1YNu0IwdDos0mIiPY+YpFKz2uHyeNSk1Z3j1fsXV0b/r+eRT1Q==",
+ "path": "microsoft.wsman.management/7.1.0",
+ "hashPath": "microsoft.wsman.management.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Runtime/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DVtFU3QQ12w5ej86Gw/vNtJjCXPd7r9fLJs9tzYqptEO6WtJX+vH65qPacP0DN/LEuc+93+iRVfNjjf/EMuNBQ==",
+ "path": "microsoft.wsman.runtime/7.1.0",
+ "hashPath": "microsoft.wsman.runtime.7.1.0.nupkg.sha512"
+ },
+ "Namotion.Reflection/1.0.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wuJGiFvGfehH2w7jAhMbCJt0/rvUuHyqSZn0sMhNTviDfBZRyX8LFlR/ndQcofkGWulPDfH5nKYTeGXE8xBHPA==",
+ "path": "namotion.reflection/1.0.14",
+ "hashPath": "namotion.reflection.1.0.14.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "NJsonSchema/10.2.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s6oNUrjw5Ix5WVkYdU0vgyzoutZdi7p+uQqTGYa3QbLtjDYrkD4ahfGnfyCpHNoJUXun9pHKGy6AD0LJNcSgjQ==",
+ "path": "njsonschema/10.2.2",
+ "hashPath": "njsonschema.10.2.2.nupkg.sha512"
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "path": "runtime.any.system.collections/4.3.0",
+ "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
+ "path": "runtime.any.system.globalization/4.3.0",
+ "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
+ "path": "runtime.any.system.io/4.3.0",
+ "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
+ "path": "runtime.any.system.reflection/4.3.0",
+ "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
+ "path": "runtime.any.system.reflection.extensions/4.3.0",
+ "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
+ "path": "runtime.any.system.reflection.primitives/4.3.0",
+ "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
+ "path": "runtime.any.system.resources.resourcemanager/4.3.0",
+ "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "path": "runtime.any.system.runtime/4.3.0",
+ "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
+ "path": "runtime.any.system.runtime.handles/4.3.0",
+ "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
+ "path": "runtime.any.system.runtime.interopservices/4.3.0",
+ "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
+ "path": "runtime.any.system.text.encoding/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
+ "path": "runtime.any.system.threading.tasks/4.3.0",
+ "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "runtime.win.System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
+ "path": "runtime.win.system.diagnostics.debug/4.3.0",
+ "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "runtime.win.System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
+ "path": "runtime.win.system.runtime.extensions/4.3.0",
+ "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
+ "path": "runtime.win7.system.private.uri/4.3.0",
+ "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.CodeDom/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==",
+ "path": "system.codedom/5.0.0",
+ "hashPath": "system.codedom.5.0.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
+ "path": "system.collections.immutable/1.5.0",
+ "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
+ "path": "system.configuration.configurationmanager/5.0.0",
+ "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "path": "system.diagnostics.diagnosticsource/4.6.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
+ "path": "system.diagnostics.eventlog/5.0.0",
+ "hashPath": "system.diagnostics.eventlog.5.0.0.nupkg.sha512"
+ },
+ "System.DirectoryServices/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==",
+ "path": "system.directoryservices/5.0.0",
+ "hashPath": "system.directoryservices.5.0.0.nupkg.sha512"
+ },
+ "System.Drawing.Common/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
+ "path": "system.drawing.common/5.0.0",
+ "hashPath": "system.drawing.common.5.0.0.nupkg.sha512"
+ },
+ "System.Dynamic.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "path": "system.dynamic.runtime/4.3.0",
+ "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
+ "path": "system.formats.asn1/5.0.0",
+ "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Management/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==",
+ "path": "system.management/5.0.0",
+ "hashPath": "system.management.5.0.0.nupkg.sha512"
+ },
+ "System.Management.Automation/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WjmMs8kNETGWUmbE2A87cTcAGRz0WJ24TOZm5xkhop/93fIINK8TEcghEr2I0mSgXb7t0pWkPdKdEA5vizFQPA==",
+ "path": "system.management.automation/7.1.0",
+ "hashPath": "system.management.automation.7.1.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "path": "system.memory/4.5.4",
+ "hashPath": "system.memory.4.5.4.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "path": "system.private.uri/4.3.0",
+ "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
+ "path": "system.security.cryptography.cng/5.0.0",
+ "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
+ "path": "system.security.cryptography.pkcs/5.0.0",
+ "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
+ "path": "system.security.cryptography.protecteddata/5.0.0",
+ "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
+ "path": "system.security.permissions/5.0.0",
+ "hashPath": "system.security.permissions.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.ServiceProcess.ServiceController/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==",
+ "path": "system.serviceprocess.servicecontroller/5.0.0",
+ "hashPath": "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WJ9w9m4iHJVq0VoH7hZvYAccbRq95itYRhAAXd6M4kVCzLmT6NqTwmSXKwp3oQilWHhYTXgqaIXxBfg8YaqtmA==",
+ "path": "system.threading.accesscontrol/5.0.0",
+ "hashPath": "system.threading.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
+ "path": "system.threading.tasks.extensions/4.5.3",
+ "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
+ },
+ "System.Windows.Extensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
+ "path": "system.windows.extensions/5.0.0",
+ "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512"
+ }
+ },
+ "runtimes": {
+ "win10-x64": [
+ "win10",
+ "win81-x64",
+ "win81",
+ "win8-x64",
+ "win8",
+ "win7-x64",
+ "win7",
+ "win-x64",
+ "win",
+ "any",
+ "base"
+ ],
+ "win10-x64-aot": [
+ "win10-aot",
+ "win10-x64",
+ "win10",
+ "win81-x64-aot",
+ "win81-aot",
+ "win81-x64",
+ "win81",
+ "win8-x64-aot",
+ "win8-aot",
+ "win8-x64",
+ "win8",
+ "win7-x64-aot",
+ "win7-aot",
+ "win7-x64",
+ "win7",
+ "win-x64-aot",
+ "win-aot",
+ "win-x64",
+ "win",
+ "aot",
+ "any",
+ "base"
+ ]
+ }
+}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll Binary files differnew file mode 100644 index 0000000000..9ada03f00f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll Binary files differnew file mode 100644 index 0000000000..7d8d5afcd3 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll Binary files differnew file mode 100644 index 0000000000..b63f889771 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll Binary files differnew file mode 100644 index 0000000000..96fa29deea --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll Binary files differnew file mode 100644 index 0000000000..1dc32290ac --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll Binary files differnew file mode 100644 index 0000000000..6af4347c1d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll Binary files differnew file mode 100644 index 0000000000..fd06cf702f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll Binary files differnew file mode 100644 index 0000000000..bf973055a5 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll Binary files differnew file mode 100644 index 0000000000..52a95e4526 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll Binary files differnew file mode 100644 index 0000000000..d33a2ffd25 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll Binary files differnew file mode 100644 index 0000000000..5644be0dfd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll Binary files differnew file mode 100644 index 0000000000..98e3049e20 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..934802f5c2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll Binary files differnew file mode 100644 index 0000000000..990f4b057b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll Binary files differnew file mode 100644 index 0000000000..b5aa0c4cd3 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll Binary files differnew file mode 100644 index 0000000000..36ecf91055 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll Binary files differnew file mode 100644 index 0000000000..8cbfb13909 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Newtonsoft.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Newtonsoft.Json.dll Binary files differindex b501fb6a29..b501fb6a29 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/Newtonsoft.Json.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/Newtonsoft.Json.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll Binary files differnew file mode 100644 index 0000000000..61939347a6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll Binary files differnew file mode 100644 index 0000000000..f81811110f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll Binary files differnew file mode 100644 index 0000000000..9c954491b6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll Binary files differnew file mode 100644 index 0000000000..873495d3bd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll Binary files differnew file mode 100644 index 0000000000..8e151864d0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll Binary files differnew file mode 100644 index 0000000000..3681784cd9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll Binary files differnew file mode 100644 index 0000000000..55193843db --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll Binary files differnew file mode 100644 index 0000000000..5c6823f5c2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll Binary files differnew file mode 100644 index 0000000000..d2d620e0cd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll Binary files differnew file mode 100644 index 0000000000..710e80bef0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll Binary files differnew file mode 100644 index 0000000000..acf9bcc273 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll Binary files differnew file mode 100644 index 0000000000..e3e976dfa8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll Binary files differnew file mode 100644 index 0000000000..9e3165a748 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll Binary files differnew file mode 100644 index 0000000000..666295ff6b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll Binary files differnew file mode 100644 index 0000000000..d2e8f92286 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll Binary files differnew file mode 100644 index 0000000000..1644e5d6d6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll Binary files differnew file mode 100644 index 0000000000..d0287ad5b7 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll Binary files differnew file mode 100644 index 0000000000..ea4ce56f07 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll Binary files differnew file mode 100644 index 0000000000..032abb8207 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll Binary files differnew file mode 100644 index 0000000000..07d640324b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll Binary files differnew file mode 100644 index 0000000000..03158d5e3d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll Binary files differnew file mode 100644 index 0000000000..a89797b701 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll Binary files differnew file mode 100644 index 0000000000..e1229986d2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll Binary files differnew file mode 100644 index 0000000000..044d000167 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll Binary files differnew file mode 100644 index 0000000000..666679b5f8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll Binary files differnew file mode 100644 index 0000000000..bb76446a5e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll Binary files differnew file mode 100644 index 0000000000..7f834d498d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll Binary files differnew file mode 100644 index 0000000000..32299e23a3 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll Binary files differnew file mode 100644 index 0000000000..1d96415e59 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll Binary files differnew file mode 100644 index 0000000000..e797b5fd8e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll Binary files differnew file mode 100644 index 0000000000..092ad2ccf2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll Binary files differnew file mode 100644 index 0000000000..de6cf08e2b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll Binary files differnew file mode 100644 index 0000000000..da993d1a04 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll Binary files differnew file mode 100644 index 0000000000..e43577d592 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll Binary files differnew file mode 100644 index 0000000000..87fe0ae8bb --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll Binary files differnew file mode 100644 index 0000000000..35286a516c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll Binary files differnew file mode 100644 index 0000000000..a21e8cc76b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll Binary files differnew file mode 100644 index 0000000000..275fa6d994 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll Binary files differnew file mode 100644 index 0000000000..650e9bb3e6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll Binary files differnew file mode 100644 index 0000000000..6f2e9eefcd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll Binary files differnew file mode 100644 index 0000000000..634eb7b297 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll Binary files differnew file mode 100644 index 0000000000..517afce5c2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll Binary files differnew file mode 100644 index 0000000000..fc19d7815a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll Binary files differnew file mode 100644 index 0000000000..843262414d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll Binary files differnew file mode 100644 index 0000000000..72ef4b77af --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll Binary files differnew file mode 100644 index 0000000000..dc745f66f6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..327874faaa --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll Binary files differnew file mode 100644 index 0000000000..f54b160fd1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll Binary files differnew file mode 100644 index 0000000000..3b56126a89 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll Binary files differnew file mode 100644 index 0000000000..15e01a461f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll Binary files differnew file mode 100644 index 0000000000..caf3778f8b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll Binary files differnew file mode 100644 index 0000000000..c121ec29b7 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll Binary files differnew file mode 100644 index 0000000000..52baaf84af --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..94913a4021 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll Binary files differnew file mode 100644 index 0000000000..02388213c6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll Binary files differnew file mode 100644 index 0000000000..d212f76efe --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll Binary files differnew file mode 100644 index 0000000000..01351ea53f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll Binary files differnew file mode 100644 index 0000000000..3bcbdf86d2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll Binary files differnew file mode 100644 index 0000000000..2f9ba0dd89 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll Binary files differnew file mode 100644 index 0000000000..8a21ca83ad --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll Binary files differnew file mode 100644 index 0000000000..18d0639ae9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll Binary files differnew file mode 100644 index 0000000000..aa3f0fccb5 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll Binary files differnew file mode 100644 index 0000000000..a3a1f45197 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll Binary files differnew file mode 100644 index 0000000000..77d2cdda43 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll Binary files differnew file mode 100644 index 0000000000..7da87e3740 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll Binary files differnew file mode 100644 index 0000000000..e4393e6752 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll Binary files differnew file mode 100644 index 0000000000..636963cac0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll Binary files differnew file mode 100644 index 0000000000..9509f21237 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll Binary files differnew file mode 100644 index 0000000000..29188f8f9a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll Binary files differnew file mode 100644 index 0000000000..326355dabf --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll Binary files differnew file mode 100644 index 0000000000..328bc5f46e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll Binary files differnew file mode 100644 index 0000000000..d8e5c3a5d6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll Binary files differnew file mode 100644 index 0000000000..37c48e1e8c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll Binary files differnew file mode 100644 index 0000000000..a2871b03c4 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll Binary files differnew file mode 100644 index 0000000000..fd0a20b76a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll Binary files differnew file mode 100644 index 0000000000..0ac5ac2d0d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll Binary files differnew file mode 100644 index 0000000000..04a01f819b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll Binary files differnew file mode 100644 index 0000000000..6d21c31724 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll Binary files differnew file mode 100644 index 0000000000..0938326a2a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll Binary files differnew file mode 100644 index 0000000000..911e8133df --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll Binary files differnew file mode 100644 index 0000000000..5856ef1860 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll Binary files differnew file mode 100644 index 0000000000..f4a8e21c93 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll Binary files differnew file mode 100644 index 0000000000..64e386ab2e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll Binary files differnew file mode 100644 index 0000000000..acb7768759 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll Binary files differnew file mode 100644 index 0000000000..82232ac154 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll Binary files differnew file mode 100644 index 0000000000..04beba2523 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll Binary files differnew file mode 100644 index 0000000000..e94210ef1b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll Binary files differnew file mode 100644 index 0000000000..d9c687bcc9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll Binary files differnew file mode 100644 index 0000000000..1f9e6df91a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll Binary files differnew file mode 100644 index 0000000000..82bc088c3c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll Binary files differnew file mode 100644 index 0000000000..a12ad00d9b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll Binary files differnew file mode 100644 index 0000000000..d3ee172b1d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll Binary files differnew file mode 100644 index 0000000000..11cf232098 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll Binary files differnew file mode 100644 index 0000000000..547b51da9b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll Binary files differnew file mode 100644 index 0000000000..97649b05d8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll Binary files differnew file mode 100644 index 0000000000..aa05364448 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll Binary files differnew file mode 100644 index 0000000000..ab69e12842 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll Binary files differnew file mode 100644 index 0000000000..a9cf60b6db --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll Binary files differnew file mode 100644 index 0000000000..73950b85bd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll Binary files differnew file mode 100644 index 0000000000..2f8858f663 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll Binary files differnew file mode 100644 index 0000000000..c6d291ba30 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll Binary files differnew file mode 100644 index 0000000000..c40c10f8a6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll Binary files differnew file mode 100644 index 0000000000..6795902430 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll Binary files differnew file mode 100644 index 0000000000..bc71ada005 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll Binary files differnew file mode 100644 index 0000000000..2bd8e0d741 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll Binary files differnew file mode 100644 index 0000000000..d727c910ca --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll Binary files differnew file mode 100644 index 0000000000..a03b1a6f1d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll Binary files differnew file mode 100644 index 0000000000..837a99c035 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll Binary files differnew file mode 100644 index 0000000000..37df042a74 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll Binary files differnew file mode 100644 index 0000000000..e715c212cd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll Binary files differnew file mode 100644 index 0000000000..25380f2ed1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll Binary files differnew file mode 100644 index 0000000000..0ea2110aae --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll Binary files differnew file mode 100644 index 0000000000..ed7c938cac --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll Binary files differnew file mode 100644 index 0000000000..84a3e36faf --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll Binary files differnew file mode 100644 index 0000000000..319c0d5944 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll Binary files differnew file mode 100644 index 0000000000..290b36ab27 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll Binary files differnew file mode 100644 index 0000000000..12bee9bb6e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..0a7b19a8d7 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll Binary files differnew file mode 100644 index 0000000000..c206ec806e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll Binary files differnew file mode 100644 index 0000000000..65323a1662 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll Binary files differnew file mode 100644 index 0000000000..295838d658 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll Binary files differnew file mode 100644 index 0000000000..0d0c3ae91d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll Binary files differnew file mode 100644 index 0000000000..d3ab8e17c9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll Binary files differnew file mode 100644 index 0000000000..1e5067d955 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll Binary files differnew file mode 100644 index 0000000000..252b80c246 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll Binary files differnew file mode 100644 index 0000000000..23f957e836 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll Binary files differnew file mode 100644 index 0000000000..99215bb1df --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll Binary files differnew file mode 100644 index 0000000000..b91dc9c114 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll Binary files differnew file mode 100644 index 0000000000..b380d0856e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll Binary files differnew file mode 100644 index 0000000000..a6353d473c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll Binary files differnew file mode 100644 index 0000000000..44ef9ee6ee --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll Binary files differnew file mode 100644 index 0000000000..92c09d098c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll Binary files differnew file mode 100644 index 0000000000..e958ac5c9c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll Binary files differnew file mode 100644 index 0000000000..0fcea369c1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll Binary files differnew file mode 100644 index 0000000000..9074d56d58 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll Binary files differnew file mode 100644 index 0000000000..a8a70761fb --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll Binary files differnew file mode 100644 index 0000000000..9fbf6011d0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll Binary files differnew file mode 100644 index 0000000000..373a39f93b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll Binary files differnew file mode 100644 index 0000000000..9b7a4c0eac --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll Binary files differnew file mode 100644 index 0000000000..b200a7b437 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll Binary files differnew file mode 100644 index 0000000000..c7b337a6c2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll Binary files differnew file mode 100644 index 0000000000..7faf7c1d55 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..49d43249f0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll Binary files differnew file mode 100644 index 0000000000..1959e050e9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll Binary files differnew file mode 100644 index 0000000000..9c19e78ac5 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll Binary files differnew file mode 100644 index 0000000000..54983b20df --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll Binary files differnew file mode 100644 index 0000000000..91e7719fb7 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll Binary files differnew file mode 100644 index 0000000000..45651b24a8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll Binary files differnew file mode 100644 index 0000000000..bc84d5a36c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll Binary files differnew file mode 100644 index 0000000000..f4e3352ab3 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll Binary files differnew file mode 100644 index 0000000000..697af93c2c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll Binary files differnew file mode 100644 index 0000000000..d1ba57bf67 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll Binary files differnew file mode 100644 index 0000000000..134e38ecdb --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll Binary files differnew file mode 100644 index 0000000000..b207cd0417 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll Binary files differnew file mode 100644 index 0000000000..3cc5173a0a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll Binary files differnew file mode 100644 index 0000000000..c21dd6c06b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll Binary files differnew file mode 100644 index 0000000000..ced26d15f1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll Binary files differnew file mode 100644 index 0000000000..a9c50e5a10 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll Binary files differnew file mode 100644 index 0000000000..ab82e8395a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll Binary files differnew file mode 100644 index 0000000000..b11be78695 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll Binary files differnew file mode 100644 index 0000000000..bcd2122844 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll Binary files differnew file mode 100644 index 0000000000..83a00174e7 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll Binary files differnew file mode 100644 index 0000000000..5497f03eff --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll Binary files differnew file mode 100644 index 0000000000..f643007fe0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll Binary files differnew file mode 100644 index 0000000000..f371876149 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll Binary files differnew file mode 100644 index 0000000000..03e3fb685d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll Binary files differnew file mode 100644 index 0000000000..2d0f5d884c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll Binary files differnew file mode 100644 index 0000000000..80e5f69e35 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll Binary files differnew file mode 100644 index 0000000000..52a37de8d6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.dll Binary files differnew file mode 100644 index 0000000000..6f8837770d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/System.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll Binary files differnew file mode 100644 index 0000000000..84d7856f8b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..779c378e98 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..dd5a2cf1ac --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d3876f9c68 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..9a311a06ee --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..9c1cdb24e2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..97189f2494 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..f85edc04fc --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll Binary files differnew file mode 100644 index 0000000000..d4c53a90a8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..128fa35e4d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..bd1a637721 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..4e5a595be2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..16b450ac85 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..0b162ee0f1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..c790187d65 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..0d8aa9b209 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..efaf87cee0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..a95cd5b172 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll Binary files differnew file mode 100644 index 0000000000..4a9af92c83 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..fb6733b074 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..4f7d5e27c4 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..11d95be913 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..6a55ee74f3 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..9fed7ef08c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..1c9ac4ca96 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..3516fec483 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..c3ab5763f4 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d503f25196 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d3fbc883e2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d67a4264b0 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..51e6ccd72e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..a7b06ae008 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..46f9aac028 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..b90fdd77cf --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d40d70010e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d9ac672f8f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..39141736ce --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..83488ea089 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d18b79b28e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..639610b3c9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..ba595515cd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..2b4e367d00 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll Binary files differnew file mode 100644 index 0000000000..c900f4a816 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll Binary files differnew file mode 100644 index 0000000000..a3c8dfb053 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll Binary files differnew file mode 100644 index 0000000000..c1494a2c55 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll Binary files differnew file mode 100644 index 0000000000..7f113519cd --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/createdump.exe b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/createdump.exe Binary files differnew file mode 100644 index 0000000000..c66264ad34 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/createdump.exe diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..4b72058de6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..43acdf3d4c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll Binary files differnew file mode 100644 index 0000000000..3569641c9c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..55d6b391fa --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..698f08e5e2 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..e770ccc2e8 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..62e2e9a98b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..f605e75a4d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..a5aec6aa4e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll Binary files differnew file mode 100644 index 0000000000..7595b4cd83 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll Binary files differnew file mode 100644 index 0000000000..87ce55dbe9 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..5aedc4b83b --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..0ecca4c37d --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2437ed9332 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..0b985d837c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..c908377e1f --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..bdb9eb5248 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mi.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mi.dll Binary files differindex f169cbe4b8..f169cbe4b8 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/mi.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mi.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/miutils.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/miutils.dll Binary files differindex f9c9d3f2e7..f9c9d3f2e7 100644 --- a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/3.1.8/miutils.dll +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/miutils.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll Binary files differnew file mode 100644 index 0000000000..65e8b8da0e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_amd64_amd64_5.0.20.51904.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_amd64_amd64_5.0.20.51904.dll Binary files differnew file mode 100644 index 0000000000..257792282e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_amd64_amd64_5.0.20.51904.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll Binary files differnew file mode 100644 index 0000000000..cae3ce0bb5 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll Binary files differnew file mode 100644 index 0000000000..482261960c --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll Binary files differnew file mode 100644 index 0000000000..f75271c522 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll Binary files differnew file mode 100644 index 0000000000..4166bf4d61 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..8f2b775300 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..b287bd94de --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..4c64afcfda --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..10a885e034 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll Binary files differnew file mode 100644 index 0000000000..f7368e471a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2b8db7b639 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..cb414f7bb6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..87c1ca2c76 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..5b1ff67570 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll Binary files differnew file mode 100644 index 0000000000..5109f1d7f1 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..8b19e6492a --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..32204d4633 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2acfeed16e --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..57283cf4f6 --- /dev/null +++ b/distro/ruby_bin_folder/AMD64/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/AMD64/vccorlib140.dll b/distro/ruby_bin_folder/AMD64/vccorlib140.dll Binary files differindex 60abd1b7ea..bd5e97837d 100644 --- a/distro/ruby_bin_folder/AMD64/vccorlib140.dll +++ b/distro/ruby_bin_folder/AMD64/vccorlib140.dll diff --git a/distro/ruby_bin_folder/AMD64/vcruntime140.dll b/distro/ruby_bin_folder/AMD64/vcruntime140.dll Binary files differindex 4d21df8aa2..e6f0a40170 100644 --- a/distro/ruby_bin_folder/AMD64/vcruntime140.dll +++ b/distro/ruby_bin_folder/AMD64/vcruntime140.dll diff --git a/distro/ruby_bin_folder/AMD64/vcruntime140_1.dll b/distro/ruby_bin_folder/AMD64/vcruntime140_1.dll Binary files differindex 3a48b5b0b6..a46461a37e 100644 --- a/distro/ruby_bin_folder/AMD64/vcruntime140_1.dll +++ b/distro/ruby_bin_folder/AMD64/vcruntime140_1.dll diff --git a/distro/ruby_bin_folder/x86/Chef.PowerShell.dll b/distro/ruby_bin_folder/x86/Chef.PowerShell.dll Binary files differindex 6e405d878f..2ffbbea92c 100644 --- a/distro/ruby_bin_folder/x86/Chef.PowerShell.dll +++ b/distro/ruby_bin_folder/x86/Chef.PowerShell.dll diff --git a/distro/ruby_bin_folder/x86/Chef.Powershell.Wrapper.dll b/distro/ruby_bin_folder/x86/Chef.Powershell.Wrapper.dll Binary files differindex f148f6e6a5..b72d13c9c0 100644 --- a/distro/ruby_bin_folder/x86/Chef.Powershell.Wrapper.dll +++ b/distro/ruby_bin_folder/x86/Chef.Powershell.Wrapper.dll diff --git a/distro/ruby_bin_folder/x86/Ijwhost.dll b/distro/ruby_bin_folder/x86/Ijwhost.dll Binary files differindex 5332ff6d6a..333cb4dcd8 100644 --- a/distro/ruby_bin_folder/x86/Ijwhost.dll +++ b/distro/ruby_bin_folder/x86/Ijwhost.dll diff --git a/distro/ruby_bin_folder/x86/host/fxr/3.1.8/hostfxr.dll b/distro/ruby_bin_folder/x86/host/fxr/3.1.8/hostfxr.dll Binary files differdeleted file mode 100644 index 81c1fa314e..0000000000 --- a/distro/ruby_bin_folder/x86/host/fxr/3.1.8/hostfxr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/host/fxr/5.0.0/hostfxr.dll b/distro/ruby_bin_folder/x86/host/fxr/5.0.0/hostfxr.dll Binary files differnew file mode 100644 index 0000000000..9074a6c2a1 --- /dev/null +++ b/distro/ruby_bin_folder/x86/host/fxr/5.0.0/hostfxr.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/API-MS-Win-core-xstate-l2-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/API-MS-Win-core-xstate-l2-1-0.dll Binary files differdeleted file mode 100644 index 03acb0fef2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/API-MS-Win-core-xstate-l2-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll Binary files differdeleted file mode 100644 index 0d282b5d39..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.PowerShell.Wrapper.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll Binary files differdeleted file mode 100644 index 1b53a46076..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb Binary files differdeleted file mode 100644 index 269329e5f2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Core.pdb +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json deleted file mode 100644 index 48b8c87e25..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Chef.Powershell.Wrapper.Core.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll Binary files differdeleted file mode 100644 index 5332ff6d6a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Ijwhost.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll Binary files differdeleted file mode 100644 index 1cf1ed82bf..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Markdig.Signed.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll Binary files differdeleted file mode 100644 index e7c2bf1789..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.ApplicationInsights.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll Binary files differdeleted file mode 100644 index 75e070f6a1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CSharp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll Binary files differdeleted file mode 100644 index e4c8010fee..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.CSharp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll Binary files differdeleted file mode 100644 index 4761ae95de..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.CodeAnalysis.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json deleted file mode 100644 index 17e9899d2c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.NETCore.App.deps.json +++ /dev/null @@ -1,2525 +0,0 @@ -{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1/win10-x86",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {},
- ".NETCoreApp,Version=v3.1/win10-x86": {
- "Chef.Powershell.Core/1.0.0": {
- "dependencies": {
- "Microsoft.PowerShell.Commands.Diagnostics": "7.0.3",
- "Microsoft.PowerShell.Commands.Management": "7.0.3",
- "Microsoft.PowerShell.Commands.Utility": "7.0.3",
- "Microsoft.PowerShell.ConsoleHost": "7.0.3",
- "Microsoft.WSMan.Management": "7.0.3",
- "Microsoft.WSMan.Runtime": "7.0.3",
- "Newtonsoft.Json": "12.0.3",
- "System.Management.Automation": "7.0.3",
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "3.1.0"
- },
- "runtime": {
- "Chef.Powershell.Core.dll": {}
- }
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/3.1.0": {
- "runtime": {
- "Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.VisualBasic.Core.dll": {
- "assemblyVersion": "10.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.VisualBasic.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.Win32.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.AppContext.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Buffers.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Concurrent.dll": {
- "assemblyVersion": "4.0.15.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.NonGeneric.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.Specialized.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Collections.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.Annotations.dll": {
- "assemblyVersion": "4.3.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.DataAnnotations.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.EventBasedAsync.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ComponentModel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Configuration.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Console.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Core.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.Common.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.DataSetExtensions.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Data.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Contracts.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Debug.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.FileVersionInfo.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Process.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.StackTrace.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.TextWriterTraceListener.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Tools.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.TraceSource.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Diagnostics.Tracing.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Drawing.Primitives.dll": {
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Drawing.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.Calendars.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Globalization.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.Brotli.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.FileSystem.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Compression.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.DriveInfo.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.Watcher.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.FileSystem.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.IsolatedStorage.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.MemoryMappedFiles.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Pipes.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.Pipes.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.UnmanagedMemoryStream.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.IO.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Expressions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Parallel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.Queryable.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Linq.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Memory.dll": {
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Http.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.HttpListener.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Mail.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.NameResolution.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.NetworkInformation.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Ping.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Requests.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Security.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.ServicePoint.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.Sockets.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebClient.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebHeaderCollection.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebProxy.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebSockets.Client.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.WebSockets.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Net.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Numerics.Vectors.dll": {
- "assemblyVersion": "4.1.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Numerics.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ObjectModel.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.DataContractSerialization.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Uri.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Xml.Linq.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Private.Xml.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.DispatchProxy.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Emit.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Metadata.dll": {
- "assemblyVersion": "1.4.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Reflection.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.Reader.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.ResourceManager.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Resources.Writer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.CompilerServices.VisualC.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Extensions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Handles.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.WindowsRuntime.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.InteropServices.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Intrinsics.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Loader.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Numerics.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Formatters.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Json.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.Xml.dll": {
- "assemblyVersion": "4.1.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.WindowsRuntime.UI.Xaml.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.WindowsRuntime.dll": {
- "assemblyVersion": "4.0.15.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Runtime.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.AccessControl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Claims.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Algorithms.dll": {
- "assemblyVersion": "4.3.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Cng.dll": {
- "assemblyVersion": "4.3.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Csp.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Encoding.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.OpenSsl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Cryptography.X509Certificates.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.Principal.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.SecureString.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Security.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ServiceModel.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ServiceProcess.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.Extensions.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encoding.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Encodings.Web.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.Json.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Text.RegularExpressions.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Channels.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Overlapped.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Dataflow.dll": {
- "assemblyVersion": "4.6.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "4.3.1.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.Parallel.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Tasks.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Thread.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.ThreadPool.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.Timer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Threading.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Transactions.Local.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Transactions.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.ValueTuple.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Web.HttpUtility.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Windows.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.Linq.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "4.2.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XPath.XDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XPath.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XmlDocument.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.XmlSerializer.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.Xml.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "System.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "WindowsBase.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "mscorlib.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- },
- "netstandard.dll": {
- "assemblyVersion": "2.1.0.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "native": {
- "API-MS-Win-core-xstate-l2-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "Microsoft.DiaSymReader.Native.x86.dll": {
- "fileVersion": "14.12.25830.2"
- },
- "SOS_README.md": {
- "fileVersion": "0.0.0.0"
- },
- "System.Private.CoreLib.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56402"
- },
- "api-ms-win-core-console-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-datetime-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-debug-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-errorhandling-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-file-l2-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-handle-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-heap-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-interlocked-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-libraryloader-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-localization-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-memory-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-namedpipe-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processenvironment-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processthreads-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-processthreads-l1-1-1.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-profile-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-rtlsupport-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-string-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-synch-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-synch-l1-2-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-sysinfo-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-timezone-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-core-util-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-conio-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-convert-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-environment-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-filesystem-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-heap-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-locale-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-math-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-multibyte-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-private-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-process-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-runtime-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-stdio-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-string-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-time-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "api-ms-win-crt-utility-l1-1-0.dll": {
- "fileVersion": "10.0.17134.12"
- },
- "clrcompression.dll": {
- "fileVersion": "4.700.19.56404"
- },
- "clretwrc.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "clrjit.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "coreclr.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "dbgshim.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "hostfxr.dll": {
- "fileVersion": "3.100.19.56502"
- },
- "hostpolicy.dll": {
- "fileVersion": "3.100.19.56502"
- },
- "mscordaccore.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscordaccore_x86_x86_4.700.19.56402.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscordbi.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscorrc.debug.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "mscorrc.dll": {
- "fileVersion": "4.700.19.56402"
- },
- "ucrtbase.dll": {
- "fileVersion": "10.0.17134.12"
- }
- }
- },
- "Markdig.Signed/0.18.3": {
- "runtime": {
- "lib/netcoreapp2.1/Markdig.Signed.dll": {
- "assemblyVersion": "0.18.3.0",
- "fileVersion": "0.18.3.0"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.13.1": {
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "4.6.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
- "assemblyVersion": "2.13.1.12554",
- "fileVersion": "2.13.1.12554"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/2.9.6": {},
- "Microsoft.CodeAnalysis.Common/3.4.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "2.9.6",
- "System.Collections.Immutable": "1.5.0",
- "System.Memory": "4.5.3",
- "System.Reflection.Metadata": "1.6.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.7.1",
- "System.Threading.Tasks.Extensions": "4.5.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "3.4.0.0",
- "fileVersion": "3.400.19.56804"
- }
- },
- "resources": {
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.4.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "3.4.0.0",
- "fileVersion": "3.400.19.56804"
- }
- },
- "resources": {
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "Microsoft.Management.Infrastructure/2.0.0": {
- "dependencies": {
- "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
- "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
- }
- },
- "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {},
- "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
- "runtime": {
- "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "10.0.18362.1"
- }
- },
- "native": {
- "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x86/native/mi.dll": {
- "fileVersion": "10.0.18362.1"
- },
- "runtimes/win10-x86/native/miutils.dll": {
- "fileVersion": "10.0.18362.1"
- }
- }
- },
- "Microsoft.NETCore.Platforms/3.1.1": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.PowerShell.Commands.Diagnostics/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Diagnostics.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Commands.Management/7.0.3": {
- "dependencies": {
- "Microsoft.PowerShell.Security": "7.0.3",
- "System.ServiceProcess.ServiceController": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Management.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Commands.Utility/7.0.3": {
- "dependencies": {
- "Microsoft.CodeAnalysis.CSharp": "3.4.0",
- "Microsoft.PowerShell.MarkdownRender": "7.0.3",
- "NJsonSchema": "10.1.23",
- "System.Drawing.Common": "4.7.0",
- "System.Management.Automation": "7.0.3",
- "System.Threading.AccessControl": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Commands.Utility.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.ConsoleHost/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.ConsoleHost.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.CoreCLR.Eventing/7.0.3": {
- "dependencies": {
- "System.Diagnostics.EventLog": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.MarkdownRender/7.0.3": {
- "dependencies": {
- "Markdig.Signed": "0.18.3",
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.MarkdownRender.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.PowerShell.Native/7.0.0": {
- "native": {
- "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
- "fileVersion": "10.0.10011.16384"
- },
- "runtimes/win-x86/native/pwrshplugin.dll": {
- "fileVersion": "10.0.10011.16384"
- }
- }
- },
- "Microsoft.PowerShell.Security/7.0.3": {
- "dependencies": {
- "System.Management.Automation": "7.0.3"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.Security.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.Win32.Registry/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.Win32.Registry.AccessControl/4.7.0": {
- "dependencies": {
- "Microsoft.Win32.Registry": "4.7.0",
- "System.Security.AccessControl": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.WSMan.Management/7.0.3": {
- "dependencies": {
- "Microsoft.WSMan.Runtime": "7.0.3",
- "System.Management.Automation": "7.0.3",
- "System.ServiceProcess.ServiceController": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.WSMan.Management.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Microsoft.WSMan.Runtime/7.0.3": {
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/Microsoft.WSMan.Runtime.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "Namotion.Reflection/1.0.11": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0"
- },
- "runtime": {
- "lib/netstandard2.0/Namotion.Reflection.dll": {
- "assemblyVersion": "1.0.11.0",
- "fileVersion": "1.0.11.0"
- }
- }
- },
- "Newtonsoft.Json/12.0.3": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "12.0.0.0",
- "fileVersion": "12.0.3.23909"
- }
- }
- },
- "NJsonSchema/10.1.23": {
- "dependencies": {
- "Namotion.Reflection": "1.0.11",
- "Newtonsoft.Json": "12.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/NJsonSchema.dll": {
- "assemblyVersion": "10.1.23.0",
- "fileVersion": "10.1.23.0"
- }
- }
- },
- "runtime.any.System.Collections/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Globalization/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Globalization.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.IO/4.3.0": {
- "runtime": {
- "lib/netstandard1.5/System.IO.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection/4.3.0": {
- "runtime": {
- "lib/netstandard1.5/System.Reflection.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection.Extensions/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Extensions.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Reflection.Primitives/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Primitives.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Resources.ResourceManager/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Resources.ResourceManager.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime/4.3.0": {
- "dependencies": {
- "System.Private.Uri": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime.Handles/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Handles.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Runtime.InteropServices/4.3.0": {
- "runtime": {
- "lib/netstandard1.6/System.Runtime.InteropServices.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Text.Encoding/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Text.Encoding.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.any.System.Threading.Tasks/4.3.0": {
- "runtime": {
- "lib/netstandard1.3/System.Threading.Tasks.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win.System.Diagnostics.Debug/4.3.0": {
- "runtime": {
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win.System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "System.Private.Uri": "4.3.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "runtime.win7.System.Private.Uri/4.3.0": {
- "runtime": {
- "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.CodeDom/4.7.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Collections": "4.3.0"
- }
- },
- "System.Collections.Immutable/1.5.0": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.3.0",
- "fileVersion": "4.6.26515.6"
- }
- }
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "4.7.0",
- "System.Security.Permissions": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.win.System.Diagnostics.Debug": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.6.0": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.4.0",
- "fileVersion": "4.700.19.46214"
- }
- }
- },
- "System.Diagnostics.EventLog/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.Registry": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.DirectoryServices/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "System.IO.FileSystem.AccessControl": "4.7.0",
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Permissions": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Drawing.Common/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.SystemEvents": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Globalization": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.any.System.IO": "4.3.0"
- }
- },
- "System.IO.FileSystem.AccessControl/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Management/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.Win32.Registry": "4.7.0",
- "System.CodeDom": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Management.Automation/7.0.3": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.13.1",
- "Microsoft.Management.Infrastructure": "2.0.0",
- "Microsoft.PowerShell.CoreCLR.Eventing": "7.0.3",
- "Microsoft.PowerShell.Native": "7.0.0",
- "Microsoft.Win32.Registry.AccessControl": "4.7.0",
- "Newtonsoft.Json": "12.0.3",
- "System.Configuration.ConfigurationManager": "4.7.0",
- "System.DirectoryServices": "4.7.0",
- "System.IO.FileSystem.AccessControl": "4.7.0",
- "System.Management": "4.7.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Cryptography.Pkcs": "4.7.0",
- "System.Security.Permissions": "4.7.0",
- "System.Text.Encoding.CodePages": "4.7.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.1/System.Management.Automation.dll": {
- "assemblyVersion": "7.0.3.0",
- "fileVersion": "7.0.3.0"
- }
- }
- },
- "System.Memory/4.5.3": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Private.Uri/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "runtime.win7.System.Private.Uri": "4.3.0"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection.Extensions": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.6.0": {
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "assemblyVersion": "1.4.3.0",
- "fileVersion": "4.6.26515.6"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Reflection.Primitives": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Resources.ResourceManager": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "runtime.any.System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "runtime": {
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.6.0",
- "fileVersion": "4.700.20.12001"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.win.System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "runtime.any.System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.Security.AccessControl/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "assemblyVersion": "4.3.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.Cng": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Permissions/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Windows.Extensions": "4.7.0"
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Principal.Windows/4.7.0": {
- "runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.ServiceProcess.ServiceController/4.7.0": {
- "dependencies": {
- "System.Diagnostics.EventLog": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
- "assemblyVersion": "4.2.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.7.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.AccessControl/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.1",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "runtime.any.System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.3": {},
- "System.Windows.Extensions/4.7.0": {
- "dependencies": {
- "System.Drawing.Common": "4.7.0"
- },
- "runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- }
- }
- },
- "libraries": {
- "Chef.Powershell.Core/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/3.1.0": {
- "type": "runtimepack",
- "serviceable": false,
- "sha512": ""
- },
- "Markdig.Signed/0.18.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l8838LV/+sD1Smr13BnvS9MRlRpC3jfKmcFY3rTk/YFf0haE2QhzjBESnwwiS5LpMV3f09KKf0Pbkyh32dJPkQ==",
- "path": "markdig.signed/0.18.3",
- "hashPath": "markdig.signed.0.18.3.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights/2.13.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BQhLmYR06Z8TVCdxnr8WOhhovJHtqYRNeB5gePBdQ4uDOE8D4IK9HW9i6a3llELz1QHv4HtFpku6dpXMGnO22g==",
- "path": "microsoft.applicationinsights/2.13.1",
- "hashPath": "microsoft.applicationinsights.2.13.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/2.9.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Kmms3TxGQMNb95Cu/3K+0bIcMnV4qf/phZBLAB0HUi65rBPxP4JO3aM2LoAcb+DFS600RQJMZ7ZLyYDTbLwJOQ==",
- "path": "microsoft.codeanalysis.analyzers/2.9.6",
- "hashPath": "microsoft.codeanalysis.analyzers.2.9.6.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/3.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ncA7cV+iXGA1VYwe2UEZXcvWyZSlbexWjM9AvocP7sik5UD93qt9Hq0fMRGk0jFRmvmE4T2g+bGfXiBVZEhLw==",
- "path": "microsoft.codeanalysis.common/3.4.0",
- "hashPath": "microsoft.codeanalysis.common.3.4.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/3.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/LsTtgcMN6Tu1oo7/WYbRAHL4/ubXC/miEakwTpcZKJKtFo7D0AK95Hw0dbGxul6C8WJu60v6NP2435TDYZM+Q==",
- "path": "microsoft.codeanalysis.csharp/3.4.0",
- "hashPath": "microsoft.codeanalysis.csharp.3.4.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
- "path": "microsoft.management.infrastructure/2.0.0",
- "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
- "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
- "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
- },
- "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
- "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
- "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/3.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
- "path": "microsoft.netcore.platforms/3.1.1",
- "hashPath": "microsoft.netcore.platforms.3.1.1.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Diagnostics/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nd8TAW5QRX3MKXB69ZUAOd7FrP3jLQA4iN4ObKdNljDRf05oecmF48hx+9f7XI1j16KbjQPcbKb3vbj3RlB7WQ==",
- "path": "microsoft.powershell.commands.diagnostics/7.0.3",
- "hashPath": "microsoft.powershell.commands.diagnostics.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Management/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dNZO4kMlM2X76IoYrxB8PRYlfXVzzysCyWkFdSQZRetKXJz4riLlSKbyQgIk2G2noiCyv0nyyLf2j0wBj8WduA==",
- "path": "microsoft.powershell.commands.management/7.0.3",
- "hashPath": "microsoft.powershell.commands.management.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Commands.Utility/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nM/wbPUwinyEm98qr6CAtJllcaerBTvBm49Uy6L2wLul0tXWPq/zkaAw0uRehTkfX2ZE5uCh9qhRXYUTeIh2jA==",
- "path": "microsoft.powershell.commands.utility/7.0.3",
- "hashPath": "microsoft.powershell.commands.utility.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.ConsoleHost/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q0T9WfMBUc+AxxcwdYw6I7VXysnwyyMD00Zb/rIDj0IO36x2DeGZf1RgmGs5aF5WpyvdMThnmeZbsRtcAYFWQg==",
- "path": "microsoft.powershell.consolehost/7.0.3",
- "hashPath": "microsoft.powershell.consolehost.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.CoreCLR.Eventing/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZMs1qMmqmaISqlLPbnX7uXM8/IpEGUB4qoSlBOgfFQrah16pxn+3E2+eLV6t/fUOVGLzm0kVXrcezABOmHudhA==",
- "path": "microsoft.powershell.coreclr.eventing/7.0.3",
- "hashPath": "microsoft.powershell.coreclr.eventing.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.MarkdownRender/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-82nQBTwcuYVwptYxx6J9hG3/qCj1IHg7eM+rpAhwNmE+bTa2mawCxFlJv5ScpmcBiijisUdsI+t0Nrq2N+OQtw==",
- "path": "microsoft.powershell.markdownrender/7.0.3",
- "hashPath": "microsoft.powershell.markdownrender.7.0.3.nupkg.sha512"
- },
- "Microsoft.PowerShell.Native/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-btrvvHj0QEdPU2lIKD5divnLbMok/dNUUo4pjTZJAyU+y+We6cuPL5UurHJTzWPEwU/NzS8+2tqV4jSXvlPB2Q==",
- "path": "microsoft.powershell.native/7.0.0",
- "hashPath": "microsoft.powershell.native.7.0.0.nupkg.sha512"
- },
- "Microsoft.PowerShell.Security/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/9Mjn4y0wlatKfIBqywJIDBeq8vUPZqsSOBk7O4JJGnLy1tAVchUT2+Ln66Zi9iXSt/v2DlGbSdIOSkiLVS3UQ==",
- "path": "microsoft.powershell.security/7.0.3",
- "hashPath": "microsoft.powershell.security.7.0.3.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
- "path": "microsoft.win32.registry/4.7.0",
- "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6ZBpiCrPHoRxm0GWrlUfSKx5i4987cRs2hi8KVHD+iI72pm0jScyr5QvqdLeyTgf22R4WgdmBo2k64wtVotPRA==",
- "path": "microsoft.win32.registry.accesscontrol/4.7.0",
- "hashPath": "microsoft.win32.registry.accesscontrol.4.7.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
- "path": "microsoft.win32.systemevents/4.7.0",
- "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
- },
- "Microsoft.WSMan.Management/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uumqzLPrFmL+B/3NjzHNBOvbR1dmd976AoQjhtJPx7ay8x48sg7D/hU3GSjLgu/gz6U7KyhmieFwEL9TmYl3Ww==",
- "path": "microsoft.wsman.management/7.0.3",
- "hashPath": "microsoft.wsman.management.7.0.3.nupkg.sha512"
- },
- "Microsoft.WSMan.Runtime/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RBdpZDUz8k+OCbXljSjLoGg3IDemn3b2YumGj0G+dJ7xdtVtzhS+sIUegOeG8Ci1wG6GjOgNTgy0e6MpCNaMzg==",
- "path": "microsoft.wsman.runtime/7.0.3",
- "hashPath": "microsoft.wsman.runtime.7.0.3.nupkg.sha512"
- },
- "Namotion.Reflection/1.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NT7/kod+9SCiL3XbCeY5OtohSGtLmclH5YAlWZiual5fhSldhDsrk8kzgSDx45UBOoeBnvmC8HEpAzKwj6grYQ==",
- "path": "namotion.reflection/1.0.11",
- "hashPath": "namotion.reflection.1.0.11.nupkg.sha512"
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "path": "newtonsoft.json/12.0.3",
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
- },
- "NJsonSchema/10.1.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zXyBnx3qUrS5vQ7lSG0VGd/ovm8t8V904cqOC9uwwQgMC9Fgz0z0WLyOiVmK05uNp4ryOIU5cK3jrLXgbUg7qA==",
- "path": "njsonschema/10.1.23",
- "hashPath": "njsonschema.10.1.23.nupkg.sha512"
- },
- "runtime.any.System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
- "path": "runtime.any.system.collections/4.3.0",
- "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
- "path": "runtime.any.system.globalization/4.3.0",
- "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
- "path": "runtime.any.system.io/4.3.0",
- "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
- "path": "runtime.any.system.reflection/4.3.0",
- "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
- "path": "runtime.any.system.reflection.extensions/4.3.0",
- "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
- "path": "runtime.any.system.reflection.primitives/4.3.0",
- "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
- "path": "runtime.any.system.resources.resourcemanager/4.3.0",
- "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
- "path": "runtime.any.system.runtime/4.3.0",
- "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
- "path": "runtime.any.system.runtime.handles/4.3.0",
- "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
- "path": "runtime.any.system.runtime.interopservices/4.3.0",
- "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
- "path": "runtime.any.system.text.encoding/4.3.0",
- "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
- },
- "runtime.any.System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
- "path": "runtime.any.system.threading.tasks/4.3.0",
- "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "runtime.win.System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
- "path": "runtime.win.system.diagnostics.debug/4.3.0",
- "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "runtime.win.System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
- "path": "runtime.win.system.runtime.extensions/4.3.0",
- "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "runtime.win7.System.Private.Uri/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
- "path": "runtime.win7.system.private.uri/4.3.0",
- "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
- },
- "System.CodeDom/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==",
- "path": "system.codedom/4.7.0",
- "hashPath": "system.codedom.4.7.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/1.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
- "path": "system.collections.immutable/1.5.0",
- "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
- "path": "system.configuration.configurationmanager/4.7.0",
- "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
- "path": "system.diagnostics.diagnosticsource/4.6.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
- },
- "System.Diagnostics.EventLog/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
- "path": "system.diagnostics.eventlog/4.7.0",
- "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
- },
- "System.DirectoryServices/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
- "path": "system.directoryservices/4.7.0",
- "hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
- },
- "System.Drawing.Common/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
- "path": "system.drawing.common/4.7.0",
- "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
- "path": "system.io.filesystem.accesscontrol/4.7.0",
- "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Management/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==",
- "path": "system.management/4.7.0",
- "hashPath": "system.management.4.7.0.nupkg.sha512"
- },
- "System.Management.Automation/7.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtqw4JAkwgSAqWf/yi5026w/b+cmUNqxT6CJ7lJOXdnvlJ3GzvvJ54YfJYqJLN6BJH9VtIYYA4vJKke3gHkWYQ==",
- "path": "system.management.automation/7.0.3",
- "hashPath": "system.management.automation.7.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
- "path": "system.memory/4.5.3",
- "hashPath": "system.memory.4.5.3.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Private.Uri/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
- "path": "system.private.uri/4.3.0",
- "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
- "path": "system.reflection.metadata/1.6.0",
- "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
- "path": "system.security.accesscontrol/4.7.0",
- "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
- "path": "system.security.cryptography.cng/4.7.0",
- "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
- "path": "system.security.cryptography.pkcs/4.7.0",
- "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
- "path": "system.security.cryptography.protecteddata/4.7.0",
- "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
- },
- "System.Security.Permissions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
- "path": "system.security.permissions/4.7.0",
- "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
- "path": "system.security.principal.windows/4.7.0",
- "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
- },
- "System.ServiceProcess.ServiceController/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FuYfwENKZqWxGtYU5Vay2ai2dPWLKzRgI+WZkjceN3jaTK9ZVYnV1GRMTtN3Qodm9RT0gOiN8WoHGNXzTaZ+fw==",
- "path": "system.serviceprocess.servicecontroller/4.7.0",
- "hashPath": "system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
- "path": "system.text.encoding.codepages/4.7.1",
- "hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/fmzEf1UYrdCzfOIHVJ2cx3v9DHLLLMkUrodpzJGW17N+K+SSmBD8OA/BGmtfN1Ae0Ex3rBjQVufnIi5zKefuQ==",
- "path": "system.threading.accesscontrol/4.7.0",
- "hashPath": "system.threading.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
- "path": "system.threading.tasks.extensions/4.5.3",
- "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
- },
- "System.Windows.Extensions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
- "path": "system.windows.extensions/4.7.0",
- "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll Binary files differdeleted file mode 100644 index c3d7df035e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Diagnostics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll Binary files differdeleted file mode 100644 index d4ed646b24..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll Binary files differdeleted file mode 100644 index b2bf2f0de1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Commands.Utility.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll Binary files differdeleted file mode 100644 index c8dfa2d4f8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.ConsoleHost.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll Binary files differdeleted file mode 100644 index 21e4eda98d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.CoreCLR.Eventing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll Binary files differdeleted file mode 100644 index 9819a96a3e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.MarkdownRender.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll Binary files differdeleted file mode 100644 index 4bc4b4340e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.PowerShell.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll Binary files differdeleted file mode 100644 index ac41b35180..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll Binary files differdeleted file mode 100644 index f47dbe9e29..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.VisualBasic.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll Binary files differdeleted file mode 100644 index c1da3cf5b5..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll Binary files differdeleted file mode 100644 index 19d7f9b9e7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.WSMan.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll Binary files differdeleted file mode 100644 index f3123aa5a6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll Binary files differdeleted file mode 100644 index cefc84b075..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll Binary files differdeleted file mode 100644 index 6aafae025e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.Registry.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll Binary files differdeleted file mode 100644 index c49c358738..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Win32.SystemEvents.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll Binary files differdeleted file mode 100644 index f002b3918f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/NJsonSchema.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll Binary files differdeleted file mode 100644 index 333125ce36..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Namotion.Reflection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll Binary files differdeleted file mode 100644 index b830351ebb..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/PowerShell.Core.Instrumentation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md deleted file mode 100644 index d80472f192..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/SOS_README.md +++ /dev/null @@ -1,5 +0,0 @@ -SOS and other diagnostic tools now ship of band and work with any version of the .NET Core runtime.
-
-SOS has moved to the diagnostics repo here: https://github.com/dotnet/diagnostics.git.
-
-Instructions to install SOS: https://github.com/dotnet/diagnostics#installing-sos.
diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll Binary files differdeleted file mode 100644 index a65ba99316..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.AppContext.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll Binary files differdeleted file mode 100644 index 213c235be6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Buffers.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll Binary files differdeleted file mode 100644 index 9ddbb18479..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.CodeDom.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll Binary files differdeleted file mode 100644 index d775228635..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Concurrent.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll Binary files differdeleted file mode 100644 index b2c2171baa..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Immutable.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll Binary files differdeleted file mode 100644 index deb7ee9d93..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.NonGeneric.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll Binary files differdeleted file mode 100644 index 8c65233564..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.Specialized.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll Binary files differdeleted file mode 100644 index 305e84e64d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Collections.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll Binary files differdeleted file mode 100644 index 1c069d018e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Annotations.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll Binary files differdeleted file mode 100644 index b0e4cfebf4..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.DataAnnotations.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll Binary files differdeleted file mode 100644 index 64497c0171..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.EventBasedAsync.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll Binary files differdeleted file mode 100644 index e24fd264d3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll Binary files differdeleted file mode 100644 index c92815623e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.TypeConverter.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll Binary files differdeleted file mode 100644 index d8f25ad02d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ComponentModel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll Binary files differdeleted file mode 100644 index 6f34b8d937..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.ConfigurationManager.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll Binary files differdeleted file mode 100644 index 15bd4ef24c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Configuration.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll Binary files differdeleted file mode 100644 index 4bdd4ef1ca..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Console.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll Binary files differdeleted file mode 100644 index 45e42631c1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Core.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll Binary files differdeleted file mode 100644 index dbad729faa..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.Common.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll Binary files differdeleted file mode 100644 index 9631d9a9ee..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.DataSetExtensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll Binary files differdeleted file mode 100644 index a272c6d415..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Data.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll Binary files differdeleted file mode 100644 index 00d40060d2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Contracts.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll Binary files differdeleted file mode 100644 index 4794fa591d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Debug.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll Binary files differdeleted file mode 100644 index ac0d11e291..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.DiagnosticSource.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll Binary files differdeleted file mode 100644 index 536bdd484c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.EventLog.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll Binary files differdeleted file mode 100644 index dad77f4552..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.FileVersionInfo.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll Binary files differdeleted file mode 100644 index 4cc1d662a9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Process.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll Binary files differdeleted file mode 100644 index 4b7d165aba..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.StackTrace.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll Binary files differdeleted file mode 100644 index 9f3bfafb4d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TextWriterTraceListener.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll Binary files differdeleted file mode 100644 index 789841b244..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tools.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll Binary files differdeleted file mode 100644 index 36b44eb5e9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.TraceSource.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll Binary files differdeleted file mode 100644 index 6842699e88..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Diagnostics.Tracing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll Binary files differdeleted file mode 100644 index 04879eca28..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.DirectoryServices.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll Binary files differdeleted file mode 100644 index 9a04b68f4d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Common.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll Binary files differdeleted file mode 100644 index 697c3411ce..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll Binary files differdeleted file mode 100644 index a067b73fe8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Drawing.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll Binary files differdeleted file mode 100644 index 5c78dec713..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Dynamic.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll Binary files differdeleted file mode 100644 index b2248ba5e9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Calendars.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll Binary files differdeleted file mode 100644 index 9501aaa790..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll Binary files differdeleted file mode 100644 index fb6105c459..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Globalization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll Binary files differdeleted file mode 100644 index 69c081991b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.Brotli.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll Binary files differdeleted file mode 100644 index 21c26a208e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.FileSystem.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll Binary files differdeleted file mode 100644 index ccada0c12a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.ZipFile.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll Binary files differdeleted file mode 100644 index 228453ad7d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Compression.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll Binary files differdeleted file mode 100644 index 56e43f24a1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll Binary files differdeleted file mode 100644 index 29eed94301..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.DriveInfo.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll Binary files differdeleted file mode 100644 index 6addad496a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll Binary files differdeleted file mode 100644 index 27a1494336..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.Watcher.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll Binary files differdeleted file mode 100644 index 73b94dedfa..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.FileSystem.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll Binary files differdeleted file mode 100644 index 7bda9351bc..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.IsolatedStorage.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll Binary files differdeleted file mode 100644 index 964f333462..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.MemoryMappedFiles.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll Binary files differdeleted file mode 100644 index 3421b18ed6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll Binary files differdeleted file mode 100644 index 628bdcc450..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.Pipes.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll Binary files differdeleted file mode 100644 index dc3accfa03..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.UnmanagedMemoryStream.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll Binary files differdeleted file mode 100644 index a323096282..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.IO.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll Binary files differdeleted file mode 100644 index 0956f36f1e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Expressions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll Binary files differdeleted file mode 100644 index 1ad61976b6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Parallel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll Binary files differdeleted file mode 100644 index 82bffc4ff9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.Queryable.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll Binary files differdeleted file mode 100644 index dd04c3fa67..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll Binary files differdeleted file mode 100644 index cc376e2f24..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.Automation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll Binary files differdeleted file mode 100644 index e618469835..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Management.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll Binary files differdeleted file mode 100644 index 8f90209223..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Memory.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll Binary files differdeleted file mode 100644 index fa769f3077..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Http.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll Binary files differdeleted file mode 100644 index 590f43cada..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.HttpListener.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll Binary files differdeleted file mode 100644 index 39fec8f62d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Mail.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll Binary files differdeleted file mode 100644 index f4bef4bd63..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NameResolution.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll Binary files differdeleted file mode 100644 index b655f135af..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.NetworkInformation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll Binary files differdeleted file mode 100644 index 23a56b7b44..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Ping.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll Binary files differdeleted file mode 100644 index 873355c544..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll Binary files differdeleted file mode 100644 index 493135c400..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Requests.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll Binary files differdeleted file mode 100644 index f808b2bba1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll Binary files differdeleted file mode 100644 index 0f6979e36b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.ServicePoint.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll Binary files differdeleted file mode 100644 index 6b0215996c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.Sockets.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll Binary files differdeleted file mode 100644 index a7903ac03d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebClient.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll Binary files differdeleted file mode 100644 index 7951e7378f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebHeaderCollection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll Binary files differdeleted file mode 100644 index 7eb1c66a25..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebProxy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll Binary files differdeleted file mode 100644 index c30873f65f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.Client.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll Binary files differdeleted file mode 100644 index 97b733b46e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.WebSockets.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll Binary files differdeleted file mode 100644 index 4af01cfb6c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Net.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll Binary files differdeleted file mode 100644 index 70199c1ece..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.Vectors.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll Binary files differdeleted file mode 100644 index 46bddb0bae..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Numerics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll Binary files differdeleted file mode 100644 index 9a24785770..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ObjectModel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll Binary files differdeleted file mode 100644 index d16e3f306f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.CoreLib.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll Binary files differdeleted file mode 100644 index 7950dbcb89..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.DataContractSerialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll Binary files differdeleted file mode 100644 index c6d6c60a2d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Uri.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll Binary files differdeleted file mode 100644 index fc4bcb06b8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll Binary files differdeleted file mode 100644 index fad160c431..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Private.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll Binary files differdeleted file mode 100644 index 781c44f542..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.DispatchProxy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll Binary files differdeleted file mode 100644 index 5401ef612d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.ILGeneration.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll Binary files differdeleted file mode 100644 index 94a350b718..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.Lightweight.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll Binary files differdeleted file mode 100644 index 3f19104ebf..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Emit.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll Binary files differdeleted file mode 100644 index 068339d8be..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll Binary files differdeleted file mode 100644 index 19fc38cd84..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Metadata.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll Binary files differdeleted file mode 100644 index 71e8ac6dfd..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll Binary files differdeleted file mode 100644 index 4ce779792b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.TypeExtensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll Binary files differdeleted file mode 100644 index f4adae55de..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Reflection.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll Binary files differdeleted file mode 100644 index 4649893bd8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Reader.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll Binary files differdeleted file mode 100644 index c62a715ad7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.ResourceManager.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll Binary files differdeleted file mode 100644 index 2f11c9e858..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Resources.Writer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll Binary files differdeleted file mode 100644 index 66a9307e4e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.Unsafe.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll Binary files differdeleted file mode 100644 index e849c282f9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.CompilerServices.VisualC.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll Binary files differdeleted file mode 100644 index 4950499805..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll Binary files differdeleted file mode 100644 index df5a64c648..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Handles.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll Binary files differdeleted file mode 100644 index 5b145d91d0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.RuntimeInformation.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll Binary files differdeleted file mode 100644 index 9ff638c91b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.WindowsRuntime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll Binary files differdeleted file mode 100644 index cacdcbf9b6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.InteropServices.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll Binary files differdeleted file mode 100644 index 2e21c81960..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Intrinsics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll Binary files differdeleted file mode 100644 index 6e4744ada9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Loader.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll Binary files differdeleted file mode 100644 index 4901a4463a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Numerics.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll Binary files differdeleted file mode 100644 index 2f95a65d43..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Formatters.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll Binary files differdeleted file mode 100644 index eb0b7cf01a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Json.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll Binary files differdeleted file mode 100644 index 51bbd040c3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll Binary files differdeleted file mode 100644 index 7e62f9290b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll Binary files differdeleted file mode 100644 index 20eef8a347..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.Serialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll Binary files differdeleted file mode 100644 index d8a69766f0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.UI.Xaml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll Binary files differdeleted file mode 100644 index 2cbe0495fc..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.WindowsRuntime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll Binary files differdeleted file mode 100644 index 20dfee4af7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Runtime.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll Binary files differdeleted file mode 100644 index c594a6c72b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll Binary files differdeleted file mode 100644 index 188e633a1e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Claims.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll Binary files differdeleted file mode 100644 index 8719bea9e8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Algorithms.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll Binary files differdeleted file mode 100644 index e4c80d9e58..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Cng.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll Binary files differdeleted file mode 100644 index 133607fbf8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Csp.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll Binary files differdeleted file mode 100644 index c371b0a013..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Encoding.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll Binary files differdeleted file mode 100644 index ea39cb4503..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.OpenSsl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll Binary files differdeleted file mode 100644 index 14810343d2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Pkcs.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll Binary files differdeleted file mode 100644 index f7430e7c88..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.Primitives.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll Binary files differdeleted file mode 100644 index d8f2f45896..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.ProtectedData.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll Binary files differdeleted file mode 100644 index f00ea45c9e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Cryptography.X509Certificates.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll Binary files differdeleted file mode 100644 index 76faf41ec1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Permissions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll Binary files differdeleted file mode 100644 index 4c9eda64c5..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.Windows.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll Binary files differdeleted file mode 100644 index b80a4e0bc1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.Principal.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll Binary files differdeleted file mode 100644 index 6c62cb0f30..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.SecureString.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll Binary files differdeleted file mode 100644 index e319e3a99d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Security.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll Binary files differdeleted file mode 100644 index 5fa4aac47b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceModel.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll Binary files differdeleted file mode 100644 index c828b717b6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.ServiceController.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll Binary files differdeleted file mode 100644 index 84be11d8b0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ServiceProcess.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll Binary files differdeleted file mode 100644 index 5b0542cb8c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.CodePages.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll Binary files differdeleted file mode 100644 index afc3b19c95..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll Binary files differdeleted file mode 100644 index ac42434a9d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encoding.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll Binary files differdeleted file mode 100644 index aad53f4dcc..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Encodings.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll Binary files differdeleted file mode 100644 index c22b7903c3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.Json.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll Binary files differdeleted file mode 100644 index 3a5177b21f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Text.RegularExpressions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll Binary files differdeleted file mode 100644 index 2af2a49085..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.AccessControl.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll Binary files differdeleted file mode 100644 index f418c7c39c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Channels.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll Binary files differdeleted file mode 100644 index bc633d8b61..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Overlapped.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll Binary files differdeleted file mode 100644 index 4ab535d807..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Dataflow.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll Binary files differdeleted file mode 100644 index edccd7b4c6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll Binary files differdeleted file mode 100644 index 2fc52b1435..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.Parallel.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll Binary files differdeleted file mode 100644 index db85d0db6c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Tasks.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll Binary files differdeleted file mode 100644 index 5ca0547f0b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Thread.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll Binary files differdeleted file mode 100644 index cc0411bfc5..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.ThreadPool.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll Binary files differdeleted file mode 100644 index 0c96d025c8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.Timer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll Binary files differdeleted file mode 100644 index 1f986d6702..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Threading.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll Binary files differdeleted file mode 100644 index 3bd7d5c70f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.Local.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll Binary files differdeleted file mode 100644 index 000907f86f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Transactions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll Binary files differdeleted file mode 100644 index a03155ae70..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.ValueTuple.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll Binary files differdeleted file mode 100644 index 8bf8fcffa9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.HttpUtility.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll Binary files differdeleted file mode 100644 index 4db8ed12e1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Web.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll Binary files differdeleted file mode 100644 index 3fb4939e5d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.Extensions.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll Binary files differdeleted file mode 100644 index 3274240073..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Windows.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll Binary files differdeleted file mode 100644 index 9f62112ac7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Linq.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll Binary files differdeleted file mode 100644 index c352db73cf..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.ReaderWriter.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll Binary files differdeleted file mode 100644 index 68ea686589..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.Serialization.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll Binary files differdeleted file mode 100644 index c5126dbda9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll Binary files differdeleted file mode 100644 index 7ee5f34160..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.XDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll Binary files differdeleted file mode 100644 index 3d0c2eaf6d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XPath.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll Binary files differdeleted file mode 100644 index bc32bf1188..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlDocument.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll Binary files differdeleted file mode 100644 index 23c635fed2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.XmlSerializer.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll Binary files differdeleted file mode 100644 index 25d986cbd7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.Xml.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.dll Binary files differdeleted file mode 100644 index 43b34dff30..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/System.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll Binary files differdeleted file mode 100644 index 7463cde762..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/WindowsBase.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll Binary files differdeleted file mode 100644 index d991b17783..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-console-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll Binary files differdeleted file mode 100644 index eb96025023..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-datetime-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll Binary files differdeleted file mode 100644 index 1f84ace65b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-debug-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll Binary files differdeleted file mode 100644 index 07b393ef37..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-errorhandling-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll Binary files differdeleted file mode 100644 index 2ad839ff47..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll Binary files differdeleted file mode 100644 index ca52643a0e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll Binary files differdeleted file mode 100644 index b9798e0e6f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-file-l2-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll Binary files differdeleted file mode 100644 index 1fabaeeeef..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-handle-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll Binary files differdeleted file mode 100644 index 0c78d9b653..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-heap-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll Binary files differdeleted file mode 100644 index f30ea8b3f6..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-interlocked-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll Binary files differdeleted file mode 100644 index 346770fce9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-libraryloader-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll Binary files differdeleted file mode 100644 index 1e5072f4cf..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-localization-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll Binary files differdeleted file mode 100644 index ca54325fc8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-memory-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll Binary files differdeleted file mode 100644 index 0338d5767a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-namedpipe-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll Binary files differdeleted file mode 100644 index da33c1a31b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processenvironment-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll Binary files differdeleted file mode 100644 index 0baacbbad2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll Binary files differdeleted file mode 100644 index cdd9a8874e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-processthreads-l1-1-1.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll Binary files differdeleted file mode 100644 index 5fcfd92c28..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-profile-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll Binary files differdeleted file mode 100644 index 2735c669d0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-rtlsupport-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll Binary files differdeleted file mode 100644 index 2ab518ad0b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-string-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll Binary files differdeleted file mode 100644 index 564478091f..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll Binary files differdeleted file mode 100644 index 0d22398be0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-synch-l1-2-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll Binary files differdeleted file mode 100644 index 2fcbd8717a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-sysinfo-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll Binary files differdeleted file mode 100644 index 37492726a4..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-timezone-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll Binary files differdeleted file mode 100644 index 536f9c973c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-core-util-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll Binary files differdeleted file mode 100644 index a5312bd063..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-conio-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll Binary files differdeleted file mode 100644 index d0e8a74fc3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-convert-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll Binary files differdeleted file mode 100644 index 33ab4235cd..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-environment-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll Binary files differdeleted file mode 100644 index 73c1bbd0c0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-filesystem-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll Binary files differdeleted file mode 100644 index b2491c5812..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-heap-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll Binary files differdeleted file mode 100644 index 5c6daf8bb8..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-locale-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll Binary files differdeleted file mode 100644 index 59f5938ec3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-math-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll Binary files differdeleted file mode 100644 index 08fde912dc..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-multibyte-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll Binary files differdeleted file mode 100644 index 5504b29bd1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-private-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll Binary files differdeleted file mode 100644 index 6db6d131f0..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-process-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll Binary files differdeleted file mode 100644 index 3ccdf40b65..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-runtime-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll Binary files differdeleted file mode 100644 index 50e08763aa..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-stdio-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll Binary files differdeleted file mode 100644 index 32a56dbb49..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-string-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll Binary files differdeleted file mode 100644 index f5c85a6c93..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-time-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll Binary files differdeleted file mode 100644 index 0dd8c7e943..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/api-ms-win-crt-utility-l1-1-0.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll Binary files differdeleted file mode 100644 index fbc38bfa6d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrcompression.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll Binary files differdeleted file mode 100644 index f734865e6d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clretwrc.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll Binary files differdeleted file mode 100644 index 811a2d2728..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/clrjit.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll Binary files differdeleted file mode 100644 index dd326bf609..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/coreclr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 3926b05c1d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index f6e93d5cd7..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/cs/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll Binary files differdeleted file mode 100644 index 0b3d9d18e3..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/dbgshim.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5fa5859991..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index cc47986b0a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/de/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index ed78e65bf1..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index e229570134..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/es/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 7ff1eb278b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 81080f9e2a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/fr/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll Binary files differdeleted file mode 100644 index 81c1fa314e..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostfxr.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll Binary files differdeleted file mode 100644 index 01e5263365..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/hostpolicy.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 4709ba2214..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index db624e3d86..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/it/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 15dfa07ca9..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index b44059b863..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ja/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5f41f9206b..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index cd1de70266..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ko/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll Binary files differdeleted file mode 100644 index e08a4c40bd..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_x86_x86_4.700.19.56402.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_x86_x86_4.700.19.56402.dll Binary files differdeleted file mode 100644 index e08a4c40bd..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordaccore_x86_x86_4.700.19.56402.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll Binary files differdeleted file mode 100644 index 5e602776b2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscordbi.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll Binary files differdeleted file mode 100644 index cc40cc53f4..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorlib.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll Binary files differdeleted file mode 100644 index 349b773859..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.debug.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll Binary files differdeleted file mode 100644 index a7ebcf9f6d..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mscorrc.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll Binary files differdeleted file mode 100644 index c613c56204..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/netstandard.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 4f469a20d4..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 155c7ff470..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pl/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 5cf722e8d2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index da26fd9a86..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pt-BR/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll Binary files differdeleted file mode 100644 index fdf3f61aba..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/pwrshplugin.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index de0d131b24..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 484ce0fd50..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ru/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index e8ab1c2da2..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 4a23afbede..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/tr/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll Binary files differdeleted file mode 100644 index a427515545..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/ucrtbase.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index ba89657418..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 0d8ef2e35c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hans/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differdeleted file mode 100644 index 0e903ec47c..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll Binary files differdeleted file mode 100644 index 3da4deb28a..0000000000 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/zh-Hant/Microsoft.CodeAnalysis.resources.dll +++ /dev/null diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/API-MS-Win-core-xstate-l2-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/API-MS-Win-core-xstate-l2-1-0.dll Binary files differnew file mode 100644 index 0000000000..7c9413ee34 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/API-MS-Win-core-xstate-l2-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll Binary files differnew file mode 100644 index 0000000000..09e0fa1333 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.PowerShell.Wrapper.Core.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll Binary files differnew file mode 100644 index 0000000000..6827b2a64c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb Binary files differnew file mode 100644 index 0000000000..2546223f9d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Core.pdb diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json new file mode 100644 index 0000000000..9d0500cd16 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Chef.Powershell.Wrapper.Core.runtimeconfig.json @@ -0,0 +1,9 @@ +{
+ "runtimeOptions": {
+ "tfm": "net5.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "5.0.0"
+ }
+ }
+}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll Binary files differnew file mode 100644 index 0000000000..333cb4dcd8 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Ijwhost.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll Binary files differnew file mode 100644 index 0000000000..2a70d37424 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Markdig.Signed.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll Binary files differnew file mode 100644 index 0000000000..f1d216624a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.ApplicationInsights.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll Binary files differnew file mode 100644 index 0000000000..a00c560168 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CSharp.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll Binary files differnew file mode 100644 index 0000000000..8b6f598975 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll Binary files differnew file mode 100644 index 0000000000..bfdf0b004b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.CodeAnalysis.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.DiaSymReader.Native.x86.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.DiaSymReader.Native.x86.dll Binary files differindex 5ebef7fe29..5ebef7fe29 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.DiaSymReader.Native.x86.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.DiaSymReader.Native.x86.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.Unmanaged.dll Binary files differindex 434e1f4130..434e1f4130 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.Unmanaged.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.Unmanaged.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.dll Binary files differindex e1819d5fe4..e1819d5fe4 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.Native.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.Native.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.dll Binary files differindex 13d9f3b430..13d9f3b430 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Microsoft.Management.Infrastructure.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Management.Infrastructure.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json new file mode 100644 index 0000000000..08ea0aaff0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.NETCore.App.deps.json @@ -0,0 +1,2579 @@ +{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0/win10-x86",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {},
+ ".NETCoreApp,Version=v5.0/win10-x86": {
+ "Chef.Powershell.Core/1.0.0": {
+ "dependencies": {
+ "Microsoft.PowerShell.Commands.Diagnostics": "7.1.0",
+ "Microsoft.PowerShell.Commands.Management": "7.1.0",
+ "Microsoft.PowerShell.Commands.Utility": "7.1.0",
+ "Microsoft.PowerShell.ConsoleHost": "7.1.0",
+ "Microsoft.WSMan.Management": "7.1.0",
+ "Microsoft.WSMan.Runtime": "7.1.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Management.Automation": "7.1.0",
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "5.0.0"
+ },
+ "runtime": {
+ "Chef.Powershell.Core.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/5.0.0": {
+ "runtime": {
+ "Microsoft.CSharp.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.VisualBasic.Core.dll": {
+ "assemblyVersion": "10.0.6.0",
+ "fileVersion": "11.0.20.51904"
+ },
+ "Microsoft.VisualBasic.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.Win32.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.AppContext.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Buffers.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Concurrent.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Immutable.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.NonGeneric.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.Specialized.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Collections.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.DataAnnotations.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.EventBasedAsync.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.TypeConverter.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ComponentModel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Configuration.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Console.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.Common.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.DataSetExtensions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Data.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Contracts.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.FileVersionInfo.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Process.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.StackTrace.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.TextWriterTraceListener.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Tools.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.TraceSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Diagnostics.Tracing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Drawing.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Drawing.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Formats.Asn1.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.Calendars.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Globalization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.Brotli.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.FileSystem.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.ZipFile.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Compression.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.DriveInfo.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.Watcher.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.FileSystem.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.IsolatedStorage.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.MemoryMappedFiles.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Pipes.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.Pipes.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.UnmanagedMemoryStream.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.IO.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Expressions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Parallel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.Queryable.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Linq.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Memory.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Http.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Http.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.HttpListener.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Mail.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.NameResolution.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.NetworkInformation.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Ping.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Requests.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Security.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.ServicePoint.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.Sockets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebClient.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebHeaderCollection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebProxy.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebSockets.Client.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.WebSockets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Net.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Numerics.Vectors.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Numerics.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ObjectModel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.DataContractSerialization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Uri.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Xml.Linq.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.Xml.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.DispatchProxy.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Emit.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Metadata.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Reflection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.Reader.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Resources.Writer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.CompilerServices.VisualC.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Handles.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Intrinsics.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Loader.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Numerics.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Formatters.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.Xml.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Runtime.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Claims.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Algorithms.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Csp.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Encoding.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.OpenSsl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Cryptography.X509Certificates.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.Principal.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.SecureString.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Security.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ServiceModel.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ServiceProcess.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encoding.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Text.RegularExpressions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Channels.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Overlapped.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Dataflow.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.Parallel.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Thread.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.ThreadPool.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.Timer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Threading.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Transactions.Local.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Transactions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.ValueTuple.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Web.HttpUtility.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Windows.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.Linq.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.ReaderWriter.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XPath.XDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XPath.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XmlDocument.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.XmlSerializer.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Xml.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "WindowsBase.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscorlib.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "netstandard.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "5.0.20.51904"
+ },
+ "System.Private.CoreLib.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ },
+ "native": {
+ "API-MS-Win-core-xstate-l2-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "Microsoft.DiaSymReader.Native.x86.dll": {
+ "fileVersion": "14.12.25830.2"
+ },
+ "api-ms-win-core-console-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-console-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-datetime-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-debug-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-errorhandling-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-file-l2-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-handle-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-heap-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-interlocked-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-libraryloader-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-localization-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-memory-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-namedpipe-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processenvironment-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processthreads-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-processthreads-l1-1-1.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-profile-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-rtlsupport-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-string-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-synch-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-synch-l1-2-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-sysinfo-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-timezone-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-core-util-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-conio-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-convert-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-environment-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-filesystem-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-heap-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-locale-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-math-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-multibyte-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-private-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-process-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-runtime-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-stdio-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-string-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-time-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "api-ms-win-crt-utility-l1-1-0.dll": {
+ "fileVersion": "10.0.19041.1"
+ },
+ "clrcompression.dll": {
+ "fileVersion": "42.42.42.42424"
+ },
+ "clretwrc.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "clrjit.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "coreclr.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "createdump.exe": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "dbgshim.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "hostfxr.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "hostpolicy.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordaccore.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordaccore_x86_x86_5.0.20.51904.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscordbi.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "mscorrc.dll": {
+ "fileVersion": "5.0.20.51904"
+ },
+ "ucrtbase.dll": {
+ "fileVersion": "10.0.19041.1"
+ }
+ }
+ },
+ "Markdig.Signed/0.21.1": {
+ "runtime": {
+ "lib/netcoreapp3.1/Markdig.Signed.dll": {
+ "assemblyVersion": "0.21.1.0",
+ "fileVersion": "0.21.1.0"
+ }
+ }
+ },
+ "Microsoft.ApplicationInsights/2.15.0": {
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "4.6.0",
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
+ "assemblyVersion": "2.15.0.44797",
+ "fileVersion": "2.15.0.44797"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
+ "Microsoft.CodeAnalysis.Common/3.7.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Memory": "4.5.4",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.3"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "3.7.0.0",
+ "fileVersion": "3.700.20.37502"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/3.7.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "3.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "3.7.0.0",
+ "fileVersion": "3.700.20.37502"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CSharp/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.CSharp.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "Microsoft.Management.Infrastructure/2.0.0": {
+ "dependencies": {
+ "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
+ "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
+ }
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {},
+ "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
+ "runtime": {
+ "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.18362.1"
+ }
+ },
+ "native": {
+ "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x86/native/mi.dll": {
+ "fileVersion": "10.0.18362.1"
+ },
+ "runtimes/win10-x86/native/miutils.dll": {
+ "fileVersion": "10.0.18362.1"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.PowerShell.Commands.Diagnostics/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management/7.1.0": {
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "7.1.0",
+ "System.ServiceProcess.ServiceController": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility/7.1.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "3.7.0",
+ "Microsoft.PowerShell.MarkdownRender": "7.1.0",
+ "NJsonSchema": "10.2.2",
+ "System.Drawing.Common": "5.0.0",
+ "System.Management.Automation": "7.1.0",
+ "System.Threading.AccessControl": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.ConsoleHost/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender/7.1.0": {
+ "dependencies": {
+ "Markdig.Signed": "0.21.1",
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Native/7.1.0": {
+ "native": {
+ "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x86/native/pwrshplugin.dll": {
+ "fileVersion": "10.0.10011.16384"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Security/7.1.0": {
+ "dependencies": {
+ "System.Management.Automation": "7.1.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Security.AccessControl": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Win32.SystemEvents/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.WSMan.Management/7.1.0": {
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "7.1.0",
+ "System.Management.Automation": "7.1.0",
+ "System.ServiceProcess.ServiceController": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Microsoft.WSMan.Runtime/7.1.0": {
+ "runtime": {
+ "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "Namotion.Reflection/1.0.14": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Namotion.Reflection.dll": {
+ "assemblyVersion": "1.0.14.0",
+ "fileVersion": "1.0.14.0"
+ }
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "NJsonSchema/10.2.2": {
+ "dependencies": {
+ "Namotion.Reflection": "1.0.14",
+ "Newtonsoft.Json": "12.0.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/NJsonSchema.dll": {
+ "assemblyVersion": "10.2.2.0",
+ "fileVersion": "10.2.2.0"
+ }
+ }
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Globalization.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.5/System.IO.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Extensions.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Primitives.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Handles.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.6/System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Text.Encoding.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Tasks.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win.System.Diagnostics.Debug/4.3.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win.System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.CodeDom/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Configuration.ConfigurationManager/5.0.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "5.0.0",
+ "System.Security.Permissions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "4.700.19.46214"
+ }
+ }
+ },
+ "System.Diagnostics.EventLog/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.DirectoryServices/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Permissions": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Drawing.Common/5.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Dynamic.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Formats.Asn1.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Management/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.Win32.Registry": "5.0.0",
+ "System.CodeDom": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Management.Automation/7.1.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.15.0",
+ "Microsoft.Management.Infrastructure": "2.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.0",
+ "Microsoft.PowerShell.Native": "7.1.0",
+ "Microsoft.Win32.Registry.AccessControl": "5.0.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Configuration.ConfigurationManager": "5.0.0",
+ "System.DirectoryServices": "5.0.0",
+ "System.IO.FileSystem.AccessControl": "5.0.0",
+ "System.Management": "5.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Cryptography.Pkcs": "5.0.0",
+ "System.Security.Permissions": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/net5.0/System.Management.Automation.dll": {
+ "assemblyVersion": "7.1.0.0",
+ "fileVersion": "7.1.0.0"
+ }
+ }
+ },
+ "System.Memory/4.5.4": {},
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {
+ "assemblyVersion": "1.4.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.win.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "5.0.0",
+ "System.Security.Cryptography.Cng": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/5.0.0": {
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Permissions/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Windows.Extensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.ServiceProcess.ServiceController/5.0.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.AccessControl/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.3": {},
+ "System.Windows.Extensions/5.0.0": {
+ "dependencies": {
+ "System.Drawing.Common": "5.0.0"
+ },
+ "runtime": {
+ "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Chef.Powershell.Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/5.0.0": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Markdig.Signed/0.21.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lg0FPQdKUXai4/XZpQGlQ/HldpHsGnsU6Jd+udJgHj/R7i3ngM2TtR+SZqdHRtgItIHe3dFh2DS/M5qXGSPRiQ==",
+ "path": "markdig.signed/0.21.1",
+ "hashPath": "markdig.signed.0.21.1.nupkg.sha512"
+ },
+ "Microsoft.ApplicationInsights/2.15.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==",
+ "path": "microsoft.applicationinsights/2.15.0",
+ "hashPath": "microsoft.applicationinsights.2.15.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
+ "path": "microsoft.codeanalysis.analyzers/3.0.0",
+ "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/3.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SFEdnbw8204hTlde3JePYSIpNX58h/MMXa7LctUsUDigWMR8Ar9gE8LnsLqAIFM0O33JEuQbJ0G4Sat+cPGldw==",
+ "path": "microsoft.codeanalysis.common/3.7.0",
+ "hashPath": "microsoft.codeanalysis.common.3.7.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/3.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sKi5PIVy9nVDerkbplY6OQhJBNzEO4XJsMGrnmb6KFEa6K1ulGCHIv6NtDjdUQ/dGrouU3OExc3yzww0COD76w==",
+ "path": "microsoft.codeanalysis.csharp/3.7.0",
+ "hashPath": "microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512"
+ },
+ "Microsoft.CSharp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
+ "path": "microsoft.csharp/4.3.0",
+ "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
+ "path": "microsoft.management.infrastructure/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
+ "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
+ "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
+ "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Hipqx38QOv1xWXbV4yGWHOmFIV8zp0O15z2H+Vx0Z0cOnzu4eb+MUblb4Dc1FA3S7ZE56qplC3XBK3hs0EsvYA==",
+ "path": "microsoft.powershell.commands.diagnostics/7.1.0",
+ "hashPath": "microsoft.powershell.commands.diagnostics.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Management/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3S5CU0Zq8ecdywaI3NoKyzjyaLaS7OKAi6z2AfiyKDG5IZfoLTBgIzNQElNFag8UALTNRlKGD8cumVtM3myAQA==",
+ "path": "microsoft.powershell.commands.management/7.1.0",
+ "hashPath": "microsoft.powershell.commands.management.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Utility/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6BXJ7NRCs8xCHqspv1VoijXKLfLrM6O8rJwyTk0mPc5BZvpC2NSQq1NAJHAlk60ENFTu0vtxK2IzWkbFvJ/BUQ==",
+ "path": "microsoft.powershell.commands.utility/7.1.0",
+ "hashPath": "microsoft.powershell.commands.utility.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.ConsoleHost/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vfs4i5cViK5YsiIveuFv7OTrN2m5vPfOXj3XBkrQHtlMb2u0mkIsqVMTDHRMAyopcpp0ZJ1H+4ZsZ9z1bcpagQ==",
+ "path": "microsoft.powershell.consolehost/7.1.0",
+ "hashPath": "microsoft.powershell.consolehost.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TCTaoyysnTHUErm0w8W50CVB5Mzwj1PQyb740K1DLvbw8Ba607Q1HCSzBHClEDlG+Cphuv9ie2pbvEWcUKslVg==",
+ "path": "microsoft.powershell.coreclr.eventing/7.1.0",
+ "hashPath": "microsoft.powershell.coreclr.eventing.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.MarkdownRender/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FD8ARPyKg22yRhU3gUk6NKZtmtSk5uekqufjJCiTu8A5lvWF9A0mCr/OUYE7+HQLnJoBu8BR19vwnED0Jpd1WQ==",
+ "path": "microsoft.powershell.markdownrender/7.1.0",
+ "hashPath": "microsoft.powershell.markdownrender.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Native/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==",
+ "path": "microsoft.powershell.native/7.1.0",
+ "hashPath": "microsoft.powershell.native.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Security/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4ab6z1Vlu25c33jc0gG0Val6YpSgyOyxNsNOENcBGue9TDJQ+d6ppw1IKcCILefpVAo/UWiE4xrWxO04KUc3g==",
+ "path": "microsoft.powershell.security/7.1.0",
+ "hashPath": "microsoft.powershell.security.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==",
+ "path": "microsoft.win32.registry.accesscontrol/5.0.0",
+ "hashPath": "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.SystemEvents/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
+ "path": "microsoft.win32.systemevents/5.0.0",
+ "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Management/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-noQxoEaJW5W4vbRfwIB1l+ecERA+K4ZygZBv1YNu0IwdDos0mIiPY+YpFKz2uHyeNSk1Z3j1fsXV0b/r+eRT1Q==",
+ "path": "microsoft.wsman.management/7.1.0",
+ "hashPath": "microsoft.wsman.management.7.1.0.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Runtime/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DVtFU3QQ12w5ej86Gw/vNtJjCXPd7r9fLJs9tzYqptEO6WtJX+vH65qPacP0DN/LEuc+93+iRVfNjjf/EMuNBQ==",
+ "path": "microsoft.wsman.runtime/7.1.0",
+ "hashPath": "microsoft.wsman.runtime.7.1.0.nupkg.sha512"
+ },
+ "Namotion.Reflection/1.0.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wuJGiFvGfehH2w7jAhMbCJt0/rvUuHyqSZn0sMhNTviDfBZRyX8LFlR/ndQcofkGWulPDfH5nKYTeGXE8xBHPA==",
+ "path": "namotion.reflection/1.0.14",
+ "hashPath": "namotion.reflection.1.0.14.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "NJsonSchema/10.2.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s6oNUrjw5Ix5WVkYdU0vgyzoutZdi7p+uQqTGYa3QbLtjDYrkD4ahfGnfyCpHNoJUXun9pHKGy6AD0LJNcSgjQ==",
+ "path": "njsonschema/10.2.2",
+ "hashPath": "njsonschema.10.2.2.nupkg.sha512"
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "path": "runtime.any.system.collections/4.3.0",
+ "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
+ "path": "runtime.any.system.globalization/4.3.0",
+ "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
+ "path": "runtime.any.system.io/4.3.0",
+ "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
+ "path": "runtime.any.system.reflection/4.3.0",
+ "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
+ "path": "runtime.any.system.reflection.extensions/4.3.0",
+ "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
+ "path": "runtime.any.system.reflection.primitives/4.3.0",
+ "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
+ "path": "runtime.any.system.resources.resourcemanager/4.3.0",
+ "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "path": "runtime.any.system.runtime/4.3.0",
+ "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
+ "path": "runtime.any.system.runtime.handles/4.3.0",
+ "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
+ "path": "runtime.any.system.runtime.interopservices/4.3.0",
+ "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
+ "path": "runtime.any.system.text.encoding/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
+ "path": "runtime.any.system.threading.tasks/4.3.0",
+ "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "runtime.win.System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
+ "path": "runtime.win.system.diagnostics.debug/4.3.0",
+ "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "runtime.win.System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
+ "path": "runtime.win.system.runtime.extensions/4.3.0",
+ "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
+ "path": "runtime.win7.system.private.uri/4.3.0",
+ "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.CodeDom/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==",
+ "path": "system.codedom/5.0.0",
+ "hashPath": "system.codedom.5.0.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
+ "path": "system.collections.immutable/1.5.0",
+ "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
+ "path": "system.configuration.configurationmanager/5.0.0",
+ "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "path": "system.diagnostics.diagnosticsource/4.6.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
+ "path": "system.diagnostics.eventlog/5.0.0",
+ "hashPath": "system.diagnostics.eventlog.5.0.0.nupkg.sha512"
+ },
+ "System.DirectoryServices/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==",
+ "path": "system.directoryservices/5.0.0",
+ "hashPath": "system.directoryservices.5.0.0.nupkg.sha512"
+ },
+ "System.Drawing.Common/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
+ "path": "system.drawing.common/5.0.0",
+ "hashPath": "system.drawing.common.5.0.0.nupkg.sha512"
+ },
+ "System.Dynamic.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "path": "system.dynamic.runtime/4.3.0",
+ "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Formats.Asn1/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
+ "path": "system.formats.asn1/5.0.0",
+ "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
+ "path": "system.io.filesystem.accesscontrol/5.0.0",
+ "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Management/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==",
+ "path": "system.management/5.0.0",
+ "hashPath": "system.management.5.0.0.nupkg.sha512"
+ },
+ "System.Management.Automation/7.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WjmMs8kNETGWUmbE2A87cTcAGRz0WJ24TOZm5xkhop/93fIINK8TEcghEr2I0mSgXb7t0pWkPdKdEA5vizFQPA==",
+ "path": "system.management.automation/7.1.0",
+ "hashPath": "system.management.automation.7.1.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "path": "system.memory/4.5.4",
+ "hashPath": "system.memory.4.5.4.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "path": "system.private.uri/4.3.0",
+ "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
+ "path": "system.security.cryptography.cng/5.0.0",
+ "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Pkcs/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
+ "path": "system.security.cryptography.pkcs/5.0.0",
+ "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
+ "path": "system.security.cryptography.protecteddata/5.0.0",
+ "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
+ "path": "system.security.permissions/5.0.0",
+ "hashPath": "system.security.permissions.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.ServiceProcess.ServiceController/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==",
+ "path": "system.serviceprocess.servicecontroller/5.0.0",
+ "hashPath": "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WJ9w9m4iHJVq0VoH7hZvYAccbRq95itYRhAAXd6M4kVCzLmT6NqTwmSXKwp3oQilWHhYTXgqaIXxBfg8YaqtmA==",
+ "path": "system.threading.accesscontrol/5.0.0",
+ "hashPath": "system.threading.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
+ "path": "system.threading.tasks.extensions/4.5.3",
+ "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
+ },
+ "System.Windows.Extensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
+ "path": "system.windows.extensions/5.0.0",
+ "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512"
+ }
+ },
+ "runtimes": {
+ "win10-x86": [
+ "win10",
+ "win81-x86",
+ "win81",
+ "win8-x86",
+ "win8",
+ "win7-x86",
+ "win7",
+ "win-x86",
+ "win",
+ "any",
+ "base"
+ ],
+ "win10-x86-aot": [
+ "win10-aot",
+ "win10-x86",
+ "win10",
+ "win81-x86-aot",
+ "win81-aot",
+ "win81-x86",
+ "win81",
+ "win8-x86-aot",
+ "win8-aot",
+ "win8-x86",
+ "win8",
+ "win7-x86-aot",
+ "win7-aot",
+ "win7-x86",
+ "win7",
+ "win-x86-aot",
+ "win-aot",
+ "win-x86",
+ "win",
+ "aot",
+ "any",
+ "base"
+ ]
+ }
+}
\ No newline at end of file diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll Binary files differnew file mode 100644 index 0000000000..9ada03f00f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Diagnostics.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll Binary files differnew file mode 100644 index 0000000000..7d8d5afcd3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Management.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll Binary files differnew file mode 100644 index 0000000000..b63f889771 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Commands.Utility.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll Binary files differnew file mode 100644 index 0000000000..96fa29deea --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.ConsoleHost.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll Binary files differnew file mode 100644 index 0000000000..1dc32290ac --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.CoreCLR.Eventing.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll Binary files differnew file mode 100644 index 0000000000..6af4347c1d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.MarkdownRender.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll Binary files differnew file mode 100644 index 0000000000..fd06cf702f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.PowerShell.Security.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll Binary files differnew file mode 100644 index 0000000000..ef7985f068 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.Core.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll Binary files differnew file mode 100644 index 0000000000..f4169868c0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.VisualBasic.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll Binary files differnew file mode 100644 index 0000000000..d33a2ffd25 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Management.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll Binary files differnew file mode 100644 index 0000000000..5644be0dfd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.WSMan.Runtime.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll Binary files differnew file mode 100644 index 0000000000..8b3954033a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..934802f5c2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.AccessControl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll Binary files differnew file mode 100644 index 0000000000..4dbe1ef978 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.Registry.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll Binary files differnew file mode 100644 index 0000000000..b5aa0c4cd3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Microsoft.Win32.SystemEvents.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll Binary files differnew file mode 100644 index 0000000000..36ecf91055 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/NJsonSchema.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll Binary files differnew file mode 100644 index 0000000000..8cbfb13909 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Namotion.Reflection.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Newtonsoft.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Newtonsoft.Json.dll Binary files differindex b501fb6a29..b501fb6a29 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/Newtonsoft.Json.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/Newtonsoft.Json.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll Binary files differnew file mode 100644 index 0000000000..f592b9a511 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/PowerShell.Core.Instrumentation.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll Binary files differnew file mode 100644 index 0000000000..b1a20b58c8 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.AppContext.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll Binary files differnew file mode 100644 index 0000000000..b881d20368 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Buffers.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll Binary files differnew file mode 100644 index 0000000000..873495d3bd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.CodeDom.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll Binary files differnew file mode 100644 index 0000000000..a56d0897b4 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Concurrent.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll Binary files differnew file mode 100644 index 0000000000..9a6816af59 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Immutable.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll Binary files differnew file mode 100644 index 0000000000..371f7e96cb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.NonGeneric.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll Binary files differnew file mode 100644 index 0000000000..4007eecec0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.Specialized.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll Binary files differnew file mode 100644 index 0000000000..1d38f28b98 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Collections.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll Binary files differnew file mode 100644 index 0000000000..9371560992 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Annotations.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll Binary files differnew file mode 100644 index 0000000000..848ff822f6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.DataAnnotations.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll Binary files differnew file mode 100644 index 0000000000..beb02a9fb6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.EventBasedAsync.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll Binary files differnew file mode 100644 index 0000000000..25950c2e76 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll Binary files differnew file mode 100644 index 0000000000..3f7c1962f9 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.TypeConverter.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll Binary files differnew file mode 100644 index 0000000000..bcfd36f18e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ComponentModel.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll Binary files differnew file mode 100644 index 0000000000..1644e5d6d6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.ConfigurationManager.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll Binary files differnew file mode 100644 index 0000000000..336518895c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Configuration.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll Binary files differnew file mode 100644 index 0000000000..caf6502e59 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Console.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll Binary files differnew file mode 100644 index 0000000000..733ec59349 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Core.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll Binary files differnew file mode 100644 index 0000000000..37a2d2cb3b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.Common.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll Binary files differnew file mode 100644 index 0000000000..c1e4676375 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.DataSetExtensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll Binary files differnew file mode 100644 index 0000000000..96d612a6e5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Data.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll Binary files differnew file mode 100644 index 0000000000..aee8520460 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Contracts.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll Binary files differnew file mode 100644 index 0000000000..b682fa66e0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Debug.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll Binary files differnew file mode 100644 index 0000000000..cef5d89e43 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.DiagnosticSource.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll Binary files differnew file mode 100644 index 0000000000..bb76446a5e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.EventLog.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll Binary files differnew file mode 100644 index 0000000000..466d54c708 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.FileVersionInfo.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll Binary files differnew file mode 100644 index 0000000000..3eff2da950 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Process.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll Binary files differnew file mode 100644 index 0000000000..533ccde2bd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.StackTrace.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll Binary files differnew file mode 100644 index 0000000000..b991388669 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TextWriterTraceListener.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll Binary files differnew file mode 100644 index 0000000000..437a872743 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tools.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll Binary files differnew file mode 100644 index 0000000000..3edfc46ee2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.TraceSource.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll Binary files differnew file mode 100644 index 0000000000..05ec366f23 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Diagnostics.Tracing.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll Binary files differnew file mode 100644 index 0000000000..e43577d592 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.DirectoryServices.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll Binary files differnew file mode 100644 index 0000000000..87fe0ae8bb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Common.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll Binary files differnew file mode 100644 index 0000000000..536cff8bc8 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll Binary files differnew file mode 100644 index 0000000000..80ff7228c1 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Drawing.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll Binary files differnew file mode 100644 index 0000000000..a99a2e9644 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Dynamic.Runtime.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll Binary files differnew file mode 100644 index 0000000000..f194c14ec7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Formats.Asn1.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll Binary files differnew file mode 100644 index 0000000000..06078378ef --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Calendars.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll Binary files differnew file mode 100644 index 0000000000..bdd86cbb93 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll Binary files differnew file mode 100644 index 0000000000..fb7a3d39c4 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Globalization.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll Binary files differnew file mode 100644 index 0000000000..1993116705 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.Brotli.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll Binary files differnew file mode 100644 index 0000000000..f5531bb397 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.FileSystem.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll Binary files differnew file mode 100644 index 0000000000..bec719f635 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.ZipFile.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll Binary files differnew file mode 100644 index 0000000000..f71aef8973 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Compression.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..23f159eebb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.AccessControl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll Binary files differnew file mode 100644 index 0000000000..7d29ca9574 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.DriveInfo.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll Binary files differnew file mode 100644 index 0000000000..bc8964043d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll Binary files differnew file mode 100644 index 0000000000..17b00763f1 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.Watcher.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll Binary files differnew file mode 100644 index 0000000000..5f8557523f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.FileSystem.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll Binary files differnew file mode 100644 index 0000000000..78cbb117ec --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.IsolatedStorage.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll Binary files differnew file mode 100644 index 0000000000..ca78c89331 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.MemoryMappedFiles.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..927ee75b92 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.AccessControl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll Binary files differnew file mode 100644 index 0000000000..eb52591f57 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.Pipes.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll Binary files differnew file mode 100644 index 0000000000..a5dfd8faa7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.UnmanagedMemoryStream.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll Binary files differnew file mode 100644 index 0000000000..5299140cee --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.IO.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll Binary files differnew file mode 100644 index 0000000000..0a04617ef0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Expressions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll Binary files differnew file mode 100644 index 0000000000..0226ed41fb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Parallel.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll Binary files differnew file mode 100644 index 0000000000..1693c4fca5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.Queryable.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll Binary files differnew file mode 100644 index 0000000000..5d0beaec5b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Linq.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll Binary files differnew file mode 100644 index 0000000000..aa3f0fccb5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.Automation.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll Binary files differnew file mode 100644 index 0000000000..a3a1f45197 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Management.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll Binary files differnew file mode 100644 index 0000000000..47ed8149bc --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Memory.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll Binary files differnew file mode 100644 index 0000000000..1f979b0376 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.Json.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll Binary files differnew file mode 100644 index 0000000000..2f028f3609 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Http.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll Binary files differnew file mode 100644 index 0000000000..c754ea8d90 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.HttpListener.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll Binary files differnew file mode 100644 index 0000000000..6d0c9971b4 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Mail.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll Binary files differnew file mode 100644 index 0000000000..43c577bbed --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NameResolution.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll Binary files differnew file mode 100644 index 0000000000..7838d83930 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.NetworkInformation.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll Binary files differnew file mode 100644 index 0000000000..f1ec22bbcd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Ping.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll Binary files differnew file mode 100644 index 0000000000..be0bcda333 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll Binary files differnew file mode 100644 index 0000000000..03f5ad8e42 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Requests.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll Binary files differnew file mode 100644 index 0000000000..24aabd0bc7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Security.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll Binary files differnew file mode 100644 index 0000000000..b34797f854 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.ServicePoint.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll Binary files differnew file mode 100644 index 0000000000..ac67d5483f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.Sockets.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll Binary files differnew file mode 100644 index 0000000000..0754ba93e2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebClient.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll Binary files differnew file mode 100644 index 0000000000..05473da99f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebHeaderCollection.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll Binary files differnew file mode 100644 index 0000000000..31d311d8e0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebProxy.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll Binary files differnew file mode 100644 index 0000000000..dba7236e6b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.Client.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll Binary files differnew file mode 100644 index 0000000000..b3745f3113 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.WebSockets.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll Binary files differnew file mode 100644 index 0000000000..425660b794 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Net.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll Binary files differnew file mode 100644 index 0000000000..22dcbb47fd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.Vectors.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll Binary files differnew file mode 100644 index 0000000000..52e5f9ec9c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Numerics.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll Binary files differnew file mode 100644 index 0000000000..89643fc28c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ObjectModel.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll Binary files differnew file mode 100644 index 0000000000..9bdc5cdbe6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.CoreLib.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll Binary files differnew file mode 100644 index 0000000000..30a3cbb29a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.DataContractSerialization.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll Binary files differnew file mode 100644 index 0000000000..9c008e9963 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Uri.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll Binary files differnew file mode 100644 index 0000000000..b560c635d2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.Linq.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll Binary files differnew file mode 100644 index 0000000000..2a1dd23e85 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Private.Xml.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll Binary files differnew file mode 100644 index 0000000000..8ae5a39086 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.DispatchProxy.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll Binary files differnew file mode 100644 index 0000000000..6f2e202809 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.ILGeneration.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll Binary files differnew file mode 100644 index 0000000000..a974e21555 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.Lightweight.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll Binary files differnew file mode 100644 index 0000000000..b06bfefa06 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Emit.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll Binary files differnew file mode 100644 index 0000000000..c8c12d3437 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll Binary files differnew file mode 100644 index 0000000000..cc1425439f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Metadata.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll Binary files differnew file mode 100644 index 0000000000..1eb8399956 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll Binary files differnew file mode 100644 index 0000000000..7b192b6be0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.TypeExtensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll Binary files differnew file mode 100644 index 0000000000..4724275c88 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Reflection.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll Binary files differnew file mode 100644 index 0000000000..9a9a3701bf --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Reader.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll Binary files differnew file mode 100644 index 0000000000..18a0279be7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.ResourceManager.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll Binary files differnew file mode 100644 index 0000000000..7312dfe471 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Resources.Writer.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll Binary files differnew file mode 100644 index 0000000000..91ce3a40f2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.Unsafe.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll Binary files differnew file mode 100644 index 0000000000..bab432741f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.CompilerServices.VisualC.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll Binary files differnew file mode 100644 index 0000000000..252595deb0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll Binary files differnew file mode 100644 index 0000000000..af7abdd805 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Handles.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll Binary files differnew file mode 100644 index 0000000000..55522e818e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.RuntimeInformation.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll Binary files differnew file mode 100644 index 0000000000..2026dfa90e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.InteropServices.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll Binary files differnew file mode 100644 index 0000000000..d352c5f6d3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Intrinsics.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll Binary files differnew file mode 100644 index 0000000000..cd16e3f1bc --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Loader.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll Binary files differnew file mode 100644 index 0000000000..8a88bc72ae --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Numerics.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll Binary files differnew file mode 100644 index 0000000000..c7913c1c97 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Formatters.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll Binary files differnew file mode 100644 index 0000000000..57d39b6f8c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Json.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll Binary files differnew file mode 100644 index 0000000000..2840880115 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll Binary files differnew file mode 100644 index 0000000000..39d120a5fb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.Xml.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll Binary files differnew file mode 100644 index 0000000000..85be088af7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.Serialization.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll Binary files differnew file mode 100644 index 0000000000..96d92a7e51 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Runtime.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..5a58cc15ab --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.AccessControl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll Binary files differnew file mode 100644 index 0000000000..3c913a3694 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Claims.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll Binary files differnew file mode 100644 index 0000000000..da6d3e1ada --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Algorithms.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll Binary files differnew file mode 100644 index 0000000000..7f53360c71 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Cng.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll Binary files differnew file mode 100644 index 0000000000..7f2c2e1f04 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Csp.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll Binary files differnew file mode 100644 index 0000000000..473e5c5d32 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Encoding.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll Binary files differnew file mode 100644 index 0000000000..097e377e33 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.OpenSsl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll Binary files differnew file mode 100644 index 0000000000..252b80c246 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Pkcs.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll Binary files differnew file mode 100644 index 0000000000..3c7a2e881a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.Primitives.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll Binary files differnew file mode 100644 index 0000000000..99215bb1df --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.ProtectedData.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll Binary files differnew file mode 100644 index 0000000000..9c73368356 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Cryptography.X509Certificates.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll Binary files differnew file mode 100644 index 0000000000..b380d0856e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Permissions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll Binary files differnew file mode 100644 index 0000000000..6333081398 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.Windows.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll Binary files differnew file mode 100644 index 0000000000..5696a1fa42 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.Principal.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll Binary files differnew file mode 100644 index 0000000000..5a41c8dcd4 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.SecureString.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll Binary files differnew file mode 100644 index 0000000000..87fbd3dced --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Security.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll Binary files differnew file mode 100644 index 0000000000..f903215cb9 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceModel.Web.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll Binary files differnew file mode 100644 index 0000000000..9074d56d58 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.ServiceController.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll Binary files differnew file mode 100644 index 0000000000..3812b90902 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ServiceProcess.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll Binary files differnew file mode 100644 index 0000000000..f05265e306 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.CodePages.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll Binary files differnew file mode 100644 index 0000000000..76abcaa617 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll Binary files differnew file mode 100644 index 0000000000..86835aaaa8 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encoding.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll Binary files differnew file mode 100644 index 0000000000..efaa0493ba --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Encodings.Web.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll Binary files differnew file mode 100644 index 0000000000..a24fa22007 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.Json.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll Binary files differnew file mode 100644 index 0000000000..92f48821d3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Text.RegularExpressions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll Binary files differnew file mode 100644 index 0000000000..49d43249f0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.AccessControl.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll Binary files differnew file mode 100644 index 0000000000..a6654dccee --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Channels.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll Binary files differnew file mode 100644 index 0000000000..c7d1fcabee --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Overlapped.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll Binary files differnew file mode 100644 index 0000000000..717e007115 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Dataflow.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll Binary files differnew file mode 100644 index 0000000000..cb1414526e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll Binary files differnew file mode 100644 index 0000000000..377d88013a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.Parallel.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll Binary files differnew file mode 100644 index 0000000000..d7c4a35567 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Tasks.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll Binary files differnew file mode 100644 index 0000000000..318d2ab8fb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Thread.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll Binary files differnew file mode 100644 index 0000000000..da11a9984e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.ThreadPool.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll Binary files differnew file mode 100644 index 0000000000..e67577e288 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.Timer.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll Binary files differnew file mode 100644 index 0000000000..cdf5081b53 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Threading.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll Binary files differnew file mode 100644 index 0000000000..baea5d453b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.Local.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll Binary files differnew file mode 100644 index 0000000000..701406c8d7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Transactions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll Binary files differnew file mode 100644 index 0000000000..28240172ac --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.ValueTuple.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll Binary files differnew file mode 100644 index 0000000000..cc2f0e1f7a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.HttpUtility.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll Binary files differnew file mode 100644 index 0000000000..681076e2ed --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Web.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll Binary files differnew file mode 100644 index 0000000000..ab82e8395a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.Extensions.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll Binary files differnew file mode 100644 index 0000000000..0d75104c0f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Windows.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll Binary files differnew file mode 100644 index 0000000000..57b6ed9cfb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Linq.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll Binary files differnew file mode 100644 index 0000000000..2d6130a1f4 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.ReaderWriter.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll Binary files differnew file mode 100644 index 0000000000..13c8818672 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.Serialization.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll Binary files differnew file mode 100644 index 0000000000..55b27bb917 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XDocument.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll Binary files differnew file mode 100644 index 0000000000..5e148afeaf --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.XDocument.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll Binary files differnew file mode 100644 index 0000000000..a0d0aa8032 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XPath.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll Binary files differnew file mode 100644 index 0000000000..e6a15313ee --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlDocument.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll Binary files differnew file mode 100644 index 0000000000..94cd19d1e7 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.XmlSerializer.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll Binary files differnew file mode 100644 index 0000000000..8e7b9a6df3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.Xml.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.dll Binary files differnew file mode 100644 index 0000000000..cca1ec8420 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/System.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll Binary files differnew file mode 100644 index 0000000000..0a3f0a784a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/WindowsBase.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..e825ac47fb --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..acc6988e6b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-console-l1-2-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..ca6284ed4b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-datetime-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..2a3eef142e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-debug-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..691f086cf0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-errorhandling-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..8870d27b04 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..bf151884b0 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l1-2-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll Binary files differnew file mode 100644 index 0000000000..627d9a2e29 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-file-l2-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..5f73df1b6c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-handle-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d347d553e6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-heap-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..8a5f4a284d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-interlocked-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..b8106634fd --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-libraryloader-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..4a1cdaa438 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-localization-l1-2-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..30767ccf60 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-memory-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..93622f475b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-namedpipe-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..ff47ce3988 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processenvironment-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..4190813a31 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll Binary files differnew file mode 100644 index 0000000000..c29fe9deaa --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-processthreads-l1-1-1.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..a045613703 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-profile-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..8f5b40d7b3 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-rtlsupport-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..dd307ec66a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-string-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..cd9b68e6e2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll Binary files differnew file mode 100644 index 0000000000..d1b372c487 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-synch-l1-2-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..2ca7c75533 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-sysinfo-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..629b637338 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-timezone-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..d5e82ecb23 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-core-util-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..7cfcdc8c0c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-conio-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..bda798b407 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-convert-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..8b4aba3947 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-environment-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..628bdb55ae --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-filesystem-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..7de5fff618 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-heap-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..4c8770d0a6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-locale-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..0e80796d12 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-math-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..b549546cc5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-multibyte-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..cae53b9940 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-private-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..b9055e120d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-process-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..e2e29a026f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-runtime-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..3e35079771 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-stdio-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..e1dbc43573 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-string-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..3157c9e0e5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-time-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll Binary files differnew file mode 100644 index 0000000000..e7e806212d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/api-ms-win-crt-utility-l1-1-0.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll Binary files differnew file mode 100644 index 0000000000..3db37f23a6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrcompression.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll Binary files differnew file mode 100644 index 0000000000..380f9daa52 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clretwrc.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll Binary files differnew file mode 100644 index 0000000000..8f6d97266f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/clrjit.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll Binary files differnew file mode 100644 index 0000000000..e4fc1030a5 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/coreclr.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/createdump.exe b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/createdump.exe Binary files differnew file mode 100644 index 0000000000..62fd3acb3e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/createdump.exe diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..4b72058de6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..43acdf3d4c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll Binary files differnew file mode 100644 index 0000000000..ff7bda2d5f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/dbgshim.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..55d6b391fa --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..698f08e5e2 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..e770ccc2e8 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..62e2e9a98b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..f605e75a4d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..a5aec6aa4e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll Binary files differnew file mode 100644 index 0000000000..9074a6c2a1 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostfxr.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll Binary files differnew file mode 100644 index 0000000000..ad628e6986 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/hostpolicy.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..5aedc4b83b --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..0ecca4c37d --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2437ed9332 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..0b985d837c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..c908377e1f --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..bdb9eb5248 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mi.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mi.dll Binary files differindex cfa384604d..cfa384604d 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/mi.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mi.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/miutils.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/miutils.dll Binary files differindex 6a6fdd1bb2..6a6fdd1bb2 100644 --- a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/3.1.8/miutils.dll +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/miutils.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll Binary files differnew file mode 100644 index 0000000000..be9218e86c --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_x86_x86_5.0.20.51904.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_x86_x86_5.0.20.51904.dll Binary files differnew file mode 100644 index 0000000000..0fdf537711 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordaccore_x86_x86_5.0.20.51904.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll Binary files differnew file mode 100644 index 0000000000..3f17afda6e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscordbi.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll Binary files differnew file mode 100644 index 0000000000..607a8cb582 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorlib.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll Binary files differnew file mode 100644 index 0000000000..d1e73f7cef --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/mscorrc.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll Binary files differnew file mode 100644 index 0000000000..cbecb91ced --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/netstandard.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..8f2b775300 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..b287bd94de --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..4c64afcfda --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..10a885e034 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll Binary files differnew file mode 100644 index 0000000000..93ef54cd98 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/pwrshplugin.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2b8db7b639 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..cb414f7bb6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..87c1ca2c76 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..5b1ff67570 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll Binary files differnew file mode 100644 index 0000000000..0f10704112 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/ucrtbase.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..8b19e6492a --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..32204d4633 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100644 index 0000000000..2acfeed16e --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100644 index 0000000000..57283cf4f6 --- /dev/null +++ b/distro/ruby_bin_folder/x86/shared/Microsoft.NETCore.App/5.0.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/lib/chef/powershell.rb b/lib/chef/powershell.rb index 905b92ebfb..6b925eabb6 100644 --- a/lib/chef/powershell.rb +++ b/lib/chef/powershell.rb @@ -34,6 +34,11 @@ class Chef # @param script [String] script to run # @return [Object] output def initialize(script) + # This Powershell DLL source lives here: https://github.com/chef/chef-powershell-shim + # Every merge into that repo triggers a Habitat build and promotion. Running + # the rake :update_chef_exec_dll task in this (chef/chef) repo will pull down + # the built packages and copy the binaries to distro/ruby_bin_folder. Bundle install + # ensures that the correct architecture binaries are installed into the path. @dll ||= "Chef.PowerShell.Wrapper.dll" exec(script) end diff --git a/lib/chef/pwsh.rb b/lib/chef/pwsh.rb index cbb8d6a8b9..3d067eb0d6 100644 --- a/lib/chef/pwsh.rb +++ b/lib/chef/pwsh.rb @@ -58,6 +58,13 @@ class Chef end def self.dll + # This Powershell DLL source lives here: https://github.com/chef/chef-powershell-shim + # Every merge into that repo triggers a Habitat build and promotion. Running + # the rake :update_chef_exec_dll task in this (chef/chef) repo will pull down + # the built packages and copy the binaries to distro/ruby_bin_folder. Bundle install + # ensures that the correct architecture binaries are installed into the path. + # Also note that the version of pwsh is determined by which assemblies the dll was + # built with. To update powershell, those dependencies must be bumped. @dll ||= Dir.glob("#{RbConfig::CONFIG["bindir"]}/**/Chef.PowerShell.Wrapper.Core.dll").last end end |