diff --git a/lang/c_sharp/README.md b/lang/c_sharp/README.md new file mode 100644 index 00000000..c6f03b89 --- /dev/null +++ b/lang/c_sharp/README.md @@ -0,0 +1,47 @@ +# .Net Framework (C#) as Dynamic Build + +## Run C# Natively on Linux + +To run the C# helloworld natively on Linux, run the command below inside the `./lang/c_sharp/helloworld` directory: +``` +./bin/Debug/net7.0/helloworld +``` +Or you can also simply run: +``` +dotnet run +``` + +## Run C# with Unikraft + +To run the C# helloworld on Unikraft, run the `run.sh` script from the [`run-app-elfloader` repository](https://github.com/unikraft/run-app-elfloader): + +```console +./run.sh -k /path/to/elfloader_qemu-x86_64 -r ../dynamic-apps/lang/c_sharp/ /helloworld/bin/Debug/net7.0/helloworld +``` + +## Notes for patching + +The origin `.Net` runtime creates debug pipes using `SYS_mknodat` syscall, which is not yet implemented in Unikraft. +Setting env `COMPlus_EnableDiagnostics=0` or `DOTNET_EnableDiagnostics=0` could prevent this. + +For convenience, we patched [EXTERNAL_EnableDiagnostics](https://github.com/dotnet/runtime/blob/v7.0.7/src/coreclr/inc/clrconfigvalues.h#L162) to be `0` by default. +And it only affects `/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so`. + +## Notes for procfs + +The `.Net` runtime uses [__pthread_getattr_np](https://github.com/bminor/glibc/blob/glibc-2.37/nptl/pthread_getattr_np.c#L85) in [CPalThread::GetStackBase()](https://github.com/dotnet/runtime/blob/v7.0.7/src/coreclr/pal/src/thread/thread.cpp#L2683) and [CPalThread::GetStackLimit()](https://github.com/dotnet/runtime/blob/v7.0.7/src/coreclr/pal/src/thread/thread.cpp#L2723). +And the `glibc` implementation reads `/proc/self/maps` to get stack addresses, see the condition [here](https://github.com/bminor/glibc/blob/glibc-2.37/nptl/pthread_getattr_np.c#L129). + +So you have to change the content of `/proc/1/maps` in your `rootfs`, to make your range of stack address contains the real stack area. +Otherwise, the runtime will crash with `Failed to create CoreCLR, HRESULT: 0x8007000E`. + +To get to know what's your stack address, see debug information provided in [app-elfloader](https://github.com/unikraft/app-elfloader/blob/bbb92f8c04bd58f0cf52b9e76250b0e03c5fc7e7/main.c#L239). +Change it to `uk_pr_err` and you will see log as follows: +``` +ERR: [appelfloader] helloworld: Application stack at 0x400080020 - 0x4000a0020 +Failed to create CoreCLR, HRESULT: 0x8007000E +``` +Copy the stack addresses into `./proc/1/maps` and replace the example addresses, run again and you will see: +``` +Hello world from .Net 7.0! +``` diff --git a/lang/c_sharp/helloworld/Makefile b/lang/c_sharp/helloworld/Makefile new file mode 100644 index 00000000..85da0648 --- /dev/null +++ b/lang/c_sharp/helloworld/Makefile @@ -0,0 +1,2 @@ +all: + dotnet build diff --git a/lang/c_sharp/helloworld/Program.cs b/lang/c_sharp/helloworld/Program.cs new file mode 100644 index 00000000..d7034bb1 --- /dev/null +++ b/lang/c_sharp/helloworld/Program.cs @@ -0,0 +1,31 @@ +using System; +using System.IO; +using System; +using System.Data; + +Console.WriteLine("Hello world from .Net 7.0!"); + +Console.WriteLine("Simple Calculator\n"); + +while (true) +{ + Console.Write("Enter an expression (e.g., 2 + 3): "); + string expression = Console.ReadLine(); + + try + { + object result = new DataTable().Compute(expression, null); + Console.WriteLine($"Result: {expression} = {result}\n"); + } + catch (Exception) + { + Console.WriteLine("Invalid expression or operation."); + } + + Console.Write("Do you want to perform another calculation? (y/n): "); + string choice = Console.ReadLine(); + if (choice.ToLower() != "y") + break; + Console.WriteLine(); +} +Console.WriteLine("Calculator exited."); diff --git a/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld new file mode 100755 index 00000000..132592ad Binary files /dev/null and b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld differ diff --git a/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.deps.json b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.deps.json new file mode 100644 index 00000000..1646dab0 --- /dev/null +++ b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "helloworld/1.0.0": { + "runtime": { + "helloworld.dll": {} + } + } + } + }, + "libraries": { + "helloworld/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.dll b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.dll new file mode 100644 index 00000000..efed2739 Binary files /dev/null and b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.dll differ diff --git a/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.pdb b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.pdb new file mode 100644 index 00000000..8ca38fbf Binary files /dev/null and b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.pdb differ diff --git a/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.runtimeconfig.json b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.runtimeconfig.json new file mode 100644 index 00000000..184be8b5 --- /dev/null +++ b/lang/c_sharp/helloworld/bin/Debug/net7.0/helloworld.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/lang/c_sharp/helloworld/helloworld.csproj b/lang/c_sharp/helloworld/helloworld.csproj new file mode 100644 index 00000000..f02677bf --- /dev/null +++ b/lang/c_sharp/helloworld/helloworld.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/lang/c_sharp/lib64/ld-linux-x86-64.so.2 b/lang/c_sharp/lib64/ld-linux-x86-64.so.2 new file mode 100755 index 00000000..d2d08e81 Binary files /dev/null and b/lang/c_sharp/lib64/ld-linux-x86-64.so.2 differ diff --git a/lang/c_sharp/proc/1/exe b/lang/c_sharp/proc/1/exe new file mode 120000 index 00000000..ffb4fac1 --- /dev/null +++ b/lang/c_sharp/proc/1/exe @@ -0,0 +1 @@ +/helloworld/bin/Debug/net7.0/helloworld \ No newline at end of file diff --git a/lang/c_sharp/proc/1/maps b/lang/c_sharp/proc/1/maps new file mode 100644 index 00000000..35b5c2e2 --- /dev/null +++ b/lang/c_sharp/proc/1/maps @@ -0,0 +1 @@ +400080020-4000a0020 rw-p 00000000 00:00 0 [stack] diff --git a/lang/c_sharp/proc/self b/lang/c_sharp/proc/self new file mode 120000 index 00000000..44433e7b --- /dev/null +++ b/lang/c_sharp/proc/self @@ -0,0 +1 @@ +/proc/1 \ No newline at end of file diff --git a/lang/c_sharp/usr/lib/libc.so.6 b/lang/c_sharp/usr/lib/libc.so.6 new file mode 100755 index 00000000..103659c8 Binary files /dev/null and b/lang/c_sharp/usr/lib/libc.so.6 differ diff --git a/lang/c_sharp/usr/lib/libgcc_s.so.1 b/lang/c_sharp/usr/lib/libgcc_s.so.1 new file mode 100644 index 00000000..ab9eca5b Binary files /dev/null and b/lang/c_sharp/usr/lib/libgcc_s.so.1 differ diff --git a/lang/c_sharp/usr/lib/libhostfxr.so b/lang/c_sharp/usr/lib/libhostfxr.so new file mode 120000 index 00000000..a17cbd6b --- /dev/null +++ b/lang/c_sharp/usr/lib/libhostfxr.so @@ -0,0 +1 @@ +/usr/share/dotnet/host/fxr/7.0.7/libhostfxr.so \ No newline at end of file diff --git a/lang/c_sharp/usr/lib/libicudata.so.73 b/lang/c_sharp/usr/lib/libicudata.so.73 new file mode 100755 index 00000000..42b78ac4 Binary files /dev/null and b/lang/c_sharp/usr/lib/libicudata.so.73 differ diff --git a/lang/c_sharp/usr/lib/libicuuc.so.73.2.1 b/lang/c_sharp/usr/lib/libicuuc.so.73.2.1 new file mode 100755 index 00000000..6e205b52 Binary files /dev/null and b/lang/c_sharp/usr/lib/libicuuc.so.73.2.1 differ diff --git a/lang/c_sharp/usr/lib/liblzma.so.5 b/lang/c_sharp/usr/lib/liblzma.so.5 new file mode 100755 index 00000000..0a3f1918 Binary files /dev/null and b/lang/c_sharp/usr/lib/liblzma.so.5 differ diff --git a/lang/c_sharp/usr/lib/libm.so.6 b/lang/c_sharp/usr/lib/libm.so.6 new file mode 100755 index 00000000..8e553b77 Binary files /dev/null and b/lang/c_sharp/usr/lib/libm.so.6 differ diff --git a/lang/c_sharp/usr/lib/libstdc++.so.6 b/lang/c_sharp/usr/lib/libstdc++.so.6 new file mode 100755 index 00000000..6978bfe0 Binary files /dev/null and b/lang/c_sharp/usr/lib/libstdc++.so.6 differ diff --git a/lang/c_sharp/usr/lib/libunwind-x86_64.so.8 b/lang/c_sharp/usr/lib/libunwind-x86_64.so.8 new file mode 100755 index 00000000..6f6bf649 Binary files /dev/null and b/lang/c_sharp/usr/lib/libunwind-x86_64.so.8 differ diff --git a/lang/c_sharp/usr/lib/libunwind.so.8 b/lang/c_sharp/usr/lib/libunwind.so.8 new file mode 100755 index 00000000..e2b37018 Binary files /dev/null and b/lang/c_sharp/usr/lib/libunwind.so.8 differ diff --git a/lang/c_sharp/usr/share/dotnet/host/fxr/7.0.7/libhostfxr.so b/lang/c_sharp/usr/share/dotnet/host/fxr/7.0.7/libhostfxr.so new file mode 100755 index 00000000..bfcc8108 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/host/fxr/7.0.7/libhostfxr.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/.version b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/.version new file mode 100644 index 00000000..273da4d8 --- /dev/null +++ b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/.version @@ -0,0 +1,2 @@ +5b20af47d99620150c53eaf5db8636fdf730b126 +7.0.7 diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.CSharp.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.CSharp.dll new file mode 100644 index 00000000..c4b4d033 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.CSharp.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.deps.json b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.deps.json new file mode 100644 index 00000000..dea8dc8e --- /dev/null +++ b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.deps.json @@ -0,0 +1,759 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0/arch-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {}, + ".NETCoreApp,Version=v7.0/arch-x64": { + "Microsoft.NETCore.App.Runtime.arch-x64/7.0.7": { + "runtime": { + "System.Private.CoreLib.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.AppContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Buffers.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Globalization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "Microsoft.CSharp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.723.32201" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Collections.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Console.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Data.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Http.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Security.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.32201" + } + }, + "native": { + "createdump": { + "fileVersion": "0.0.0.0" + }, + "libclrgc.so": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclrtraceptprovider.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordaccore.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordbi.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Globalization.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.so": { + "fileVersion": "0.0.0.0" + }, + "libhostpolicy.so": { + "fileVersion": "0.0.0.0" + } + } + } + } + }, + "libraries": { + "Microsoft.NETCore.App.Runtime.arch-x64/7.0.7": { + "type": "package", + "serviceable": true, + "sha512": "", + "path": "microsoft.netcore.app.runtime.arch-x64/7.0.7" + } + }, + "runtimes": { + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "manjaro-x64": [ + "manjaro", + "arch-x64", + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.runtimeconfig.json b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.runtimeconfig.json new file mode 100644 index 00000000..78739a90 --- /dev/null +++ b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.NETCore.App.runtimeconfig.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.Core.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.Core.dll new file mode 100644 index 00000000..4a8d4a70 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.Core.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.dll new file mode 100644 index 00000000..9b478b9b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.VisualBasic.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Primitives.dll new file mode 100644 index 00000000..c54b3188 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Registry.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Registry.dll new file mode 100644 index 00000000..679e5dd8 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/Microsoft.Win32.Registry.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.AppContext.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.AppContext.dll new file mode 100644 index 00000000..c95d72de Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.AppContext.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Buffers.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Buffers.dll new file mode 100644 index 00000000..28cd9292 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Buffers.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Concurrent.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Concurrent.dll new file mode 100644 index 00000000..f17ea9ee Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Concurrent.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Immutable.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Immutable.dll new file mode 100644 index 00000000..49486707 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Immutable.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.NonGeneric.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.NonGeneric.dll new file mode 100644 index 00000000..faa0434a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.NonGeneric.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Specialized.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Specialized.dll new file mode 100644 index 00000000..dc56a9c6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.Specialized.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.dll new file mode 100644 index 00000000..67a6bf53 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Collections.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Annotations.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Annotations.dll new file mode 100644 index 00000000..5ca0d7dd Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Annotations.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.DataAnnotations.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 00000000..5b669b3a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.DataAnnotations.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.EventBasedAsync.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 00000000..4312cb11 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.EventBasedAsync.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Primitives.dll new file mode 100644 index 00000000..014cc5b8 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.TypeConverter.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.TypeConverter.dll new file mode 100644 index 00000000..2cab0334 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.TypeConverter.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.dll new file mode 100644 index 00000000..c862dfdf Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ComponentModel.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Configuration.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Configuration.dll new file mode 100644 index 00000000..400610ab Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Configuration.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Console.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Console.dll new file mode 100644 index 00000000..d488e921 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Console.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Core.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Core.dll new file mode 100644 index 00000000..708ec2f1 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Core.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.Common.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.Common.dll new file mode 100644 index 00000000..5ecaffc6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.Common.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.DataSetExtensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.DataSetExtensions.dll new file mode 100644 index 00000000..ebfc4df6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.DataSetExtensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.dll new file mode 100644 index 00000000..9b16a044 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Data.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Contracts.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Contracts.dll new file mode 100644 index 00000000..de21e04a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Contracts.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Debug.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Debug.dll new file mode 100644 index 00000000..fb632d33 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Debug.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.DiagnosticSource.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 00000000..a6c915f6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.DiagnosticSource.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.FileVersionInfo.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 00000000..479dd17b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.FileVersionInfo.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Process.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Process.dll new file mode 100644 index 00000000..4dab7a20 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Process.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.StackTrace.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.StackTrace.dll new file mode 100644 index 00000000..b46b1e5e Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.StackTrace.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TextWriterTraceListener.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 00000000..1412ee90 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tools.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tools.dll new file mode 100644 index 00000000..833718f3 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tools.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TraceSource.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TraceSource.dll new file mode 100644 index 00000000..d8a8c0b9 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.TraceSource.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tracing.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tracing.dll new file mode 100644 index 00000000..a602fbbf Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Diagnostics.Tracing.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.Primitives.dll new file mode 100644 index 00000000..9cee1728 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.dll new file mode 100644 index 00000000..b529cbf8 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Drawing.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Dynamic.Runtime.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Dynamic.Runtime.dll new file mode 100644 index 00000000..6906a758 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Dynamic.Runtime.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Asn1.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Asn1.dll new file mode 100644 index 00000000..97f48aa5 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Asn1.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Tar.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Tar.dll new file mode 100644 index 00000000..89d0649a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Formats.Tar.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Calendars.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Calendars.dll new file mode 100644 index 00000000..b6eeb47d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Calendars.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Extensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Extensions.dll new file mode 100644 index 00000000..24ad826d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.Extensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.dll new file mode 100644 index 00000000..1ba76c33 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Globalization.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.Brotli.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.Brotli.dll new file mode 100644 index 00000000..26ad2d81 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.Brotli.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.FileSystem.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.FileSystem.dll new file mode 100644 index 00000000..21fae2a6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.FileSystem.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.ZipFile.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.ZipFile.dll new file mode 100644 index 00000000..aff77a26 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.ZipFile.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.dll new file mode 100644 index 00000000..54f014a9 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Compression.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.AccessControl.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 00000000..bc828f62 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.AccessControl.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.DriveInfo.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 00000000..d769986b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.DriveInfo.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Primitives.dll new file mode 100644 index 00000000..9c2dbc11 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Watcher.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Watcher.dll new file mode 100644 index 00000000..a45a5df9 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.Watcher.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.dll new file mode 100644 index 00000000..12529206 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.FileSystem.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.IsolatedStorage.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.IsolatedStorage.dll new file mode 100644 index 00000000..6f267606 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.IsolatedStorage.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.MemoryMappedFiles.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.MemoryMappedFiles.dll new file mode 100644 index 00000000..04663871 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.MemoryMappedFiles.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.AccessControl.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.AccessControl.dll new file mode 100644 index 00000000..926b344a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.AccessControl.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.dll new file mode 100644 index 00000000..12be2f2c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.Pipes.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.UnmanagedMemoryStream.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 00000000..1fe00c0d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.UnmanagedMemoryStream.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.dll new file mode 100644 index 00000000..6e103ee4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.IO.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Expressions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Expressions.dll new file mode 100644 index 00000000..eb208e55 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Expressions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Parallel.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Parallel.dll new file mode 100644 index 00000000..f3af640b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Parallel.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Queryable.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Queryable.dll new file mode 100644 index 00000000..b40b6b6e Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.Queryable.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.dll new file mode 100644 index 00000000..7abbe5a0 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Linq.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Memory.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Memory.dll new file mode 100644 index 00000000..47a67949 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Memory.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.Json.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.Json.dll new file mode 100644 index 00000000..9d3d93b7 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.Json.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.dll new file mode 100644 index 00000000..b1daf354 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Http.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.HttpListener.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.HttpListener.dll new file mode 100644 index 00000000..02bd9151 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.HttpListener.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Mail.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Mail.dll new file mode 100644 index 00000000..281d44da Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Mail.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NameResolution.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NameResolution.dll new file mode 100644 index 00000000..d68be100 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NameResolution.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NetworkInformation.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NetworkInformation.dll new file mode 100644 index 00000000..513c7be8 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.NetworkInformation.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Ping.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Ping.dll new file mode 100644 index 00000000..5659d6ae Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Ping.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Primitives.dll new file mode 100644 index 00000000..9f9d7c52 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Quic.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Quic.dll new file mode 100644 index 00000000..669e12b7 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Quic.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Requests.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Requests.dll new file mode 100644 index 00000000..c61176a4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Requests.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Security.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Security.dll new file mode 100644 index 00000000..70b0e8c0 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Security.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.ServicePoint.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.ServicePoint.dll new file mode 100644 index 00000000..564e6cca Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.ServicePoint.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Sockets.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Sockets.dll new file mode 100644 index 00000000..2c769994 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.Sockets.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebClient.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebClient.dll new file mode 100644 index 00000000..e2248328 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebClient.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebHeaderCollection.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebHeaderCollection.dll new file mode 100644 index 00000000..150b82a6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebHeaderCollection.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebProxy.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebProxy.dll new file mode 100644 index 00000000..b9d21136 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebProxy.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.Client.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.Client.dll new file mode 100644 index 00000000..a9f1e39f Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.Client.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.dll new file mode 100644 index 00000000..6596778c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.WebSockets.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.dll new file mode 100644 index 00000000..9b700ee6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Net.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.Vectors.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.Vectors.dll new file mode 100644 index 00000000..1cf8add0 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.Vectors.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.dll new file mode 100644 index 00000000..95bf4bef Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Numerics.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ObjectModel.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ObjectModel.dll new file mode 100644 index 00000000..834dadc4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ObjectModel.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.CoreLib.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.CoreLib.dll new file mode 100644 index 00000000..85ef5d47 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.CoreLib.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.DataContractSerialization.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.DataContractSerialization.dll new file mode 100644 index 00000000..1219cf3a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.DataContractSerialization.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Uri.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Uri.dll new file mode 100644 index 00000000..72d9e101 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Uri.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.Linq.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.Linq.dll new file mode 100644 index 00000000..e7839b4d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.Linq.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.dll new file mode 100644 index 00000000..85cadbea Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Private.Xml.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.DispatchProxy.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.DispatchProxy.dll new file mode 100644 index 00000000..3c0ebdc3 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.DispatchProxy.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.ILGeneration.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 00000000..45521cc7 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.ILGeneration.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.Lightweight.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 00000000..84a012cb Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.Lightweight.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.dll new file mode 100644 index 00000000..53e3ecfc Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Emit.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Extensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Extensions.dll new file mode 100644 index 00000000..6b0443d2 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Extensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Metadata.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Metadata.dll new file mode 100644 index 00000000..5914dab4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Metadata.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Primitives.dll new file mode 100644 index 00000000..d5498d7a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.TypeExtensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.TypeExtensions.dll new file mode 100644 index 00000000..c547fef2 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.TypeExtensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.dll new file mode 100644 index 00000000..22dce25c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Reflection.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Reader.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Reader.dll new file mode 100644 index 00000000..06e38c7d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Reader.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.ResourceManager.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.ResourceManager.dll new file mode 100644 index 00000000..6f0a911f Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.ResourceManager.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Writer.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Writer.dll new file mode 100644 index 00000000..ba9663ed Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Resources.Writer.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.Unsafe.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 00000000..a3f472a0 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.VisualC.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 00000000..2f0a3530 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Extensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Extensions.dll new file mode 100644 index 00000000..767f5e68 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Extensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Handles.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Handles.dll new file mode 100644 index 00000000..99ea62dd Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Handles.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.JavaScript.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 00000000..2520de54 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.RuntimeInformation.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 00000000..ca4923a7 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.dll new file mode 100644 index 00000000..56e50b35 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.InteropServices.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Intrinsics.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Intrinsics.dll new file mode 100644 index 00000000..a2ad4581 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Intrinsics.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Loader.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Loader.dll new file mode 100644 index 00000000..6dfffd85 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Loader.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Numerics.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Numerics.dll new file mode 100644 index 00000000..fb72d39b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Numerics.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Formatters.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 00000000..059029fc Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Formatters.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Json.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Json.dll new file mode 100644 index 00000000..2eed1d7b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Json.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 00000000..b5fe5f9c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Xml.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Xml.dll new file mode 100644 index 00000000..cf7b8206 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.Xml.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.dll new file mode 100644 index 00000000..3589fd59 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.Serialization.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.dll new file mode 100644 index 00000000..a8801251 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Runtime.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.AccessControl.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.AccessControl.dll new file mode 100644 index 00000000..99080ab2 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.AccessControl.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Claims.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Claims.dll new file mode 100644 index 00000000..6958aab6 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Claims.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Algorithms.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 00000000..4ebaf38a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Algorithms.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Cng.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Cng.dll new file mode 100644 index 00000000..21e49977 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Cng.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Csp.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Csp.dll new file mode 100644 index 00000000..aa6d81ba Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Csp.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Encoding.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Encoding.dll new file mode 100644 index 00000000..9d6dfea3 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Encoding.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.OpenSsl.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 00000000..77998774 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.OpenSsl.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Primitives.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Primitives.dll new file mode 100644 index 00000000..f6c3d22d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.Primitives.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.X509Certificates.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 00000000..576f7be3 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.X509Certificates.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.dll new file mode 100644 index 00000000..d15b6728 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Cryptography.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.Windows.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.Windows.dll new file mode 100644 index 00000000..bf778b29 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.Windows.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.dll new file mode 100644 index 00000000..44875553 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.Principal.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.SecureString.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.SecureString.dll new file mode 100644 index 00000000..f19d4a7a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.SecureString.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.dll new file mode 100644 index 00000000..328f98bc Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Security.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceModel.Web.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceModel.Web.dll new file mode 100644 index 00000000..61171163 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceModel.Web.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceProcess.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceProcess.dll new file mode 100644 index 00000000..1bbddfd2 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ServiceProcess.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.CodePages.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.CodePages.dll new file mode 100644 index 00000000..5082c874 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.CodePages.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.Extensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.Extensions.dll new file mode 100644 index 00000000..f40be736 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.Extensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.dll new file mode 100644 index 00000000..3508aa12 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encoding.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encodings.Web.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encodings.Web.dll new file mode 100644 index 00000000..e679f1c9 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Encodings.Web.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Json.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Json.dll new file mode 100644 index 00000000..35d7b6cd Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.Json.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.RegularExpressions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.RegularExpressions.dll new file mode 100644 index 00000000..fa0b96f4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Text.RegularExpressions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Channels.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Channels.dll new file mode 100644 index 00000000..bc79025c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Channels.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Overlapped.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Overlapped.dll new file mode 100644 index 00000000..49c898e5 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Overlapped.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Dataflow.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 00000000..b23d295b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Dataflow.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Extensions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Extensions.dll new file mode 100644 index 00000000..381f06dc Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Extensions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Parallel.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Parallel.dll new file mode 100644 index 00000000..55e14446 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.Parallel.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.dll new file mode 100644 index 00000000..975a1b65 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Tasks.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Thread.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Thread.dll new file mode 100644 index 00000000..0ed2bd74 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Thread.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.ThreadPool.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.ThreadPool.dll new file mode 100644 index 00000000..81bf4053 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.ThreadPool.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Timer.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Timer.dll new file mode 100644 index 00000000..eefdab33 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.Timer.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.dll new file mode 100644 index 00000000..3913716f Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Threading.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.Local.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.Local.dll new file mode 100644 index 00000000..051fa57f Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.Local.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.dll new file mode 100644 index 00000000..946e0b71 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Transactions.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ValueTuple.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ValueTuple.dll new file mode 100644 index 00000000..e03c77cb Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.ValueTuple.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.HttpUtility.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.HttpUtility.dll new file mode 100644 index 00000000..2558ddfe Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.HttpUtility.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.dll new file mode 100644 index 00000000..4a420908 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Web.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Windows.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Windows.dll new file mode 100644 index 00000000..f81ff061 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Windows.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Linq.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Linq.dll new file mode 100644 index 00000000..ccb0fbc5 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Linq.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.ReaderWriter.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.ReaderWriter.dll new file mode 100644 index 00000000..90d1559a Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.ReaderWriter.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Serialization.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Serialization.dll new file mode 100644 index 00000000..873c221d Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.Serialization.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XDocument.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XDocument.dll new file mode 100644 index 00000000..d22b8e4b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XDocument.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.XDocument.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.XDocument.dll new file mode 100644 index 00000000..9de34268 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.XDocument.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.dll new file mode 100644 index 00000000..7c450461 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XPath.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlDocument.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlDocument.dll new file mode 100644 index 00000000..cd0e8d03 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlDocument.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlSerializer.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlSerializer.dll new file mode 100644 index 00000000..720d7fb0 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.XmlSerializer.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.dll new file mode 100644 index 00000000..c0482310 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.Xml.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.dll new file mode 100644 index 00000000..dcd3c784 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/System.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/WindowsBase.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/WindowsBase.dll new file mode 100644 index 00000000..5da0796c Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/WindowsBase.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/createdump b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/createdump new file mode 100755 index 00000000..76e0a0a5 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/createdump differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Globalization.Native.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Globalization.Native.so new file mode 100755 index 00000000..990de07b Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Globalization.Native.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.IO.Compression.Native.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.IO.Compression.Native.so new file mode 100755 index 00000000..ad23bc42 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.IO.Compression.Native.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Native.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Native.so new file mode 100755 index 00000000..be200832 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Native.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Net.Security.Native.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Net.Security.Native.so new file mode 100755 index 00000000..febb9562 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Net.Security.Native.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Security.Cryptography.Native.OpenSsl.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100755 index 00000000..4f61ef68 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrgc.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrgc.so new file mode 100755 index 00000000..fae74053 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrgc.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrjit.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrjit.so new file mode 100755 index 00000000..7c7042e1 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libclrjit.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so new file mode 100755 index 00000000..3d1c5f23 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so.bak b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so.bak new file mode 100755 index 00000000..6df0eeb4 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclr.so.bak differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclrtraceptprovider.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclrtraceptprovider.so new file mode 100755 index 00000000..495fc313 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libcoreclrtraceptprovider.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libhostpolicy.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libhostpolicy.so new file mode 100755 index 00000000..45efb394 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libhostpolicy.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordaccore.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordaccore.so new file mode 100755 index 00000000..df1204c9 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordaccore.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordbi.so b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordbi.so new file mode 100755 index 00000000..0a6491eb Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/libmscordbi.so differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/mscorlib.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/mscorlib.dll new file mode 100644 index 00000000..e1d8089e Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/mscorlib.dll differ diff --git a/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/netstandard.dll b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/netstandard.dll new file mode 100644 index 00000000..69297a47 Binary files /dev/null and b/lang/c_sharp/usr/share/dotnet/shared/Microsoft.NETCore.App/7.0.7/netstandard.dll differ