From a36c1e221e8d4a48f0cc0037e08c550bfe6c4055 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Wed, 6 Nov 2024 21:26:03 -0500 Subject: [PATCH] Get the dotnet guest project working, test spawning entities in the C# project --- .gitmodules | 3 - dotnet-guest-test/.gitignore | 2 + dotnet-guest-test/ExampleWorldImpl.cs | 91 +- dotnet-guest-test/add.wit | 5 - .../Debug/net8.0/dotnet-guest-test.deps.json | 64 - .../bin/Debug/net8.0/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../bin/Debug/net8.0/dotnet-guest-test.pdb | Bin 11560 -> 0 bytes .../wasi-wasm/dotnet-guest-test.deps.json | 93 - .../net8.0/wasi-wasm/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../net8.0/wasi-wasm/dotnet-guest-test.pdb | Bin 11580 -> 0 bytes dotnet-guest-test/componentize-dotnet | 1 - dotnet-guest-test/dotnet-guest-test.csproj | 13 +- ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 - .../net8.0/dotnet-guest-test.AssemblyInfo.cs | 22 - ...dotnet-guest-test.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 15 - .../dotnet-guest-test.GlobalUsings.g.cs | 8 - .../net8.0/dotnet-guest-test.assets.cache | Bin 1109 -> 0 bytes ...-guest-test.csproj.CoreCompileInputs.cache | 1 - ...net-guest-test.csproj.FileListAbsolute.txt | 15 - .../obj/Debug/net8.0/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../obj/Debug/net8.0/dotnet-guest-test.pdb | Bin 11560 -> 0 bytes .../Debug/net8.0/ref/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../Debug/net8.0/refint/dotnet-guest-test.dll | Bin 6144 -> 0 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 - .../dotnet-guest-test.AssemblyInfo.cs | 22 - ...dotnet-guest-test.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 19 - .../dotnet-guest-test.GlobalUsings.g.cs | 8 - .../wasi-wasm/dotnet-guest-test.assets.cache | Bin 1635 -> 0 bytes ...-guest-test.csproj.CoreCompileInputs.cache | 1 - ...net-guest-test.csproj.FileListAbsolute.txt | 15 - .../net8.0/wasi-wasm/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../net8.0/wasi-wasm/dotnet-guest-test.pdb | Bin 11580 -> 0 bytes .../native/dotnet-guest-test.ilc.rsp | 234 --- .../wasi-wasm/ref/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../wasi-wasm/refint/dotnet-guest-test.dll | Bin 6144 -> 0 bytes .../net8.0/wasi-wasm/wit_bindgen/Example.cs | 94 - .../ExampleWorld_component_type.wit | 5 - ...mpleWorld_wasm_import_linkage_attribute.cs | 11 - .../wasi-wasm/wit_bindgen/lastbuild.txt | 0 .../obj/Debug/net8.0/wit_bindgen/Example.cs | 94 - .../ExampleWorld_component_type.wit | 5 - ...mpleWorld_wasm_import_linkage_attribute.cs | 11 - .../Debug/net8.0/wit_bindgen/lastbuild.txt | 0 ...CoreApp,Version=v9.0.AssemblyAttributes.cs | 4 - .../dotnet-guest-test.AssemblyInfo.cs | 22 - ...dotnet-guest-test.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 19 - .../dotnet-guest-test.GlobalUsings.g.cs | 8 - .../wasi-wasm/dotnet-guest-test.assets.cache | Bin 1809 -> 0 bytes ...-guest-test.csproj.AssemblyReference.cache | Bin 854 -> 0 bytes ...-guest-test.csproj.CoreCompileInputs.cache | 1 - ...net-guest-test.csproj.FileListAbsolute.txt | 6 - .../dotnet-guest-test.sourcelink.json | 1 - .../native/dotnet-guest-test.ilc.rsp | 242 --- ...dotnet-guest-test.csproj.nuget.dgspec.json | 289 --- .../dotnet-guest-test.csproj.nuget.g.props | 25 - .../dotnet-guest-test.csproj.nuget.g.targets | 6 - dotnet-guest-test/obj/project.assets.json | 1608 ----------------- dotnet-guest-test/obj/project.nuget.cache | 15 - dotnet-guest-test/wit/deps/lyraapi/ecs.wit | 81 + dotnet-guest-test/wit/deps/lyraapi/world.wit | 5 + dotnet-guest-test/wit/world.wit | 20 + lyra-engine | 2 +- rust-toolchain.toml | 2 + src/main.rs | 77 +- 67 files changed, 273 insertions(+), 3023 deletions(-) create mode 100644 dotnet-guest-test/.gitignore delete mode 100644 dotnet-guest-test/add.wit delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.deps.json delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.pdb delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.deps.json delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb delete mode 160000 dotnet-guest-test/componentize-dotnet delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfo.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfoInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GlobalUsings.g.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.assets.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.CoreCompileInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.FileListAbsolute.txt delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.pdb delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/ref/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/refint/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.assets.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/ref/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/refint/dotnet-guest-test.dll delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/Example.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_component_type.wit delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/lastbuild.txt delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/Example.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_component_type.wit delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs delete mode 100644 dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/lastbuild.txt delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.assets.cache delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.AssemblyReference.cache delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.sourcelink.json delete mode 100644 dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp delete mode 100644 dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.dgspec.json delete mode 100644 dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.props delete mode 100644 dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.targets delete mode 100644 dotnet-guest-test/obj/project.assets.json delete mode 100644 dotnet-guest-test/obj/project.nuget.cache create mode 100644 dotnet-guest-test/wit/deps/lyraapi/ecs.wit create mode 100644 dotnet-guest-test/wit/deps/lyraapi/world.wit create mode 100644 dotnet-guest-test/wit/world.wit create mode 100644 rust-toolchain.toml diff --git a/.gitmodules b/.gitmodules index b07cb06..ff59b57 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "lyra-engine"] path = lyra-engine url = git@git.seanomik.net:SeanOMik/lyra-engine.git -[submodule "dotnet-guest-test/componentize-dotnet"] - path = dotnet-guest-test/componentize-dotnet - url = git@github.com:jsturtevant/componentize-dotnet.git diff --git a/dotnet-guest-test/.gitignore b/dotnet-guest-test/.gitignore new file mode 100644 index 0000000..8d4a6c0 --- /dev/null +++ b/dotnet-guest-test/.gitignore @@ -0,0 +1,2 @@ +bin +obj \ No newline at end of file diff --git a/dotnet-guest-test/ExampleWorldImpl.cs b/dotnet-guest-test/ExampleWorldImpl.cs index ba11ac7..379904a 100644 --- a/dotnet-guest-test/ExampleWorldImpl.cs +++ b/dotnet-guest-test/ExampleWorldImpl.cs @@ -1,16 +1,93 @@ -/* namespace dotnet_guest_test; +namespace ExampleWorld;//.wit.exports.component.witguest; -public class Class1 +using System.Diagnostics.CodeAnalysis; +using System.Runtime.InteropServices; +using ExampleWorld.wit.imports.lyra.api; + +[StructLayout(LayoutKind.Sequential)] +struct Vec3(float x, float y, float z) { + public const ulong TypeId = 4124409524; + public float X { get; set; } = x; + public float Y { get; set; } = y; + public float Z { get; set; } = z; -} */ -//package example:calculator; -namespace ExampleWorld;//.wit.exports.example.component; + public const ulong HostSize = sizeof(float) * 3; +} public class ExampleWorldImpl : IExampleWorld { - public static int Add(int x, int y) + internal struct AlignmentHelper where T : unmanaged { - return x + y; + public byte Padding; + public T Target; + } + + private static int AlignmentOf() where T : unmanaged + { + return (int)Marshal.OffsetOf>(nameof(AlignmentHelper.Target)); + } + + private static byte[] GetBytes([DisallowNull] T data) { + int size = Marshal.SizeOf(data); + byte[] arr = new byte[size]; + + IntPtr ptr = IntPtr.Zero; + try + { + ptr = Marshal.AllocHGlobal(size); + Marshal.StructureToPtr(data, ptr, true); + Marshal.Copy(ptr, arr, 0, size); + } + finally + { + Marshal.FreeHGlobal(ptr); + } + return arr; + } + + private static T? FromBytes(byte[] data) where T : struct + { + var ptr = GCHandle.Alloc(data, GCHandleType.Pinned); + try { + var res = (T?) Marshal.PtrToStructure(ptr.AddrOfPinnedObject(), typeof(T)); + return res; + } finally { + ptr.Free(); + + } + } + + public static void OnInit(IEcs.EcsWorld gameWorld, IEcs.Entity owningEntity) + { + var size = new IEcs.WasmTypeId((Vec3.TypeId, 0)); + var info = new IEcs.ComponentInfo("Vec3", (ulong) Marshal.SizeOf(), (ulong) AlignmentOf(), size); + var pos = new Vec3(7.0f, 30.0f, 18.0f); + var infos = new List + { + info + }; + + IEcs.Entity entity = gameWorld.Spawn(GetBytes(pos), infos); + Console.WriteLine("C#: Spawned {0}", entity.id.id); + + IEcs.EcsDynamicView res = gameWorld.View(infos); + (IEcs.Entity, byte[])? row = res.Next(); + + if (row.HasValue) { + Console.WriteLine("C#: Found position!!!"); + + var en = row.Value.Item1; + var comp = FromBytes(row.Value.Item2); + + Console.WriteLine("C#: Found component at ({0}, {1}, {2})", comp?.X, comp?.Y, comp?.Z); + } else { + Console.WriteLine("C#: Could not find position"); + } + } + + public static void OnUpdate(IEcs.EcsWorld gameWorld, IEcs.Entity owningEntity) + { + throw new NotImplementedException(); } } \ No newline at end of file diff --git a/dotnet-guest-test/add.wit b/dotnet-guest-test/add.wit deleted file mode 100644 index 85706fa..0000000 --- a/dotnet-guest-test/add.wit +++ /dev/null @@ -1,5 +0,0 @@ -package example:component; - -world example { - export add: func(x: s32, y: s32) -> s32; -} \ No newline at end of file diff --git a/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.deps.json b/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.deps.json deleted file mode 100644 index 1749f95..0000000 --- a/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.deps.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "dotnet-guest-test/1.0.0": { - "dependencies": { - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK": "0.4.0-preview00007" - }, - "runtime": { - "dotnet-guest-test.dll": {} - } - }, - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK/0.4.0-preview00007": { - "dependencies": { - "BytecodeAlliance.Componentize.DotNet.WitBindgen": "0.4.0-preview00007", - "Microsoft.DotNet.ILCompiler.LLVM": "10.0.0-alpha.1.24525.6", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "10.0.0-alpha.1.24525.6" - } - }, - "BytecodeAlliance.Componentize.DotNet.WitBindgen/0.4.0-preview00007": {}, - "Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": {}, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": {} - } - }, - "libraries": { - "dotnet-guest-test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK/0.4.0-preview00007": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEF9LXM3Y6CjJ+MNq2Kxe064HUNeZd9bPGxNYvGJS6YWnBtsPF5xPWexoXOO8nZaRxfy2EePNBIni5/7dp1ACw==", - "path": "bytecodealliance.componentize.dotnet.wasm.sdk/0.4.0-preview00007", - "hashPath": "bytecodealliance.componentize.dotnet.wasm.sdk.0.4.0-preview00007.nupkg.sha512" - }, - "BytecodeAlliance.Componentize.DotNet.WitBindgen/0.4.0-preview00007": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pSVjm0WVc7OAd8NSo0PUtaWNYIYdWToI48LodgmOvj8U755JHdXqQIgwZxDOEA38KYA8H/g0zgfOD5zPQbH3vA==", - "path": "bytecodealliance.componentize.dotnet.witbindgen/0.4.0-preview00007", - "hashPath": "bytecodealliance.componentize.dotnet.witbindgen.0.4.0-preview00007.nupkg.sha512" - }, - "Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7Xgtsv7rVZd/c+roCF2kzuut+XkJZ4Hig+7Eg90F7BR82+xPXkn0DiY+bLrYXFY27PLQCi8gEHeDzmbtEOtaMA==", - "path": "microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6", - "hashPath": "microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24525.6.nupkg.sha512" - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-L/aiafKFLiCBE0a9JSpziY9V18nyfKkjH0KpHLK38ixBDPGay15WcyaV5vGEO3m1U1WHhfYhpIcruhx3Z8xOGA==", - "path": "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6", - "hashPath": "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24525.6.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.dll b/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.dll deleted file mode 100644 index 4877a5c0773828a32e17662d79548605f731dde4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLdu(J?8UN0mKBkWyTFSoMRqj%jE!%e5PItRo)`dQIDf?*Y%yt(-?B1DsX72| zK*K*q&*c2>`5xyx-}%mW&pCIF+hLSj?g!nUfA}u zIQ+u4#3{?ybDo>=jI5qA9LEjxq}08lt|_DI)-_*QGCea%bXbIF$BBKv zDv$OGU7@##exf#T8j9S%M)A~9M^IU!1GS>x%wYdjSpkC2B}6Abp^UH{Hm07H2Q%qB z>`rrIgy_2*h>OcfqE_%8>Lp5CEPE$fCkofd!=SIPp`(FZ3PAre0)R~UR`MH^Dmu~0 zsONhrP|CLvG8UE^G(kFWZ6n8awO^+u8o^b}oUP`eIDFFnmLE zLrXU`?i?cT5IT2l!JsOBWAPitL}?{>T^Dyn`=f*Xg9GdcEZD%0!=cWP5xt4$pW#Di zJn$?hu;HY68zwpdZBGony9}1kDAcIR4wmTAE;s{w@YN ze>e{i1!_cP_PSDKJ{+y28Pi-bFZEv;1}$j~bcOahFe4bl3b!kKR^iLU{NHHzq3exdwU;3MVTkcf#qo*T zFRAwPWQ3ZjP8);%O-l2#3NHX7bOf60Uva}Iu0b1pp2k9>mIh`@ifXJ-XCND=Mpk34{1l?96G64f0V5>51DMV$?w z*TzK)y;!2Qg_wG!M14U!2&!uvp_~nG3>^lQQ`7^<&Q4JGmMEQW6r2}=eg~H{`V(+< zJ3urw%#&?#5%8+m;&!*v7hq_mocV|rLQI>eJtXkDaU3=So9Sv`8x1HNRye9~O5u$P zZ&GLh*VApl1}Xpr-LKk@0=LjtDyY-f6#tCEdla^+b!k=W(hAN&`WAg!o1^FGxzNq@ zBXHX2XJpcXTEzmejqacwlpCXQR<*9a0{IScGBm7-Sl(dAiW0MM}Gm1 zlLq}miXR6K(%l#>uJB9b!{+y3{Wjp;bQ;K zc%5p?PqAjT=Ua}BDe-FF7_=_dJ5VvxN?%p`Kr8J~dX(#@+yKo=KW_&oWAx!8u9>&x zwKRQ*CTC|UWhAZnoa+bkrwuvHTc}zn>mRUeIVU~e za-FrpDJSiEStEeZu-9nCWh#%E7G|WEwfwiYfC#0nOx{yAssqf*blgbGpfHQr`&It9 zo6T9aQl6Ezv7}lx^0L=69#$hKH8Q4wg+~E9jJ9 z=SX7r41gx-xQ`#A9y~MTf~RB4TB|cjv-qvj+L1ud3Dj%QCq)J&$)b7KcClv$Xc@3> zV#vN*ejUj@zVC)_-udvxe?-r;Q=KkEIHZ%PN29%+$%twWaI>D9AFK~Gig0*+`zEb} zI)v6xuQhCKZWI+p2i5DEsNbq}i26niO0XBfjv9$X6fNo+wQ#tOU^@KNb@O+&zu0^Y zE)rtpd{nG_vb2`vxYUL^T4q+mU&-tqeRb~k=%wV{zZX|U{Cf0p?4@~6?ssH9@C>_0 zpUEd}D|JW~67GU@_9y!X)4S7q(gOqL?tWv?ST7PsfiXNRzjJuv3&E?v>_1Y)_JC zJx?SaX`XZfuQ20UP7pFo^YS&^b=6}F@;aVeJu5Myv=AWDU8;DZad529s!%Pp6_aZ6&{OjeiK_(c3WeX*SLT6XNo^AA3| z`I-A3WE*{1X<9~~X#~c+=~;`iZ$d8OlQPFUQr~Re5BltaXY}&P+v}%13p znn3rt$y?DMXJa2WNG!)%m1xdPQvCYS*zO@J`SaN8C4VsI$(dhHz0`iX{*S%)KfU!Q zrEgT8$sf3_b8BrWf6Epn^T?bD+dg7g4rTom(nzZPnWY!D!^Xv-S!?irj>F$IMEL$) zSv_@?uhjoGeAeUt4o-{^nZ;Wiv(VlJoTE7Q-8pwB@)kF8Zy{GWp@593vB3{Vt)mn)CG0s0&< z_Q%81K#Zz0c=s`*I7e;#h_K1S)?wJmC@UP59OA)I&Cn@~KMW3h?_nM8qCWV)+Q!8Ztj4b!e#S7@0osjc3{)CuV&pV9 zd(^FC2wz<+i>a&`!gu>HdJI8h5Sk|bDd1bq0OWg+Ph9q@^&7>S`H*G7wGlxb8NPZY btA6lWzE4Fj{%82NYu_h(|2Okr6@h;NVO`*w diff --git a/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.pdb b/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.pdb deleted file mode 100644 index 13358b478e37e13404a255d81bdcd26aa0980cc4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11560 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 y5=}@l9VgL}2fxxCNywDJx{8Pj8IeOsaCS7g- diff --git a/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.deps.json b/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.deps.json deleted file mode 100644 index c8297b4..0000000 --- a/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.deps.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0/wasi-wasm", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": {}, - ".NETCoreApp,Version=v8.0/wasi-wasm": { - "dotnet-guest-test/1.0.0": { - "dependencies": { - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK": "0.4.0-preview00007", - "Microsoft.NET.ILLink.Tasks": "8.0.10" - }, - "runtime": { - "dotnet-guest-test.dll": {} - } - }, - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK/0.4.0-preview00007": { - "dependencies": { - "BytecodeAlliance.Componentize.DotNet.WitBindgen": "0.4.0-preview00007", - "Microsoft.DotNet.ILCompiler.LLVM": "10.0.0-alpha.1.24525.6", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "10.0.0-alpha.1.24525.6" - } - }, - "BytecodeAlliance.Componentize.DotNet.WitBindgen/0.4.0-preview00007": {}, - "Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "dependencies": { - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM": "10.0.0-alpha.1.24525.6" - } - }, - "Microsoft.NET.ILLink.Tasks/8.0.10": {}, - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": {}, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": {} - } - }, - "libraries": { - "dotnet-guest-test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BytecodeAlliance.Componentize.DotNet.Wasm.SDK/0.4.0-preview00007": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEF9LXM3Y6CjJ+MNq2Kxe064HUNeZd9bPGxNYvGJS6YWnBtsPF5xPWexoXOO8nZaRxfy2EePNBIni5/7dp1ACw==", - "path": "bytecodealliance.componentize.dotnet.wasm.sdk/0.4.0-preview00007", - "hashPath": "bytecodealliance.componentize.dotnet.wasm.sdk.0.4.0-preview00007.nupkg.sha512" - }, - "BytecodeAlliance.Componentize.DotNet.WitBindgen/0.4.0-preview00007": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pSVjm0WVc7OAd8NSo0PUtaWNYIYdWToI48LodgmOvj8U755JHdXqQIgwZxDOEA38KYA8H/g0zgfOD5zPQbH3vA==", - "path": "bytecodealliance.componentize.dotnet.witbindgen/0.4.0-preview00007", - "hashPath": "bytecodealliance.componentize.dotnet.witbindgen.0.4.0-preview00007.nupkg.sha512" - }, - "Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7Xgtsv7rVZd/c+roCF2kzuut+XkJZ4Hig+7Eg90F7BR82+xPXkn0DiY+bLrYXFY27PLQCi8gEHeDzmbtEOtaMA==", - "path": "microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6", - "hashPath": "microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24525.6.nupkg.sha512" - }, - "Microsoft.NET.ILLink.Tasks/8.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew==", - "path": "microsoft.net.illink.tasks/8.0.10", - "hashPath": "microsoft.net.illink.tasks.8.0.10.nupkg.sha512" - }, - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-devgD/lKWF4d/zrr73wjJ8tCyN0AyQMJK/wkPuCllUYcDAIdtAq3TSQQ0YUUPOqNXts+//Als9T+CasvI31V3w==", - "path": "runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6", - "hashPath": "runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24525.6.nupkg.sha512" - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24525.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-L/aiafKFLiCBE0a9JSpziY9V18nyfKkjH0KpHLK38ixBDPGay15WcyaV5vGEO3m1U1WHhfYhpIcruhx3Z8xOGA==", - "path": "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6", - "hashPath": "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24525.6.nupkg.sha512" - } - }, - "runtimes": { - "wasi-wasm": [ - "wasi", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll b/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll deleted file mode 100644 index 4ed08abc3d20b86931c2efc89f9753ca787ba079..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLdyHIF8UN0meat?(?6UNMt#Zp!x^#DEU+uOF7WUb)_OZ*(bPL3=y)*aB^s;yE z9qzre-2sbR(GsLFhzdp;HbqJJ2L8YLS4p#HuycOKg% zfQEmJp2_*{_d4JC&i8%yoO9>E&G%7+h-%Q!pC@_>Pi`X$zCBomxaG3%w$Qg4p5OeG z*#G?I#8J!FbDo>=jI5qA9LEjxq}08lt|?<{)-+xbnx2^?+AktB^i=%i z(rmBL<$9CoBWeYwuE^DT@zl{r&{?7bYDK@9!TzhZ3$FpNZuHkfqy`r4mF4TTQ%F~pe4BO$TU+<0*cPJefwB+7unArGP||3u>u%BR;8`E% zNt(JgdT=tQeS|G^ZeVaJfd4*#+v`hfVLJ$a$qvj{*xz1AZJ1b=*mG4$r^AhmLsQ zSx&}hjaN~CTw@)F;&dYt!R6nv_t4Y?o<~7{9+P*B*=`avH<04+uODq{fGzr`807ll zIzSYt9-Y~1!p?j+S}rrDxno`G$-3N`2e-;k%z^f##(aLczbK4I9bKa_{3i8AE}|1q zucOy#NvosFwLb%91jDF;TNHd+!Cw;df2G}rvHJwW zZCo_b3n8^R!qh7v^^mp~ROew1L_p09UGm)F= zC*ZWw&&i|(mBj*JE8Rg`DMhxn72JEY7&Vb8V$@Dqz>RbYu!BAa*hRkp9Hc)2UPEsH zj*|xceTp9k9HhH2TU^1%$cN1z!uoB1chNCG=DbSx(sAty!Ejl8hK96<0rzWBygA2J zeEChh616r%M<@+0NB1k*93ERD48Nq^47f2eFEpG}5k$TLBQ)$h^?*&FBFIG)nVvu; z*DQ0Ms@u$W~HCEgChg-erM zOXO_c39PK7!=4q${gxx?pbIc(*m;>KYH18k(pe1IXCY%0r> zVcdd|sS-`dWImJOAr} zdcNg4tA$fe+V!$V0HI;8(u&Je9xE-(NH1&oZ*2h)N?Vz{r)*Rvn3d_ck(NPW7P0p$ z{Bbv%vuve2D{W&*VO8>y*E1fnmI^8ZO98=reCeqOruv=Iw~iBpsk zZt*xJBx-)tpI%VN6eI2enQq|7peK`;e$W#D#7x_!>S9FM*r9nUrDQb4IV(>p)3z*f zM!ifvE1h6+DJ64CCzc9aFPwYQD`HbVV-h`dd%`j@4qgf?<(F8cl}sVvo|}tHZ_!H0 zRpMesrB{|0%NYyDi&s%EIUcJNlfPn>F{xffpOE2{5zutG@ass74ne8qrDA0%>bwvPGf&jMg&x{@O^rh(_18ZP41O zU1)W+THU6`dQoPyQ?0Iv+D%%!sIAwa1bZ#mQCnJC6fJ7%wP>`4U^@Ebb@Lx>d!g}a zTqMNunV4AqWSGlRT&hDID={nKFIRTAzOr_^^{{w%@4{6PzixdTduiU2yB(PiJj3qR zXYxtgO6`+{gu5V}-O0Ye^p5n-bbr6Oqt6&L){2DI8egz-u!QXp`9!q}EF>C@HdA@M z?YO^G2!X|FH9F2a27*@^jdX(5$t(a772$F50lqyYv~`C)BZn=xT`N zw3ZhVZ)u!#081;r2mvH@@ZW4!?0jF>WR++iZLy{_X6UzyITe9DQQ_ z<7;2rbjugmMsHS{meFe(fiZ7-)}rj4kc;@F%<+!YJDc}|Uc2BKJ$&-^_$klA4&`Lj zuGhON(7kT*R*c8l*ozGk>FC8UOO0Kv9Lt$WieEoEuw#fq&y3eX&#?My4?lGF_s^cq z{bU#@5>+ydFH;xdQ#akS+fNuw!qd4~6IeaJ00-M6#d=T^$;2z-I zzF+hDo5i~&S0T6J^SUB|J1Bn@tZWk?1*{t6!H$LRUu0JMy?eexYuP&AisHz#lcl$6#3_)WMnkN1!;9E{V49b5%?F09_U~I diff --git a/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb b/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb deleted file mode 100644 index b660966dcf3c435fb63960582f32718da833451f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11580 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 H1JC~lXKHGn diff --git a/dotnet-guest-test/componentize-dotnet b/dotnet-guest-test/componentize-dotnet deleted file mode 160000 index 5f9e579..0000000 --- a/dotnet-guest-test/componentize-dotnet +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5f9e57971ca8ca4e454cd654ebe79a39ed8844e7 diff --git a/dotnet-guest-test/dotnet-guest-test.csproj b/dotnet-guest-test/dotnet-guest-test.csproj index 87f096d..e57796c 100644 --- a/dotnet-guest-test/dotnet-guest-test.csproj +++ b/dotnet-guest-test/dotnet-guest-test.csproj @@ -15,16 +15,23 @@ true + + - + - + - + + + diff --git a/dotnet-guest-test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/dotnet-guest-test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index dca70aa..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfo.cs b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfo.cs deleted file mode 100644 index f7b459f..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a2e1522af2dcf57ca6922200649e6f3dd8ed127b")] -[assembly: System.Reflection.AssemblyProductAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyTitleAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfoInputs.cache b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfoInputs.cache deleted file mode 100644 index aeb8c95..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6c0b00465c49af6857c17c5998fa22b35c628c23cb6fa9f4684bfb3119086f7d diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 84876bb..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = dotnet_guest_test -build_property.ProjectDir = /media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GlobalUsings.g.cs b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.assets.cache b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.assets.cache deleted file mode 100644 index 5467ccd262cbec9dfe39dbc7645fc56739db29c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1109 zcmc&zJ#Q015WNtGgs&8dprHs29p1GqCqYnzBnIme+d5$sO0?`v?3MT9w7X|x7xa`- zB)XJHh#!F{_+iYFBZ)*Tn~FI--AOw$`|iz~Le)>3hxEMt@Fz;-E_KgDSfN7(|fD)bez|)NJ0qcRIN^onOIrbzq zUV|q>a-%XK!4fHlidHKGpE8qKpOGr5)i-OKWQ#J*q?{+HaXtq}w}Ce!tV*4_CSZ4N0*ux9phHG=lA?t zt)q5Gs@NPaRX|2Ump^RP$vj12BroP;RQv<2kUBagvoI7es$gs{VUr+6c;7@UBUTW% z5VsL`5W&v(5aGg&8E(atsj-SDtDU?FJ~=mcoX%8d{c8RZx)}%l;CjcGI!wX84RyKb zxc0X&>#@Uikb(;@#|=0Z8q%d#OgdP34bI3Rq@_1Dhf>0P|J@8#-WN_|f1DOJ_`+$$ OUXQ|*TspXBO1}W;8cO#7 diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.CoreCompileInputs.cache b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.CoreCompileInputs.cache deleted file mode 100644 index cbadadd..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -ff31f9c86923ea1dac7129c96e7e8f4941940d6b9cefbe69a0634e942bf87002 diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.FileListAbsolute.txt b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.FileListAbsolute.txt deleted file mode 100644 index 9ecbb96..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/lastbuild.txt -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/Example.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_component_type.wit -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfoInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.AssemblyInfo.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.csproj.CoreCompileInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.deps.json -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/dotnet-guest-test.pdb -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/refint/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.pdb -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/ref/dotnet-guest-test.dll diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.dll deleted file mode 100644 index 4877a5c0773828a32e17662d79548605f731dde4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLdu(J?8UN0mKBkWyTFSoMRqj%jE!%e5PItRo)`dQIDf?*Y%yt(-?B1DsX72| zK*K*q&*c2>`5xyx-}%mW&pCIF+hLSj?g!nUfA}u zIQ+u4#3{?ybDo>=jI5qA9LEjxq}08lt|_DI)-_*QGCea%bXbIF$BBKv zDv$OGU7@##exf#T8j9S%M)A~9M^IU!1GS>x%wYdjSpkC2B}6Abp^UH{Hm07H2Q%qB z>`rrIgy_2*h>OcfqE_%8>Lp5CEPE$fCkofd!=SIPp`(FZ3PAre0)R~UR`MH^Dmu~0 zsONhrP|CLvG8UE^G(kFWZ6n8awO^+u8o^b}oUP`eIDFFnmLE zLrXU`?i?cT5IT2l!JsOBWAPitL}?{>T^Dyn`=f*Xg9GdcEZD%0!=cWP5xt4$pW#Di zJn$?hu;HY68zwpdZBGony9}1kDAcIR4wmTAE;s{w@YN ze>e{i1!_cP_PSDKJ{+y28Pi-bFZEv;1}$j~bcOahFe4bl3b!kKR^iLU{NHHzq3exdwU;3MVTkcf#qo*T zFRAwPWQ3ZjP8);%O-l2#3NHX7bOf60Uva}Iu0b1pp2k9>mIh`@ifXJ-XCND=Mpk34{1l?96G64f0V5>51DMV$?w z*TzK)y;!2Qg_wG!M14U!2&!uvp_~nG3>^lQQ`7^<&Q4JGmMEQW6r2}=eg~H{`V(+< zJ3urw%#&?#5%8+m;&!*v7hq_mocV|rLQI>eJtXkDaU3=So9Sv`8x1HNRye9~O5u$P zZ&GLh*VApl1}Xpr-LKk@0=LjtDyY-f6#tCEdla^+b!k=W(hAN&`WAg!o1^FGxzNq@ zBXHX2XJpcXTEzmejqacwlpCXQR<*9a0{IScGBm7-Sl(dAiW0MM}Gm1 zlLq}miXR6K(%l#>uJB9b!{+y3{Wjp;bQ;K zc%5p?PqAjT=Ua}BDe-FF7_=_dJ5VvxN?%p`Kr8J~dX(#@+yKo=KW_&oWAx!8u9>&x zwKRQ*CTC|UWhAZnoa+bkrwuvHTc}zn>mRUeIVU~e za-FrpDJSiEStEeZu-9nCWh#%E7G|WEwfwiYfC#0nOx{yAssqf*blgbGpfHQr`&It9 zo6T9aQl6Ezv7}lx^0L=69#$hKH8Q4wg+~E9jJ9 z=SX7r41gx-xQ`#A9y~MTf~RB4TB|cjv-qvj+L1ud3Dj%QCq)J&$)b7KcClv$Xc@3> zV#vN*ejUj@zVC)_-udvxe?-r;Q=KkEIHZ%PN29%+$%twWaI>D9AFK~Gig0*+`zEb} zI)v6xuQhCKZWI+p2i5DEsNbq}i26niO0XBfjv9$X6fNo+wQ#tOU^@KNb@O+&zu0^Y zE)rtpd{nG_vb2`vxYUL^T4q+mU&-tqeRb~k=%wV{zZX|U{Cf0p?4@~6?ssH9@C>_0 zpUEd}D|JW~67GU@_9y!X)4S7q(gOqL?tWv?ST7PsfiXNRzjJuv3&E?v>_1Y)_JC zJx?SaX`XZfuQ20UP7pFo^YS&^b=6}F@;aVeJu5Myv=AWDU8;DZad529s!%Pp6_aZ6&{OjeiK_(c3WeX*SLT6XNo^AA3| z`I-A3WE*{1X<9~~X#~c+=~;`iZ$d8OlQPFUQr~Re5BltaXY}&P+v}%13p znn3rt$y?DMXJa2WNG!)%m1xdPQvCYS*zO@J`SaN8C4VsI$(dhHz0`iX{*S%)KfU!Q zrEgT8$sf3_b8BrWf6Epn^T?bD+dg7g4rTom(nzZPnWY!D!^Xv-S!?irj>F$IMEL$) zSv_@?uhjoGeAeUt4o-{^nZ;Wiv(VlJoTE7Q-8pwB@)kF8Zy{GWp@593vB3{Vt)mn)CG0s0&< z_Q%81K#Zz0c=s`*I7e;#h_K1S)?wJmC@UP59OA)I&Cn@~KMW3h?_nM8qCWV)+Q!8Ztj4b!e#S7@0osjc3{)CuV&pV9 zd(^FC2wz<+i>a&`!gu>HdJI8h5Sk|bDd1bq0OWg+Ph9q@^&7>S`H*G7wGlxb8NPZY btA6lWzE4Fj{%82NYu_h(|2Okr6@h;NVO`*w diff --git a/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.pdb b/dotnet-guest-test/obj/Debug/net8.0/dotnet-guest-test.pdb deleted file mode 100644 index 13358b478e37e13404a255d81bdcd26aa0980cc4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11560 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 y5=}@l9VgL}2fxxCNywDJx{8Pj8IeOsaCS7g- diff --git a/dotnet-guest-test/obj/Debug/net8.0/ref/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/ref/dotnet-guest-test.dll deleted file mode 100644 index 14c3316fe6bf0d5666b9613f474e27177f908085..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLU2Ggz6+Sa-J8LHncG84Y3GD=j{*YwYpV+ZUL+scaviY$c@5Z6+gFU-*cQbf) zW;-+MctI*Is5~?eRHBNYRYfWS5<*C=R7D{YKT;~e1LcjP3Q&1~7hWP&AbuVQ-?_81 zv$msBP#>VmUElAXpL@?e_uM;Y?)dBz&r^bkx=`=jA-aK<%ech%hE=GyK6rC0z25ug z-W$r9H}@7VTE15I+^T2Pw6ftiZlINf<~1D6av`)q4)Rq?Q5By%@LhZx~SZ^ z`Fu3n@9E>(W+g?m1(IYaEuBU?j;f&&4aimv{bm9CFUwV6i%HPpv)q;c;XzYs;1iUb?1%z*-`|LCG>sbX*U_ zN&xQSW&i{-COv37iU#j>&-coZ$u%s3;23N}?I`20pnJl0(UC(-tEfEhPSlPvj(I!S zd*p{W0>63u+Vyj}znyyJfj5r4e(SYAeTbKOZ)talz!c|I6wXa5byIPi=xQI4!ovTe z^xgLbI$k(+TxnV0JhOaAPwClIHa*4$yUFGT`Dy5BA{*^5kavd)foC~YpH-vC`JBFn z&KKx0(3~TOK6^eth4u{iB68Nyaoa6{=K@x_@XpmlFAw^MlI48H{(ls86Do_@4^E*h z-;RngQqO!;xgXbv=RRB!5tU^`J@l+{EYU+pRmN{pf8ryw0PlO~*HZo#J*D>0KJ|CN zX@&7NF>aCccO?EqN`9$2u#iz0O}YuJNek!HpP~P^5{&Ok$rHr%k0t#BI+p089#zAf z(R(b6^Z-3gS|SJE`8Pn<)iKJ0Qt1_Nqr{waehyS9 zrrCd%yc}+>qcuGR4Q!thr4E+UVIx?LWk6Ovvl3r{>Nw$O|6Y1~5H7)kXM)zdU5{DvJY zX6UiAuGz4~XK3a$<>uz7Y?Q2py6XoEmkhs_TdBKVFkzaM&#f4>x-Blao^4X0=?9{w z&o!LDstKBQ9YOPk-4MlQUC?=FS$I~(GD^0X#Qk+5K&~n^0znsGGhbtyXDnyQsCKBP zM5$4&@{qXubi=mSN+x_?)Jk@>@C!Df~hQ_MAKPL=x#<82R?7UMm9E9JT zG;AATS*wj~u$zX{F|4)UQXW_(%SKpYqn-#Fo+FO|E%RZZqETIURP6>09;C=*GP#A69fP~n?X+Flj{Fug3Kp(*X~_8u_)O+lJOa@pECMJ=rIkD%;P-w} z-Fd+?>d0TYm9nVwAu3+<+)F<9+r&AWx)_ftv`e4P6(?O!Ow{WKqBSmKk+8D$zIN)F zvi!PjG^de?k~~5~4`lkm4dt;VUXY_PTRMyvQC1;cGW(5;NDpT+MkQmGE5nD& z#>iMElS!pU4vmSCO4c+-g_+JAE)nhE)fBe&<($B4&bpQpBn;DhaD%iz&hOB7vz~w` zn-#oqP!w=jJl_YTs{PKF0=#9{meJOIn5A<}k2AHgMEB-Uvw%QO+4fn(a;WB)5mh0d zbJpJZ1Z=FIW~0IX2?^gEiFOgKu60Mol~Q++bH9_QpIam{Wx!d&^daCpZXXN49L<5s z<3BCa;Pb!};eTD|M_sr78Quuwu3=2r9%CaYd>>!8Wi$nu0;>jjuw&tSLcpd&6>@n9 z?USR5&>E2X&>Iw>p9?N5uXeowqc~xZd(b#ky^E!*vQG-@4u6NJ#4*79+c0(#_G(m@ zb2PCc1DufNO=tqx6u^V9+yLcEI%rY&j*&JZ@28}^EPbh?XYA|yv6Vs!P}=^_!XWTnUKt53{i8!k-3}F#n@2t%d-u%zUq#?w=ighJ diff --git a/dotnet-guest-test/obj/Debug/net8.0/refint/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/refint/dotnet-guest-test.dll deleted file mode 100644 index 14c3316fe6bf0d5666b9613f474e27177f908085..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLU2Ggz6+Sa-J8LHncG84Y3GD=j{*YwYpV+ZUL+scaviY$c@5Z6+gFU-*cQbf) zW;-+MctI*Is5~?eRHBNYRYfWS5<*C=R7D{YKT;~e1LcjP3Q&1~7hWP&AbuVQ-?_81 zv$msBP#>VmUElAXpL@?e_uM;Y?)dBz&r^bkx=`=jA-aK<%ech%hE=GyK6rC0z25ug z-W$r9H}@7VTE15I+^T2Pw6ftiZlINf<~1D6av`)q4)Rq?Q5By%@LhZx~SZ^ z`Fu3n@9E>(W+g?m1(IYaEuBU?j;f&&4aimv{bm9CFUwV6i%HPpv)q;c;XzYs;1iUb?1%z*-`|LCG>sbX*U_ zN&xQSW&i{-COv37iU#j>&-coZ$u%s3;23N}?I`20pnJl0(UC(-tEfEhPSlPvj(I!S zd*p{W0>63u+Vyj}znyyJfj5r4e(SYAeTbKOZ)talz!c|I6wXa5byIPi=xQI4!ovTe z^xgLbI$k(+TxnV0JhOaAPwClIHa*4$yUFGT`Dy5BA{*^5kavd)foC~YpH-vC`JBFn z&KKx0(3~TOK6^eth4u{iB68Nyaoa6{=K@x_@XpmlFAw^MlI48H{(ls86Do_@4^E*h z-;RngQqO!;xgXbv=RRB!5tU^`J@l+{EYU+pRmN{pf8ryw0PlO~*HZo#J*D>0KJ|CN zX@&7NF>aCccO?EqN`9$2u#iz0O}YuJNek!HpP~P^5{&Ok$rHr%k0t#BI+p089#zAf z(R(b6^Z-3gS|SJE`8Pn<)iKJ0Qt1_Nqr{waehyS9 zrrCd%yc}+>qcuGR4Q!thr4E+UVIx?LWk6Ovvl3r{>Nw$O|6Y1~5H7)kXM)zdU5{DvJY zX6UiAuGz4~XK3a$<>uz7Y?Q2py6XoEmkhs_TdBKVFkzaM&#f4>x-Blao^4X0=?9{w z&o!LDstKBQ9YOPk-4MlQUC?=FS$I~(GD^0X#Qk+5K&~n^0znsGGhbtyXDnyQsCKBP zM5$4&@{qXubi=mSN+x_?)Jk@>@C!Df~hQ_MAKPL=x#<82R?7UMm9E9JT zG;AATS*wj~u$zX{F|4)UQXW_(%SKpYqn-#Fo+FO|E%RZZqETIURP6>09;C=*GP#A69fP~n?X+Flj{Fug3Kp(*X~_8u_)O+lJOa@pECMJ=rIkD%;P-w} z-Fd+?>d0TYm9nVwAu3+<+)F<9+r&AWx)_ftv`e4P6(?O!Ow{WKqBSmKk+8D$zIN)F zvi!PjG^de?k~~5~4`lkm4dt;VUXY_PTRMyvQC1;cGW(5;NDpT+MkQmGE5nD& z#>iMElS!pU4vmSCO4c+-g_+JAE)nhE)fBe&<($B4&bpQpBn;DhaD%iz&hOB7vz~w` zn-#oqP!w=jJl_YTs{PKF0=#9{meJOIn5A<}k2AHgMEB-Uvw%QO+4fn(a;WB)5mh0d zbJpJZ1Z=FIW~0IX2?^gEiFOgKu60Mol~Q++bH9_QpIam{Wx!d&^daCpZXXN49L<5s z<3BCa;Pb!};eTD|M_sr78Quuwu3=2r9%CaYd>>!8Wi$nu0;>jjuw&tSLcpd&6>@n9 z?USR5&>E2X&>Iw>p9?N5uXeowqc~xZd(b#ky^E!*vQG-@4u6NJ#4*79+c0(#_G(m@ zb2PCc1DufNO=tqx6u^V9+yLcEI%rY&j*&JZ@28}^EPbh?XYA|yv6Vs!P}=^_!XWTnUKt53{i8!k-3}F#n@2t%d-u%zUq#?w=ighJ diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index dca70aa..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs deleted file mode 100644 index f7b459f..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a2e1522af2dcf57ca6922200649e6f3dd8ed127b")] -[assembly: System.Reflection.AssemblyProductAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyTitleAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache deleted file mode 100644 index aeb8c95..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6c0b00465c49af6857c17c5998fa22b35c628c23cb6fa9f4684bfb3119086f7d diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f8b1e19..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.EnableAotAnalyzer = -build_property.EnableSingleFileAnalyzer = -build_property.EnableTrimAnalyzer = true -build_property.IncludeAllContentForSelfExtract = -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = true -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = dotnet-guest-test -build_property.ProjectDir = /media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = false -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.assets.cache b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.assets.cache deleted file mode 100644 index b70819670ccf855a1f64b8e00f669cbd2b57069c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1635 zcmc&!&2Cab6sAgB>QAjUQR7DY0L%c=>atWUxh*B6kh;^1_a0!v+?ku1ftJ32iD_cG zGBI&ucmrR-7#A*F_yRtM8_&osGzx+X-Sf_ z_iul?|K-EWg;ytU*o(%}=hXYP+|$!{ACrj$z7ucfXiJ4a4KS%f-ljx$nqX#qu2yp>ZbY~9XzF$O~{@;{qs-t~~v*b!n zN>j~D?0{9lWt&)L+J-(vMzfi*6nf>dvwNfh*ycx7t-3tGPMo94b=6TdkC6W|hka#4 zPZr`nPf7u^n0OZOCcV|O;A1%jAvlvhU~Q-a3DWXoAVp;>D7q)igrrv7b)o2N9^7tm z88ksUpL-+e#Sy)-d(KZ8m&*rx&gjm_sPec@Vyf$|CGI+>JD5`lLijsrF2>Ki@p~gyJ%hVVaGzVzD?)=y2)=4xZCTNdQ#paaw;c!V$*h@bEDirE% diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache deleted file mode 100644 index 16b97bf..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -8f1e8a538fb97e667ff2f5a357c78e9d77c46a316388e3b58570819e63e98093 diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt deleted file mode 100644 index 662802d..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.deps.json -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/bin/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/lastbuild.txt -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/Example.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_component_type.wit -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/refint/dotnet-guest-test.dll -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/ref/dotnet-guest-test.dll diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll deleted file mode 100644 index 4ed08abc3d20b86931c2efc89f9753ca787ba079..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLdyHIF8UN0meat?(?6UNMt#Zp!x^#DEU+uOF7WUb)_OZ*(bPL3=y)*aB^s;yE z9qzre-2sbR(GsLFhzdp;HbqJJ2L8YLS4p#HuycOKg% zfQEmJp2_*{_d4JC&i8%yoO9>E&G%7+h-%Q!pC@_>Pi`X$zCBomxaG3%w$Qg4p5OeG z*#G?I#8J!FbDo>=jI5qA9LEjxq}08lt|?<{)-+xbnx2^?+AktB^i=%i z(rmBL<$9CoBWeYwuE^DT@zl{r&{?7bYDK@9!TzhZ3$FpNZuHkfqy`r4mF4TTQ%F~pe4BO$TU+<0*cPJefwB+7unArGP||3u>u%BR;8`E% zNt(JgdT=tQeS|G^ZeVaJfd4*#+v`hfVLJ$a$qvj{*xz1AZJ1b=*mG4$r^AhmLsQ zSx&}hjaN~CTw@)F;&dYt!R6nv_t4Y?o<~7{9+P*B*=`avH<04+uODq{fGzr`807ll zIzSYt9-Y~1!p?j+S}rrDxno`G$-3N`2e-;k%z^f##(aLczbK4I9bKa_{3i8AE}|1q zucOy#NvosFwLb%91jDF;TNHd+!Cw;df2G}rvHJwW zZCo_b3n8^R!qh7v^^mp~ROew1L_p09UGm)F= zC*ZWw&&i|(mBj*JE8Rg`DMhxn72JEY7&Vb8V$@Dqz>RbYu!BAa*hRkp9Hc)2UPEsH zj*|xceTp9k9HhH2TU^1%$cN1z!uoB1chNCG=DbSx(sAty!Ejl8hK96<0rzWBygA2J zeEChh616r%M<@+0NB1k*93ERD48Nq^47f2eFEpG}5k$TLBQ)$h^?*&FBFIG)nVvu; z*DQ0Ms@u$W~HCEgChg-erM zOXO_c39PK7!=4q${gxx?pbIc(*m;>KYH18k(pe1IXCY%0r> zVcdd|sS-`dWImJOAr} zdcNg4tA$fe+V!$V0HI;8(u&Je9xE-(NH1&oZ*2h)N?Vz{r)*Rvn3d_ck(NPW7P0p$ z{Bbv%vuve2D{W&*VO8>y*E1fnmI^8ZO98=reCeqOruv=Iw~iBpsk zZt*xJBx-)tpI%VN6eI2enQq|7peK`;e$W#D#7x_!>S9FM*r9nUrDQb4IV(>p)3z*f zM!ifvE1h6+DJ64CCzc9aFPwYQD`HbVV-h`dd%`j@4qgf?<(F8cl}sVvo|}tHZ_!H0 zRpMesrB{|0%NYyDi&s%EIUcJNlfPn>F{xffpOE2{5zutG@ass74ne8qrDA0%>bwvPGf&jMg&x{@O^rh(_18ZP41O zU1)W+THU6`dQoPyQ?0Iv+D%%!sIAwa1bZ#mQCnJC6fJ7%wP>`4U^@Ebb@Lx>d!g}a zTqMNunV4AqWSGlRT&hDID={nKFIRTAzOr_^^{{w%@4{6PzixdTduiU2yB(PiJj3qR zXYxtgO6`+{gu5V}-O0Ye^p5n-bbr6Oqt6&L){2DI8egz-u!QXp`9!q}EF>C@HdA@M z?YO^G2!X|FH9F2a27*@^jdX(5$t(a772$F50lqyYv~`C)BZn=xT`N zw3ZhVZ)u!#081;r2mvH@@ZW4!?0jF>WR++iZLy{_X6UzyITe9DQQ_ z<7;2rbjugmMsHS{meFe(fiZ7-)}rj4kc;@F%<+!YJDc}|Uc2BKJ$&-^_$klA4&`Lj zuGhON(7kT*R*c8l*ozGk>FC8UOO0Kv9Lt$WieEoEuw#fq&y3eX&#?My4?lGF_s^cq z{bU#@5>+ydFH;xdQ#akS+fNuw!qd4~6IeaJ00-M6#d=T^$;2z-I zzF+hDo5i~&S0T6J^SUB|J1Bn@tZWk?1*{t6!H$LRUu0JMy?eexYuP&AisHz#lcl$6#3_)WMnkN1!;9E{V49b5%?F09_U~I diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.pdb deleted file mode 100644 index b660966dcf3c435fb63960582f32718da833451f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11580 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 H1JC~lXKHGn diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp deleted file mode 100644 index 3b9b1a6..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp +++ /dev/null @@ -1,234 +0,0 @@ -obj/Debug/net8.0/wasi-wasm/dotnet-guest-test.dll --o:obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.o --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.CoreLib.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.DisabledReflection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.Reflection.Execution.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.StackTraceMetadata.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.TypeLoader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.CSharp.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.VisualBasic.Core.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.VisualBasic.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.Win32.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.Win32.Registry.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/mscorlib.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/netstandard.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.AppContext.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Buffers.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Concurrent.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Immutable.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.NonGeneric.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Specialized.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.Annotations.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.DataAnnotations.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.EventBasedAsync.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.TypeConverter.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Configuration.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Console.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Core.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.Common.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.DataSetExtensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Contracts.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Debug.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.DiagnosticSource.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.FileVersionInfo.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Process.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.StackTrace.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.TextWriterTraceListener.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Tools.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.TraceSource.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Tracing.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Drawing.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Drawing.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Dynamic.Runtime.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Formats.Asn1.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Formats.Tar.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.Calendars.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.Brotli.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.FileSystem.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.ZipFile.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.DriveInfo.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.Watcher.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.IsolatedStorage.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.MemoryMappedFiles.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipelines.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipes.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipes.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.UnmanagedMemoryStream.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Expressions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Parallel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Queryable.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Memory.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Http.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Http.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.HttpListener.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Mail.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.NameResolution.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.NetworkInformation.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Ping.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Quic.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Requests.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Security.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.ServicePoint.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Sockets.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebClient.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebHeaderCollection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebProxy.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebSockets.Client.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebSockets.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Numerics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Numerics.Vectors.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ObjectModel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.DataContractSerialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Uri.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Xml.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.DispatchProxy.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.ILGeneration.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.Lightweight.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Metadata.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.TypeExtensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.Reader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.ResourceManager.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.Writer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.CompilerServices.Unsafe.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.CompilerServices.VisualC.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Handles.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.JavaScript.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.RuntimeInformation.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Intrinsics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Loader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Numerics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Formatters.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Claims.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Algorithms.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Cng.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Csp.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Encoding.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.OpenSsl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.X509Certificates.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Principal.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Principal.Windows.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.SecureString.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ServiceModel.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ServiceProcess.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.CodePages.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encodings.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.RegularExpressions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Channels.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Overlapped.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Dataflow.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Parallel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Thread.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.ThreadPool.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Timer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Transactions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Transactions.Local.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ValueTuple.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Web.HttpUtility.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Windows.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.ReaderWriter.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.Serialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XmlDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XmlSerializer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XPath.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XPath.XDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/WindowsBase.dll ---targetos:wasi ---targetarch:wasm --g ---nativelib ---exportsfile:obj/Debug/net8.0/wasi-wasm/native/dotnet-guest-test.exports ---export-unmanaged-entrypoints ---initassembly:System.Private.CoreLib ---initassembly:System.Private.StackTraceMetadata ---initassembly:System.Private.TypeLoader ---initassembly:System.Private.Reflection.Execution ---directpinvoke:libSystem.Globalization.Native ---directpinvoke:libSystem.Native ---feature:System.Linq.Expressions.CanEmitObjectArrayDelegate=false ---feature:Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability=true ---feature:System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization=false ---feature:System.Diagnostics.Tracing.EventSource.IsSupported=false ---feature:System.Globalization.Invariant=true ---feature:System.Globalization.PredefinedCulturesOnly=true ---feature:System.Resources.ResourceManager.AllowCustomResourceTypes=false ---feature:System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported=false ---feature:System.Runtime.InteropServices.BuiltInComInterop.IsSupported=false ---feature:System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting=false ---feature:System.Runtime.InteropServices.EnableCppCLIHostActivation=false ---feature:System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop=false ---feature:System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization=false ---feature:System.StartupHookProvider.IsSupported=false ---feature:System.Text.Encoding.EnableUnsafeUTF7Encoding=false ---feature:System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault=false ---feature:System.Threading.Thread.EnableAutoreleasePool=false ---runtimeknob:System.Linq.Expressions.CanEmitObjectArrayDelegate=false ---runtimeknob:Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability=true ---runtimeknob:System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization=false ---runtimeknob:System.Diagnostics.Tracing.EventSource.IsSupported=false ---runtimeknob:System.Globalization.Invariant=true ---runtimeknob:System.Globalization.PredefinedCulturesOnly=true ---runtimeknob:System.Resources.ResourceManager.AllowCustomResourceTypes=false ---runtimeknob:System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported=false ---runtimeknob:System.Runtime.InteropServices.BuiltInComInterop.IsSupported=false ---runtimeknob:System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting=false ---runtimeknob:System.Runtime.InteropServices.EnableCppCLIHostActivation=false ---runtimeknob:System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop=false ---runtimeknob:System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization=false ---runtimeknob:System.StartupHookProvider.IsSupported=false ---runtimeknob:System.Text.Encoding.EnableUnsafeUTF7Encoding=false ---runtimeknob:System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault=false ---runtimeknob:System.Threading.Thread.EnableAutoreleasePool=false ---runtimeknob:RUNTIME_IDENTIFIER=wasi-wasm ---stacktracedata ---scanreflection ---nowarn:"1701;1702;IL2121;1701;1702" ---warnaserr:";NU1605;SYSLIB0011" ---singlewarn ---nosinglewarnassembly:dotnet-guest-test ---resilient ---generateunmanagedentrypoints:System.Private.CoreLib ---codegenopt:LlvmExceptionHandlingModel=emulated ---codegenopt:Target=wasm32-unknown-wasip2 ---wasm-global-base:1024 ---feature:System.Diagnostics.Debugger.IsSupported=false diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/ref/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/ref/dotnet-guest-test.dll deleted file mode 100644 index 14c3316fe6bf0d5666b9613f474e27177f908085..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLU2Ggz6+Sa-J8LHncG84Y3GD=j{*YwYpV+ZUL+scaviY$c@5Z6+gFU-*cQbf) zW;-+MctI*Is5~?eRHBNYRYfWS5<*C=R7D{YKT;~e1LcjP3Q&1~7hWP&AbuVQ-?_81 zv$msBP#>VmUElAXpL@?e_uM;Y?)dBz&r^bkx=`=jA-aK<%ech%hE=GyK6rC0z25ug z-W$r9H}@7VTE15I+^T2Pw6ftiZlINf<~1D6av`)q4)Rq?Q5By%@LhZx~SZ^ z`Fu3n@9E>(W+g?m1(IYaEuBU?j;f&&4aimv{bm9CFUwV6i%HPpv)q;c;XzYs;1iUb?1%z*-`|LCG>sbX*U_ zN&xQSW&i{-COv37iU#j>&-coZ$u%s3;23N}?I`20pnJl0(UC(-tEfEhPSlPvj(I!S zd*p{W0>63u+Vyj}znyyJfj5r4e(SYAeTbKOZ)talz!c|I6wXa5byIPi=xQI4!ovTe z^xgLbI$k(+TxnV0JhOaAPwClIHa*4$yUFGT`Dy5BA{*^5kavd)foC~YpH-vC`JBFn z&KKx0(3~TOK6^eth4u{iB68Nyaoa6{=K@x_@XpmlFAw^MlI48H{(ls86Do_@4^E*h z-;RngQqO!;xgXbv=RRB!5tU^`J@l+{EYU+pRmN{pf8ryw0PlO~*HZo#J*D>0KJ|CN zX@&7NF>aCccO?EqN`9$2u#iz0O}YuJNek!HpP~P^5{&Ok$rHr%k0t#BI+p089#zAf z(R(b6^Z-3gS|SJE`8Pn<)iKJ0Qt1_Nqr{waehyS9 zrrCd%yc}+>qcuGR4Q!thr4E+UVIx?LWk6Ovvl3r{>Nw$O|6Y1~5H7)kXM)zdU5{DvJY zX6UiAuGz4~XK3a$<>uz7Y?Q2py6XoEmkhs_TdBKVFkzaM&#f4>x-Blao^4X0=?9{w z&o!LDstKBQ9YOPk-4MlQUC?=FS$I~(GD^0X#Qk+5K&~n^0znsGGhbtyXDnyQsCKBP zM5$4&@{qXubi=mSN+x_?)Jk@>@C!Df~hQ_MAKPL=x#<82R?7UMm9E9JT zG;AATS*wj~u$zX{F|4)UQXW_(%SKpYqn-#Fo+FO|E%RZZqETIURP6>09;C=*GP#A69fP~n?X+Flj{Fug3Kp(*X~_8u_)O+lJOa@pECMJ=rIkD%;P-w} z-Fd+?>d0TYm9nVwAu3+<+)F<9+r&AWx)_ftv`e4P6(?O!Ow{WKqBSmKk+8D$zIN)F zvi!PjG^de?k~~5~4`lkm4dt;VUXY_PTRMyvQC1;cGW(5;NDpT+MkQmGE5nD& z#>iMElS!pU4vmSCO4c+-g_+JAE)nhE)fBe&<($B4&bpQpBn;DhaD%iz&hOB7vz~w` zn-#oqP!w=jJl_YTs{PKF0=#9{meJOIn5A<}k2AHgMEB-Uvw%QO+4fn(a;WB)5mh0d zbJpJZ1Z=FIW~0IX2?^gEiFOgKu60Mol~Q++bH9_QpIam{Wx!d&^daCpZXXN49L<5s z<3BCa;Pb!};eTD|M_sr78Quuwu3=2r9%CaYd>>!8Wi$nu0;>jjuw&tSLcpd&6>@n9 z?USR5&>E2X&>Iw>p9?N5uXeowqc~xZd(b#ky^E!*vQG-@4u6NJ#4*79+c0(#_G(m@ zb2PCc1DufNO=tqx6u^V9+yLcEI%rY&j*&JZ@28}^EPbh?XYA|yv6Vs!P}=^_!XWTnUKt53{i8!k-3}F#n@2t%d-u%zUq#?w=ighJ diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/refint/dotnet-guest-test.dll b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/refint/dotnet-guest-test.dll deleted file mode 100644 index 14c3316fe6bf0d5666b9613f474e27177f908085..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6144 zcmeHLU2Ggz6+Sa-J8LHncG84Y3GD=j{*YwYpV+ZUL+scaviY$c@5Z6+gFU-*cQbf) zW;-+MctI*Is5~?eRHBNYRYfWS5<*C=R7D{YKT;~e1LcjP3Q&1~7hWP&AbuVQ-?_81 zv$msBP#>VmUElAXpL@?e_uM;Y?)dBz&r^bkx=`=jA-aK<%ech%hE=GyK6rC0z25ug z-W$r9H}@7VTE15I+^T2Pw6ftiZlINf<~1D6av`)q4)Rq?Q5By%@LhZx~SZ^ z`Fu3n@9E>(W+g?m1(IYaEuBU?j;f&&4aimv{bm9CFUwV6i%HPpv)q;c;XzYs;1iUb?1%z*-`|LCG>sbX*U_ zN&xQSW&i{-COv37iU#j>&-coZ$u%s3;23N}?I`20pnJl0(UC(-tEfEhPSlPvj(I!S zd*p{W0>63u+Vyj}znyyJfj5r4e(SYAeTbKOZ)talz!c|I6wXa5byIPi=xQI4!ovTe z^xgLbI$k(+TxnV0JhOaAPwClIHa*4$yUFGT`Dy5BA{*^5kavd)foC~YpH-vC`JBFn z&KKx0(3~TOK6^eth4u{iB68Nyaoa6{=K@x_@XpmlFAw^MlI48H{(ls86Do_@4^E*h z-;RngQqO!;xgXbv=RRB!5tU^`J@l+{EYU+pRmN{pf8ryw0PlO~*HZo#J*D>0KJ|CN zX@&7NF>aCccO?EqN`9$2u#iz0O}YuJNek!HpP~P^5{&Ok$rHr%k0t#BI+p089#zAf z(R(b6^Z-3gS|SJE`8Pn<)iKJ0Qt1_Nqr{waehyS9 zrrCd%yc}+>qcuGR4Q!thr4E+UVIx?LWk6Ovvl3r{>Nw$O|6Y1~5H7)kXM)zdU5{DvJY zX6UiAuGz4~XK3a$<>uz7Y?Q2py6XoEmkhs_TdBKVFkzaM&#f4>x-Blao^4X0=?9{w z&o!LDstKBQ9YOPk-4MlQUC?=FS$I~(GD^0X#Qk+5K&~n^0znsGGhbtyXDnyQsCKBP zM5$4&@{qXubi=mSN+x_?)Jk@>@C!Df~hQ_MAKPL=x#<82R?7UMm9E9JT zG;AATS*wj~u$zX{F|4)UQXW_(%SKpYqn-#Fo+FO|E%RZZqETIURP6>09;C=*GP#A69fP~n?X+Flj{Fug3Kp(*X~_8u_)O+lJOa@pECMJ=rIkD%;P-w} z-Fd+?>d0TYm9nVwAu3+<+)F<9+r&AWx)_ftv`e4P6(?O!Ow{WKqBSmKk+8D$zIN)F zvi!PjG^de?k~~5~4`lkm4dt;VUXY_PTRMyvQC1;cGW(5;NDpT+MkQmGE5nD& z#>iMElS!pU4vmSCO4c+-g_+JAE)nhE)fBe&<($B4&bpQpBn;DhaD%iz&hOB7vz~w` zn-#oqP!w=jJl_YTs{PKF0=#9{meJOIn5A<}k2AHgMEB-Uvw%QO+4fn(a;WB)5mh0d zbJpJZ1Z=FIW~0IX2?^gEiFOgKu60Mol~Q++bH9_QpIam{Wx!d&^daCpZXXN49L<5s z<3BCa;Pb!};eTD|M_sr78Quuwu3=2r9%CaYd>>!8Wi$nu0;>jjuw&tSLcpd&6>@n9 z?USR5&>E2X&>Iw>p9?N5uXeowqc~xZd(b#ky^E!*vQG-@4u6NJ#4*79+c0(#_G(m@ zb2PCc1DufNO=tqx6u^V9+yLcEI%rY&j*&JZ@28}^EPbh?XYA|yv6Vs!P}=^_!XWTnUKt53{i8!k-3}F#n@2t%d-u%zUq#?w=ighJ diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/Example.cs b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/Example.cs deleted file mode 100644 index 4cf3f72..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/Example.cs +++ /dev/null @@ -1,94 +0,0 @@ -// Generated by `wit-bindgen` 0.34.0. DO NOT EDIT! -// -#nullable enable -using System; -using System.Runtime.CompilerServices; -using System.Collections; -using System.Runtime.InteropServices; -using System.Text; -using System.Collections.Generic; -using System.Diagnostics; -using System.Diagnostics.CodeAnalysis; - -namespace ExampleWorld { - - public interface IExampleWorld { - static abstract int Add(int x, int y); - - } - - public readonly struct None {} - - [StructLayout(LayoutKind.Sequential)] - public readonly struct Result - { - public readonly byte Tag; - private readonly object value; - - private Result(byte tag, object value) - { - Tag = tag; - this.value = value; - } - - public static Result ok(Ok ok) - { - return new Result(OK, ok!); - } - - public static Result err(Err err) - { - return new Result(ERR, err!); - } - - public bool IsOk => Tag == OK; - public bool IsErr => Tag == ERR; - - public Ok AsOk - { - get - { - if (Tag == OK) - return (Ok)value; - else - throw new ArgumentException("expected OK, got " + Tag); - } - } - - public Err AsErr - { - get - { - if (Tag == ERR) - return (Err)value; - else - throw new ArgumentException("expected ERR, got " + Tag); - } - } - - public const byte OK = 0; - public const byte ERR = 1; - } - - namespace exports { - public static class ExampleWorld - { - - [UnmanagedCallersOnly(EntryPoint = "add")] - public static unsafe int wasmExportAdd(int p0, int p1) { - - int ret; - ret = ExampleWorldImpl.Add((p0), (p1)); - return ret; - - } - - [UnmanagedCallersOnly(EntryPoint = "cabi_post_add")] - public static void cabi_post_wasmExportAdd(int returnValue) { - Console.WriteLine("TODO: cabi_post_add"); - } - - } - } - -} diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_component_type.wit b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_component_type.wit deleted file mode 100644 index 399df79..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_component_type.wit +++ /dev/null @@ -1,5 +0,0 @@ -package example:component; - -world example { - export add: func(x: s32, y: s32) -> s32; -} diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs deleted file mode 100644 index a733c57..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by `wit-bindgen` 0.34.0. DO NOT EDIT! -// -#nullable enable - -#if !NET9_0_OR_GREATER -// temporarily add this attribute until it is available in dotnet 9 -namespace System.Runtime.InteropServices -{ - internal partial class WasmImportLinkageAttribute : Attribute {} -} -#endif diff --git a/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/lastbuild.txt b/dotnet-guest-test/obj/Debug/net8.0/wasi-wasm/wit_bindgen/lastbuild.txt deleted file mode 100644 index e69de29..0000000 diff --git a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/Example.cs b/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/Example.cs deleted file mode 100644 index 4cf3f72..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/Example.cs +++ /dev/null @@ -1,94 +0,0 @@ -// Generated by `wit-bindgen` 0.34.0. DO NOT EDIT! -// -#nullable enable -using System; -using System.Runtime.CompilerServices; -using System.Collections; -using System.Runtime.InteropServices; -using System.Text; -using System.Collections.Generic; -using System.Diagnostics; -using System.Diagnostics.CodeAnalysis; - -namespace ExampleWorld { - - public interface IExampleWorld { - static abstract int Add(int x, int y); - - } - - public readonly struct None {} - - [StructLayout(LayoutKind.Sequential)] - public readonly struct Result - { - public readonly byte Tag; - private readonly object value; - - private Result(byte tag, object value) - { - Tag = tag; - this.value = value; - } - - public static Result ok(Ok ok) - { - return new Result(OK, ok!); - } - - public static Result err(Err err) - { - return new Result(ERR, err!); - } - - public bool IsOk => Tag == OK; - public bool IsErr => Tag == ERR; - - public Ok AsOk - { - get - { - if (Tag == OK) - return (Ok)value; - else - throw new ArgumentException("expected OK, got " + Tag); - } - } - - public Err AsErr - { - get - { - if (Tag == ERR) - return (Err)value; - else - throw new ArgumentException("expected ERR, got " + Tag); - } - } - - public const byte OK = 0; - public const byte ERR = 1; - } - - namespace exports { - public static class ExampleWorld - { - - [UnmanagedCallersOnly(EntryPoint = "add")] - public static unsafe int wasmExportAdd(int p0, int p1) { - - int ret; - ret = ExampleWorldImpl.Add((p0), (p1)); - return ret; - - } - - [UnmanagedCallersOnly(EntryPoint = "cabi_post_add")] - public static void cabi_post_wasmExportAdd(int returnValue) { - Console.WriteLine("TODO: cabi_post_add"); - } - - } - } - -} diff --git a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_component_type.wit b/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_component_type.wit deleted file mode 100644 index 399df79..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_component_type.wit +++ /dev/null @@ -1,5 +0,0 @@ -package example:component; - -world example { - export add: func(x: s32, y: s32) -> s32; -} diff --git a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs b/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs deleted file mode 100644 index a733c57..0000000 --- a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/ExampleWorld_wasm_import_linkage_attribute.cs +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by `wit-bindgen` 0.34.0. DO NOT EDIT! -// -#nullable enable - -#if !NET9_0_OR_GREATER -// temporarily add this attribute until it is available in dotnet 9 -namespace System.Runtime.InteropServices -{ - internal partial class WasmImportLinkageAttribute : Attribute {} -} -#endif diff --git a/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/lastbuild.txt b/dotnet-guest-test/obj/Debug/net8.0/wit_bindgen/lastbuild.txt deleted file mode 100644 index e69de29..0000000 diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index 9e76325..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs deleted file mode 100644 index e3e1d06..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e289cd83a68411ceab00ec8bccffc23cc49b7813")] -[assembly: System.Reflection.AssemblyProductAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyTitleAttribute("dotnet-guest-test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache deleted file mode 100644 index 333e704..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -54acee9c36e3dfadc8816251c1e99d0f0dc0f9790bbac9c5179ddb6321e9f08f diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a7b6c31..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.EnableAotAnalyzer = -build_property.EnableSingleFileAnalyzer = -build_property.EnableTrimAnalyzer = true -build_property.IncludeAllContentForSelfExtract = -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = true -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = dotnet-guest-test -build_property.ProjectDir = /media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = false -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.assets.cache b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.assets.cache deleted file mode 100644 index e0fe026114b92e977384383987dd8d75fae22be9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1809 zcmc&#zi$&U6iy+fEtIyj5=bl{F~`27DTuK@XmurxqP8j$ovgdp#*NQD*}k+1Vn(bi z3`hv^2Qahp2e2Y`2H07USa>FvTtpL+2`s(D$@x8h`QG=w)E;iF&gOEt$4`^DAAf#5 znf=0k9DeYgO@4lJ`10MS_8tB0`TJM=`}|}sm&bFjCum(oKn*adBHo}xCdXiD%z_3x z216qrXl2xqC84qsEa4(hQOpHsB1AKy_lZZmLad?5;gqb9QhC`clOko3iB=o5p`An; z7`oFd=1U7&#blc`*bO0$# zuH-PBPsXOU!>i!3K`b*3lai_fQbIn<_m;`ZKtBCS#pSH45H|T)O{*pku`hkRxgI;- zu-&=#zrwStjA+T#Q~<-^Aflnm!M&ZSWkcC2O3$yXccoXU9PGI4o7ti2gMB>ln~;4+ zqI+D@iL^Wdg4`x&g|oY5k|hkU+DkiSh8OT98Y|7~-ge66*mt?^6f#hM{)z!oaO7OV zaJ`+vaG$3!W-u;eT)}W2a23PvLK>d{TEv0Ik!B*UGg3qWt}GWxxqIszR&}?|V+^`= z0l#ELgVSZmHkgqXYuZ$ow>KW@8R?<`V_?oyrSQGUTu+EDw1KR2AxxbUa h7tytr1!r@sLU1MnK+nrmLefdj6f)zXaJ@nZ&0mAp8e#wd diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.AssemblyReference.cache b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.AssemblyReference.cache deleted file mode 100644 index aeb1df2b6d5526f2c8db40185fbea729ab312142..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 854 zcmdT>K}*9h7;QvkOb~YS*rSIvsW%aZ%qa+p$Tr+@w9Q8eOOui&lX`F-ck~zd8~iig z{1@KUv~``(UAzc>hmh}k-+OuC?Vv5kanLg&2~ZXg8t7n36`KP&gE?@SCLlB!noJX( ztH8Spvc$_G#Zt{g>}jw7m0E!IVq=?X63HZ$!ZO)Ccoj@C6_JT$4^|i+(HRMuurGxs zCRXAI`^^m5shk Rr}m_Ve-}`HP5g(+d;xvK;{pHx diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache deleted file mode 100644 index 5dd4a6b..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a25f7937344b4353068a7a74a25cada8681de1a9f11d6b6468cba104c88c86fd diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt deleted file mode 100644 index 3617b6e..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,6 +0,0 @@ -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.AssemblyReference.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.GeneratedMSBuildEditorConfig.editorconfig -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfoInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.AssemblyInfo.cs -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.csproj.CoreCompileInputs.cache -/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.sourcelink.json diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.sourcelink.json b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.sourcelink.json deleted file mode 100644 index 2ec7280..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.sourcelink.json +++ /dev/null @@ -1 +0,0 @@ -{"documents":{"/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/*":"https://raw.githubusercontent.com/jsturtevant/componentize-dotnet/5f9e57971ca8ca4e454cd654ebe79a39ed8844e7/*"}} \ No newline at end of file diff --git a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp b/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp deleted file mode 100644 index 32d0083..0000000 --- a/dotnet-guest-test/obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.ilc.rsp +++ /dev/null @@ -1,242 +0,0 @@ -obj/Debug/net9.0/wasi-wasm/dotnet-guest-test.dll --o:obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.o --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.CoreLib.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.DisabledReflection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.Reflection.Execution.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.StackTraceMetadata.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/sdk/System.Private.TypeLoader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.CSharp.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.VisualBasic.Core.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.VisualBasic.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.Win32.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/Microsoft.Win32.Registry.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/mscorlib.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/netstandard.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.AppContext.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Buffers.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Concurrent.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Immutable.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.NonGeneric.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Collections.Specialized.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.Annotations.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.DataAnnotations.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.EventBasedAsync.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ComponentModel.TypeConverter.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Configuration.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Console.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Core.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.Common.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.DataSetExtensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Data.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Contracts.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Debug.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.DiagnosticSource.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.FileVersionInfo.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Process.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.StackTrace.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.TextWriterTraceListener.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Tools.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.TraceSource.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Diagnostics.Tracing.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Drawing.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Drawing.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Dynamic.Runtime.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Formats.Asn1.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Formats.Tar.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.Calendars.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Globalization.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.Brotli.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.FileSystem.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Compression.ZipFile.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.DriveInfo.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.FileSystem.Watcher.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.IsolatedStorage.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.MemoryMappedFiles.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipelines.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipes.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.Pipes.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.IO.UnmanagedMemoryStream.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Expressions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Parallel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Linq.Queryable.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Memory.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Http.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Http.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.HttpListener.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Mail.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.NameResolution.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.NetworkInformation.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Ping.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Quic.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Requests.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Security.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.ServicePoint.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.Sockets.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebClient.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebHeaderCollection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebProxy.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebSockets.Client.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Net.WebSockets.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Numerics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Numerics.Vectors.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ObjectModel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.DataContractSerialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Uri.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Private.Xml.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.DispatchProxy.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.ILGeneration.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Emit.Lightweight.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Metadata.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Reflection.TypeExtensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.Reader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.ResourceManager.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Resources.Writer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.CompilerServices.Unsafe.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.CompilerServices.VisualC.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Handles.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.JavaScript.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.InteropServices.RuntimeInformation.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Intrinsics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Loader.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Numerics.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Formatters.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Runtime.Serialization.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.AccessControl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Claims.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Algorithms.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Cng.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Csp.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Encoding.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.OpenSsl.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.Primitives.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Cryptography.X509Certificates.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Principal.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.Principal.Windows.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Security.SecureString.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ServiceModel.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ServiceProcess.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.CodePages.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encoding.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Encodings.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.Json.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Text.RegularExpressions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Channels.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Overlapped.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Dataflow.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Extensions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Tasks.Parallel.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Thread.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.ThreadPool.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Threading.Timer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Transactions.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Transactions.Local.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.ValueTuple.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Web.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Web.HttpUtility.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Windows.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.Linq.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.ReaderWriter.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.Serialization.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XmlDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XmlSerializer.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XPath.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/System.Xml.XPath.XDocument.dll --r:/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24525.6/framework/WindowsBase.dll ---targetos:wasi ---targetarch:wasm --g ---nativelib ---exportsfile:obj/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.exports ---export-unmanaged-entrypoints ---initassembly:System.Private.CoreLib ---initassembly:System.Private.StackTraceMetadata ---initassembly:System.Private.TypeLoader ---initassembly:System.Private.Reflection.Execution ---directpinvoke:libSystem.Globalization.Native ---directpinvoke:libSystem.Native ---feature:System.Linq.Expressions.CanEmitObjectArrayDelegate=false ---feature:Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability=true ---feature:System.ComponentModel.DefaultValueAttribute.IsSupported=false ---feature:System.ComponentModel.Design.IDesignerHost.IsSupported=false ---feature:System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization=false ---feature:System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported=false ---feature:System.Diagnostics.Tracing.EventSource.IsSupported=false ---feature:System.Globalization.Invariant=true ---feature:System.Globalization.PredefinedCulturesOnly=true ---feature:System.Resources.ResourceManager.AllowCustomResourceTypes=false ---feature:System.Resources.UseSystemResourceKeys=false ---feature:System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported=false ---feature:System.Runtime.InteropServices.BuiltInComInterop.IsSupported=false ---feature:System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting=false ---feature:System.Runtime.InteropServices.EnableCppCLIHostActivation=false ---feature:System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop=false ---feature:System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization=false ---feature:System.StartupHookProvider.IsSupported=false ---feature:System.Text.Encoding.EnableUnsafeUTF7Encoding=false ---feature:System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault=false ---feature:System.Threading.Thread.EnableAutoreleasePool=false ---runtimeknob:System.Linq.Expressions.CanEmitObjectArrayDelegate=false ---runtimeknob:Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability=true ---runtimeknob:System.ComponentModel.DefaultValueAttribute.IsSupported=false ---runtimeknob:System.ComponentModel.Design.IDesignerHost.IsSupported=false ---runtimeknob:System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization=false ---runtimeknob:System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported=false ---runtimeknob:System.Diagnostics.Tracing.EventSource.IsSupported=false ---runtimeknob:System.Globalization.Invariant=true ---runtimeknob:System.Globalization.PredefinedCulturesOnly=true ---runtimeknob:System.Resources.ResourceManager.AllowCustomResourceTypes=false ---runtimeknob:System.Resources.UseSystemResourceKeys=false ---runtimeknob:System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported=false ---runtimeknob:System.Runtime.InteropServices.BuiltInComInterop.IsSupported=false ---runtimeknob:System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting=false ---runtimeknob:System.Runtime.InteropServices.EnableCppCLIHostActivation=false ---runtimeknob:System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop=false ---runtimeknob:System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization=false ---runtimeknob:System.StartupHookProvider.IsSupported=false ---runtimeknob:System.Text.Encoding.EnableUnsafeUTF7Encoding=false ---runtimeknob:System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault=false ---runtimeknob:System.Threading.Thread.EnableAutoreleasePool=false ---runtimeknob:RUNTIME_IDENTIFIER=wasi-wasm ---stacktracedata ---scanreflection ---nowarn:"1701;1702;IL2121;1701;1702" ---warnaserr:";NU1605;SYSLIB0011" ---singlewarn ---nosinglewarnassembly:dotnet-guest-test ---resilient ---generateunmanagedentrypoints:System.Private.CoreLib ---codegenopt:LlvmExceptionHandlingModel=emulated ---codegenopt:Target=wasm32-unknown-wasip2 ---wasm-global-base:1024 ---feature:System.Diagnostics.Debugger.IsSupported=false diff --git a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.dgspec.json b/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.dgspec.json deleted file mode 100644 index 1721f48..0000000 --- a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.dgspec.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "format": 1, - "restore": { - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj": {} - }, - "projects": { - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj": { - "version": "0.1.0-dev", - "restore": { - "projectUniqueName": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj", - "projectName": "ByteCodeAlliance.Componentize.DotNet.Wasm.SDK", - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj", - "packagesPath": "/home/seanomik/.nuget/packages/", - "outputPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/obj/", - "projectStyle": "PackageReference", - "centralPackageVersionsManagementEnabled": true, - "configFilePaths": [ - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/nuget.config", - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/nuget.config", - "/home/seanomik/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": { - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/WitBindgen.csproj": { - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/WitBindgen.csproj", - "privateAssets": "none" - } - } - } - }, - "warningProperties": { - "noWarn": [ - "NU1507" - ], - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "9.0.100" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "Microsoft.DotNet.ILCompiler.LLVM": { - "suppressParent": "None", - "target": "Package", - "version": "[9.0.0-preview.5.24304.1, )", - "versionCentrallyManaged": true - }, - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[8.0.10, )", - "autoReferenced": true - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": { - "suppressParent": "None", - "target": "Package", - "version": "[9.0.0-preview.5.24304.1, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "Microsoft.NET.Test.Sdk": "17.6.0", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "xunit": "2.4.2", - "xunit.runner.visualstudio": "2.4.5" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.100-rc.2.24474.11/PortableRuntimeIdentifierGraph.json" - } - } - }, - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/WitBindgen.csproj": { - "version": "0.1.0-dev", - "restore": { - "projectUniqueName": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/WitBindgen.csproj", - "projectName": "ByteCodeAlliance.Componentize.DotNet.WitBindgen", - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/WitBindgen.csproj", - "packagesPath": "/home/seanomik/.nuget/packages/", - "outputPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WitBindgen/obj/", - "projectStyle": "PackageReference", - "centralPackageVersionsManagementEnabled": true, - "configFilePaths": [ - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/nuget.config", - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/nuget.config", - "/home/seanomik/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "noWarn": [ - "NU1507" - ], - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "9.0.100" - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "centralPackageVersions": { - "Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "Microsoft.NET.Test.Sdk": "17.6.0", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "xunit": "2.4.2", - "xunit.runner.visualstudio": "2.4.5" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.100-rc.2.24474.11/PortableRuntimeIdentifierGraph.json" - } - } - }, - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj", - "projectName": "dotnet-guest-test", - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj", - "packagesPath": "/home/seanomik/.nuget/packages/", - "outputPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/nuget.config", - "/home/seanomik/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj": { - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "9.0.100" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[9.0.0-rc.2.24473.5, )", - "autoReferenced": true - }, - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM": { - "target": "Package", - "version": "[10.0.0-alpha.1.24531.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[9.0.0-rc.2.24474.3, 9.0.0-rc.2.24474.3]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.100-rc.2.24474.11/PortableRuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "wasi-wasm": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.props b/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.props deleted file mode 100644 index fc4a831..0000000 --- a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.props +++ /dev/null @@ -1,25 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - /home/seanomik/.nuget/packages/ - /home/seanomik/.nuget/packages/ - PackageReference - 6.12.0 - - - - - - - - - - /home/seanomik/.nuget/packages/runtime.win-x64.microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1 - /home/seanomik/.nuget/packages/runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24531.4 - /home/seanomik/.nuget/packages/microsoft.net.illink.tasks/9.0.0-rc.2.24473.5 - /home/seanomik/.nuget/packages/microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1 - - \ No newline at end of file diff --git a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.targets b/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.targets deleted file mode 100644 index b789c0b..0000000 --- a/dotnet-guest-test/obj/dotnet-guest-test.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dotnet-guest-test/obj/project.assets.json b/dotnet-guest-test/obj/project.assets.json deleted file mode 100644 index fab61d0..0000000 --- a/dotnet-guest-test/obj/project.assets.json +++ /dev/null @@ -1,1608 +0,0 @@ -{ - "version": 3, - "targets": { - "net9.0": { - "Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "type": "package", - "build": { - "build/Microsoft.DotNet.ILCompiler.LLVM.props": {}, - "build/Microsoft.DotNet.ILCompiler.LLVM.targets": {} - } - }, - "Microsoft.NET.ILLink.Tasks/9.0.0-rc.2.24473.5": { - "type": "package", - "build": { - "build/Microsoft.NET.ILLink.Tasks.props": {} - } - }, - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24531.4": { - "type": "package" - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "type": "package" - }, - "ByteCodeAlliance.Componentize.DotNet.Wasm.SDK/0.1.0-dev": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "dependencies": { - "ByteCodeAlliance.Componentize.DotNet.WitBindgen": "0.1.0-dev", - "Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1" - }, - "compile": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.Wasm.SDK.dll": {} - }, - "runtime": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.Wasm.SDK.dll": {} - } - }, - "ByteCodeAlliance.Componentize.DotNet.WitBindgen/0.1.0-dev": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "compile": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.WitBindgen.dll": {} - }, - "runtime": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.WitBindgen.dll": {} - } - } - }, - "net9.0/wasi-wasm": { - "Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "type": "package", - "dependencies": { - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1" - }, - "build": { - "build/Microsoft.DotNet.ILCompiler.LLVM.props": {}, - "build/Microsoft.DotNet.ILCompiler.LLVM.targets": {} - } - }, - "Microsoft.NET.ILLink.Tasks/9.0.0-rc.2.24473.5": { - "type": "package", - "build": { - "build/Microsoft.NET.ILLink.Tasks.props": {} - } - }, - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24531.4": { - "type": "package" - }, - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "type": "package" - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "type": "package" - }, - "ByteCodeAlliance.Componentize.DotNet.Wasm.SDK/0.1.0-dev": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "dependencies": { - "ByteCodeAlliance.Componentize.DotNet.WitBindgen": "0.1.0-dev", - "Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1", - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM": "9.0.0-preview.5.24304.1" - }, - "compile": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.Wasm.SDK.dll": {} - }, - "runtime": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.Wasm.SDK.dll": {} - } - }, - "ByteCodeAlliance.Componentize.DotNet.WitBindgen/0.1.0-dev": { - "type": "project", - "framework": ".NETCoreApp,Version=v8.0", - "compile": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.WitBindgen.dll": {} - }, - "runtime": { - "bin/placeholder/ByteCodeAlliance.Componentize.DotNet.WitBindgen.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "sha512": "rHIw5+/5l6hy3VIll//8aX0tfJj2xCa5iI9uq+iHUsxfPXST18dlIrgR4jfgC+JnRlf4RsvtnMJaPX1hCdalRQ==", - "type": "package", - "path": "microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.deps.json", - "analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.dll", - "analyzers/dotnet/cs/Microsoft.Interop.JavaScript.JSImportGenerator.pdb", - "analyzers/dotnet/cs/Microsoft.Interop.SourceGeneration.deps.json", - "analyzers/dotnet/cs/Microsoft.Interop.SourceGeneration.dll", - "analyzers/dotnet/cs/Microsoft.Interop.SourceGeneration.pdb", - "build/BuildFrameworkNativeObjects.proj", - "build/DotNetJsApi.targets", - "build/Microsoft.DotNet.ILCompiler.LLVM.props", - "build/Microsoft.DotNet.ILCompiler.LLVM.targets", - "build/Microsoft.DotNet.ILCompiler.SingleEntry.targets", - "build/Microsoft.DotNet.ILCompiler.props", - "build/Microsoft.NETCore.Native.Publish.targets", - "build/Microsoft.NETCore.Native.Unix.targets", - "build/Microsoft.NETCore.Native.Wasm.targets", - "build/Microsoft.NETCore.Native.Windows.targets", - "build/Microsoft.NETCore.Native.targets", - "build/NativeAOT.natstepfilter", - "build/NativeAOT.natvis", - "build/OverrideImportRuntimeIlcPackageTarget.targets", - "build/WindowsAPIs.txt", - "build/findvcvarsall.bat", - "microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "microsoft.dotnet.ilcompiler.llvm.nuspec", - "runtime.json", - "tools/netstandard/ILCompiler.Build.Tasks.deps.json", - "tools/netstandard/ILCompiler.Build.Tasks.dll", - "tools/netstandard/ILCompiler.Build.Tasks.pdb" - ] - }, - "Microsoft.NET.ILLink.Tasks/9.0.0-rc.2.24473.5": { - "sha512": "mXyCgKqBIo/KOpY09FqjOU8d+LME2qowzzvBd1/viYmSpAKYfQ2w1WDOlh0FniY4xnrB/wmDiAo4frJvfCqT0w==", - "type": "package", - "path": "microsoft.net.illink.tasks/9.0.0-rc.2.24473.5", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "Sdk/Sdk.props", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", - "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", - "build/Microsoft.NET.ILLink.Analyzers.props", - "build/Microsoft.NET.ILLink.Tasks.props", - "build/Microsoft.NET.ILLink.targets", - "microsoft.net.illink.tasks.9.0.0-rc.2.24473.5.nupkg.sha512", - "microsoft.net.illink.tasks.nuspec", - "tools/net472/ILLink.Tasks.dll", - "tools/net472/ILLink.Tasks.dll.config", - "tools/net472/Mono.Cecil.Mdb.dll", - "tools/net472/Mono.Cecil.Pdb.dll", - "tools/net472/Mono.Cecil.Rocks.dll", - "tools/net472/Mono.Cecil.dll", - "tools/net472/Sdk/Sdk.props", - "tools/net472/System.Buffers.dll", - "tools/net472/System.Collections.Immutable.dll", - "tools/net472/System.Memory.dll", - "tools/net472/System.Numerics.Vectors.dll", - "tools/net472/System.Reflection.Metadata.dll", - "tools/net472/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props", - "tools/net472/build/Microsoft.NET.ILLink.Tasks.props", - "tools/net472/build/Microsoft.NET.ILLink.targets", - "tools/net9.0/ILLink.Tasks.deps.json", - "tools/net9.0/ILLink.Tasks.dll", - "tools/net9.0/Mono.Cecil.Mdb.dll", - "tools/net9.0/Mono.Cecil.Pdb.dll", - "tools/net9.0/Mono.Cecil.Rocks.dll", - "tools/net9.0/Mono.Cecil.dll", - "tools/net9.0/Sdk/Sdk.props", - "tools/net9.0/build/Microsoft.NET.ILLink.Analyzers.props", - "tools/net9.0/build/Microsoft.NET.ILLink.Tasks.props", - "tools/net9.0/build/Microsoft.NET.ILLink.targets", - "tools/net9.0/illink.deps.json", - "tools/net9.0/illink.dll", - "tools/net9.0/illink.runtimeconfig.json", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM/10.0.0-alpha.1.24531.4": { - "sha512": "FPuYaZf6SaLTdM4bKsaUsgU+D6n6olnufw9s/07A59gyl1ETH3Ty/CeIDQiUSkJZAnEVGlq3YIyikxax/dXzXw==", - "type": "package", - "path": "runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24531.4", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/AsyncEntryPointThunkClass.cs", - "build/BuildFrameworkNativeObjects.proj", - "build/DotNetJsApi.targets", - "build/Microsoft.DotNet.ILCompiler.LLVM.props", - "build/Microsoft.DotNet.ILCompiler.LLVM.targets", - "build/Microsoft.DotNet.ILCompiler.SingleEntry.targets", - "build/Microsoft.DotNet.ILCompiler.props", - "build/Microsoft.NETCore.Native.Publish.targets", - "build/Microsoft.NETCore.Native.Unix.targets", - "build/Microsoft.NETCore.Native.Wasm.targets", - "build/Microsoft.NETCore.Native.Windows.targets", - "build/Microsoft.NETCore.Native.targets", - "build/NativeAOT.natstepfilter", - "build/NativeAOT.natvis", - "build/OverrideImportRuntimeIlcPackageTarget.targets", - "build/WindowsAPIs.txt", - "build/findvcvarsall.bat", - "framework/Microsoft.CSharp.dll", - "framework/Microsoft.CSharp.pdb", - "framework/Microsoft.VisualBasic.Core.dll", - "framework/Microsoft.VisualBasic.Core.pdb", - "framework/Microsoft.VisualBasic.dll", - "framework/Microsoft.VisualBasic.pdb", - "framework/Microsoft.Win32.Primitives.dll", - "framework/Microsoft.Win32.Primitives.pdb", - "framework/Microsoft.Win32.Registry.dll", - "framework/Microsoft.Win32.Registry.pdb", - "framework/System.AppContext.dll", - "framework/System.AppContext.pdb", - "framework/System.Buffers.dll", - "framework/System.Buffers.pdb", - "framework/System.Collections.Concurrent.dll", - "framework/System.Collections.Concurrent.pdb", - "framework/System.Collections.Immutable.dll", - "framework/System.Collections.Immutable.pdb", - "framework/System.Collections.NonGeneric.dll", - "framework/System.Collections.NonGeneric.pdb", - "framework/System.Collections.Specialized.dll", - "framework/System.Collections.Specialized.pdb", - "framework/System.Collections.dll", - "framework/System.Collections.pdb", - "framework/System.ComponentModel.Annotations.dll", - "framework/System.ComponentModel.Annotations.pdb", - "framework/System.ComponentModel.DataAnnotations.dll", - "framework/System.ComponentModel.DataAnnotations.pdb", - "framework/System.ComponentModel.EventBasedAsync.dll", - "framework/System.ComponentModel.EventBasedAsync.pdb", - "framework/System.ComponentModel.Primitives.dll", - "framework/System.ComponentModel.Primitives.pdb", - "framework/System.ComponentModel.TypeConverter.dll", - "framework/System.ComponentModel.TypeConverter.pdb", - "framework/System.ComponentModel.dll", - "framework/System.ComponentModel.pdb", - "framework/System.Configuration.dll", - "framework/System.Configuration.pdb", - "framework/System.Console.dll", - "framework/System.Console.pdb", - "framework/System.Core.dll", - "framework/System.Core.pdb", - "framework/System.Data.Common.dll", - "framework/System.Data.Common.pdb", - "framework/System.Data.DataSetExtensions.dll", - "framework/System.Data.DataSetExtensions.pdb", - "framework/System.Data.dll", - "framework/System.Data.pdb", - "framework/System.Diagnostics.Contracts.dll", - "framework/System.Diagnostics.Contracts.pdb", - "framework/System.Diagnostics.Debug.dll", - "framework/System.Diagnostics.Debug.pdb", - "framework/System.Diagnostics.DiagnosticSource.dll", - "framework/System.Diagnostics.DiagnosticSource.pdb", - "framework/System.Diagnostics.FileVersionInfo.dll", - "framework/System.Diagnostics.FileVersionInfo.pdb", - "framework/System.Diagnostics.Process.dll", - "framework/System.Diagnostics.Process.pdb", - "framework/System.Diagnostics.StackTrace.dll", - "framework/System.Diagnostics.StackTrace.pdb", - "framework/System.Diagnostics.TextWriterTraceListener.dll", - "framework/System.Diagnostics.TextWriterTraceListener.pdb", - "framework/System.Diagnostics.Tools.dll", - "framework/System.Diagnostics.Tools.pdb", - "framework/System.Diagnostics.TraceSource.dll", - "framework/System.Diagnostics.TraceSource.pdb", - "framework/System.Diagnostics.Tracing.dll", - "framework/System.Diagnostics.Tracing.pdb", - "framework/System.Drawing.Primitives.dll", - "framework/System.Drawing.Primitives.pdb", - "framework/System.Drawing.dll", - "framework/System.Drawing.pdb", - "framework/System.Dynamic.Runtime.dll", - "framework/System.Dynamic.Runtime.pdb", - "framework/System.Formats.Asn1.dll", - "framework/System.Formats.Asn1.pdb", - "framework/System.Formats.Tar.dll", - "framework/System.Formats.Tar.pdb", - "framework/System.Globalization.Calendars.dll", - "framework/System.Globalization.Calendars.pdb", - "framework/System.Globalization.Extensions.dll", - "framework/System.Globalization.Extensions.pdb", - "framework/System.Globalization.dll", - "framework/System.Globalization.pdb", - "framework/System.IO.Compression.Brotli.dll", - "framework/System.IO.Compression.Brotli.pdb", - "framework/System.IO.Compression.FileSystem.dll", - "framework/System.IO.Compression.FileSystem.pdb", - "framework/System.IO.Compression.ZipFile.dll", - "framework/System.IO.Compression.ZipFile.pdb", - "framework/System.IO.Compression.dll", - "framework/System.IO.Compression.pdb", - "framework/System.IO.FileSystem.AccessControl.dll", - "framework/System.IO.FileSystem.AccessControl.pdb", - "framework/System.IO.FileSystem.DriveInfo.dll", - "framework/System.IO.FileSystem.DriveInfo.pdb", - "framework/System.IO.FileSystem.Primitives.dll", - "framework/System.IO.FileSystem.Primitives.pdb", - "framework/System.IO.FileSystem.Watcher.dll", - "framework/System.IO.FileSystem.Watcher.pdb", - "framework/System.IO.FileSystem.dll", - "framework/System.IO.FileSystem.pdb", - "framework/System.IO.IsolatedStorage.dll", - "framework/System.IO.IsolatedStorage.pdb", - "framework/System.IO.MemoryMappedFiles.dll", - "framework/System.IO.MemoryMappedFiles.pdb", - "framework/System.IO.Pipelines.dll", - "framework/System.IO.Pipelines.pdb", - "framework/System.IO.Pipes.AccessControl.dll", - "framework/System.IO.Pipes.AccessControl.pdb", - "framework/System.IO.Pipes.dll", - "framework/System.IO.Pipes.pdb", - "framework/System.IO.UnmanagedMemoryStream.dll", - "framework/System.IO.UnmanagedMemoryStream.pdb", - "framework/System.IO.dll", - "framework/System.IO.pdb", - "framework/System.Linq.Expressions.dll", - "framework/System.Linq.Expressions.pdb", - "framework/System.Linq.Parallel.dll", - "framework/System.Linq.Parallel.pdb", - "framework/System.Linq.Queryable.dll", - "framework/System.Linq.Queryable.pdb", - "framework/System.Linq.dll", - "framework/System.Linq.pdb", - "framework/System.Memory.dll", - "framework/System.Memory.pdb", - "framework/System.Net.Http.Json.dll", - "framework/System.Net.Http.Json.pdb", - "framework/System.Net.Http.dll", - "framework/System.Net.Http.pdb", - "framework/System.Net.HttpListener.dll", - "framework/System.Net.HttpListener.pdb", - "framework/System.Net.Mail.dll", - "framework/System.Net.Mail.pdb", - "framework/System.Net.NameResolution.dll", - "framework/System.Net.NameResolution.pdb", - "framework/System.Net.NetworkInformation.dll", - "framework/System.Net.NetworkInformation.pdb", - "framework/System.Net.Ping.dll", - "framework/System.Net.Ping.pdb", - "framework/System.Net.Primitives.dll", - "framework/System.Net.Primitives.pdb", - "framework/System.Net.Quic.dll", - "framework/System.Net.Quic.pdb", - "framework/System.Net.Requests.dll", - "framework/System.Net.Requests.pdb", - "framework/System.Net.Security.dll", - "framework/System.Net.Security.pdb", - "framework/System.Net.ServicePoint.dll", - "framework/System.Net.ServicePoint.pdb", - "framework/System.Net.Sockets.dll", - "framework/System.Net.Sockets.pdb", - "framework/System.Net.WebClient.dll", - "framework/System.Net.WebClient.pdb", - "framework/System.Net.WebHeaderCollection.dll", - "framework/System.Net.WebHeaderCollection.pdb", - "framework/System.Net.WebProxy.dll", - "framework/System.Net.WebProxy.pdb", - "framework/System.Net.WebSockets.Client.dll", - "framework/System.Net.WebSockets.Client.pdb", - "framework/System.Net.WebSockets.dll", - "framework/System.Net.WebSockets.pdb", - "framework/System.Net.dll", - "framework/System.Net.pdb", - "framework/System.Numerics.Vectors.dll", - "framework/System.Numerics.Vectors.pdb", - "framework/System.Numerics.dll", - "framework/System.Numerics.pdb", - "framework/System.ObjectModel.dll", - "framework/System.ObjectModel.pdb", - "framework/System.Private.DataContractSerialization.dll", - "framework/System.Private.DataContractSerialization.pdb", - "framework/System.Private.Uri.dll", - "framework/System.Private.Uri.pdb", - "framework/System.Private.Xml.Linq.dll", - "framework/System.Private.Xml.Linq.pdb", - "framework/System.Private.Xml.dll", - "framework/System.Private.Xml.pdb", - "framework/System.Reflection.DispatchProxy.dll", - "framework/System.Reflection.DispatchProxy.pdb", - "framework/System.Reflection.Emit.ILGeneration.dll", - "framework/System.Reflection.Emit.ILGeneration.pdb", - "framework/System.Reflection.Emit.Lightweight.dll", - "framework/System.Reflection.Emit.Lightweight.pdb", - "framework/System.Reflection.Emit.dll", - "framework/System.Reflection.Emit.pdb", - "framework/System.Reflection.Extensions.dll", - "framework/System.Reflection.Extensions.pdb", - "framework/System.Reflection.Metadata.dll", - "framework/System.Reflection.Metadata.pdb", - "framework/System.Reflection.Primitives.dll", - "framework/System.Reflection.Primitives.pdb", - "framework/System.Reflection.TypeExtensions.dll", - "framework/System.Reflection.TypeExtensions.pdb", - "framework/System.Reflection.dll", - "framework/System.Reflection.pdb", - "framework/System.Resources.Reader.dll", - "framework/System.Resources.Reader.pdb", - "framework/System.Resources.ResourceManager.dll", - "framework/System.Resources.ResourceManager.pdb", - "framework/System.Resources.Writer.dll", - "framework/System.Resources.Writer.pdb", - "framework/System.Runtime.CompilerServices.Unsafe.dll", - "framework/System.Runtime.CompilerServices.Unsafe.pdb", - "framework/System.Runtime.CompilerServices.VisualC.dll", - "framework/System.Runtime.CompilerServices.VisualC.pdb", - "framework/System.Runtime.Extensions.dll", - "framework/System.Runtime.Extensions.pdb", - "framework/System.Runtime.Handles.dll", - "framework/System.Runtime.Handles.pdb", - "framework/System.Runtime.InteropServices.JavaScript.dll", - "framework/System.Runtime.InteropServices.JavaScript.pdb", - "framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "framework/System.Runtime.InteropServices.RuntimeInformation.pdb", - "framework/System.Runtime.InteropServices.dll", - "framework/System.Runtime.InteropServices.pdb", - "framework/System.Runtime.Intrinsics.dll", - "framework/System.Runtime.Intrinsics.pdb", - "framework/System.Runtime.Loader.dll", - "framework/System.Runtime.Loader.pdb", - "framework/System.Runtime.Numerics.dll", - "framework/System.Runtime.Numerics.pdb", - "framework/System.Runtime.Serialization.Formatters.dll", - "framework/System.Runtime.Serialization.Formatters.pdb", - "framework/System.Runtime.Serialization.Json.dll", - "framework/System.Runtime.Serialization.Json.pdb", - "framework/System.Runtime.Serialization.Primitives.dll", - "framework/System.Runtime.Serialization.Primitives.pdb", - "framework/System.Runtime.Serialization.Xml.dll", - "framework/System.Runtime.Serialization.Xml.pdb", - "framework/System.Runtime.Serialization.dll", - "framework/System.Runtime.Serialization.pdb", - "framework/System.Runtime.dll", - "framework/System.Runtime.pdb", - "framework/System.Security.AccessControl.dll", - "framework/System.Security.AccessControl.pdb", - "framework/System.Security.Claims.dll", - "framework/System.Security.Claims.pdb", - "framework/System.Security.Cryptography.Algorithms.dll", - "framework/System.Security.Cryptography.Algorithms.pdb", - "framework/System.Security.Cryptography.Cng.dll", - "framework/System.Security.Cryptography.Cng.pdb", - "framework/System.Security.Cryptography.Csp.dll", - "framework/System.Security.Cryptography.Csp.pdb", - "framework/System.Security.Cryptography.Encoding.dll", - "framework/System.Security.Cryptography.Encoding.pdb", - "framework/System.Security.Cryptography.OpenSsl.dll", - "framework/System.Security.Cryptography.OpenSsl.pdb", - "framework/System.Security.Cryptography.Primitives.dll", - "framework/System.Security.Cryptography.Primitives.pdb", - "framework/System.Security.Cryptography.X509Certificates.dll", - "framework/System.Security.Cryptography.X509Certificates.pdb", - "framework/System.Security.Cryptography.dll", - "framework/System.Security.Cryptography.pdb", - "framework/System.Security.Principal.Windows.dll", - "framework/System.Security.Principal.Windows.pdb", - "framework/System.Security.Principal.dll", - "framework/System.Security.Principal.pdb", - "framework/System.Security.SecureString.dll", - "framework/System.Security.SecureString.pdb", - "framework/System.Security.dll", - "framework/System.Security.pdb", - "framework/System.ServiceModel.Web.dll", - "framework/System.ServiceModel.Web.pdb", - "framework/System.ServiceProcess.dll", - "framework/System.ServiceProcess.pdb", - "framework/System.Text.Encoding.CodePages.dll", - "framework/System.Text.Encoding.CodePages.pdb", - "framework/System.Text.Encoding.Extensions.dll", - "framework/System.Text.Encoding.Extensions.pdb", - "framework/System.Text.Encoding.dll", - "framework/System.Text.Encoding.pdb", - "framework/System.Text.Encodings.Web.dll", - "framework/System.Text.Encodings.Web.pdb", - "framework/System.Text.Json.dll", - "framework/System.Text.Json.pdb", - "framework/System.Text.RegularExpressions.dll", - "framework/System.Text.RegularExpressions.pdb", - "framework/System.Threading.Channels.dll", - "framework/System.Threading.Channels.pdb", - "framework/System.Threading.Overlapped.dll", - "framework/System.Threading.Overlapped.pdb", - "framework/System.Threading.Tasks.Dataflow.dll", - "framework/System.Threading.Tasks.Dataflow.pdb", - "framework/System.Threading.Tasks.Extensions.dll", - "framework/System.Threading.Tasks.Extensions.pdb", - "framework/System.Threading.Tasks.Parallel.dll", - "framework/System.Threading.Tasks.Parallel.pdb", - "framework/System.Threading.Tasks.dll", - "framework/System.Threading.Tasks.pdb", - "framework/System.Threading.Thread.dll", - "framework/System.Threading.Thread.pdb", - "framework/System.Threading.ThreadPool.dll", - "framework/System.Threading.ThreadPool.pdb", - "framework/System.Threading.Timer.dll", - "framework/System.Threading.Timer.pdb", - "framework/System.Threading.dll", - "framework/System.Threading.pdb", - "framework/System.Transactions.Local.dll", - "framework/System.Transactions.Local.pdb", - "framework/System.Transactions.dll", - "framework/System.Transactions.pdb", - "framework/System.ValueTuple.dll", - "framework/System.ValueTuple.pdb", - "framework/System.Web.HttpUtility.dll", - "framework/System.Web.HttpUtility.pdb", - "framework/System.Web.dll", - "framework/System.Web.pdb", - "framework/System.Windows.dll", - "framework/System.Windows.pdb", - "framework/System.Xml.Linq.dll", - "framework/System.Xml.Linq.pdb", - "framework/System.Xml.ReaderWriter.dll", - "framework/System.Xml.ReaderWriter.pdb", - "framework/System.Xml.Serialization.dll", - "framework/System.Xml.Serialization.pdb", - "framework/System.Xml.XDocument.dll", - "framework/System.Xml.XDocument.pdb", - "framework/System.Xml.XPath.XDocument.dll", - "framework/System.Xml.XPath.XDocument.pdb", - "framework/System.Xml.XPath.dll", - "framework/System.Xml.XPath.pdb", - "framework/System.Xml.XmlDocument.dll", - "framework/System.Xml.XmlDocument.pdb", - "framework/System.Xml.XmlSerializer.dll", - "framework/System.Xml.XmlSerializer.pdb", - "framework/System.Xml.dll", - "framework/System.Xml.pdb", - "framework/System.dll", - "framework/System.pdb", - "framework/WindowsBase.dll", - "framework/WindowsBase.pdb", - "framework/libSystem.Globalization.Native.a", - "framework/libSystem.Globalization.Native.so", - "framework/libSystem.Globalization.Native.so.dbg", - "framework/libSystem.IO.Compression.Native.a", - "framework/libSystem.IO.Compression.Native.so", - "framework/libSystem.IO.Compression.Native.so.dbg", - "framework/libSystem.Native.a", - "framework/libSystem.Native.so", - "framework/libSystem.Native.so.dbg", - "framework/libSystem.Net.Security.Native.a", - "framework/libSystem.Net.Security.Native.so", - "framework/libSystem.Net.Security.Native.so.dbg", - "framework/libSystem.Security.Cryptography.Native.OpenSsl.a", - "framework/libSystem.Security.Cryptography.Native.OpenSsl.so", - "framework/libSystem.Security.Cryptography.Native.OpenSsl.so.dbg", - "framework/mscorlib.dll", - "framework/mscorlib.pdb", - "framework/netstandard.dll", - "framework/netstandard.pdb", - "mibc/DotNet_Adhoc.mibc", - "mibc/DotNet_FSharp.mibc", - "mibc/DotNet_FirstTimeXP.mibc", - "mibc/DotNet_HelloWorld.mibc", - "mibc/DotNet_OrchardCore.mibc", - "mibc/DotNet_TechEmpower.mibc", - "runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24531.4.nupkg.sha512", - "runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm.nuspec", - "sdk/System.Private.CoreLib.dll", - "sdk/System.Private.CoreLib.pdb", - "sdk/System.Private.CoreLib.xml", - "sdk/System.Private.DisabledReflection.dll", - "sdk/System.Private.DisabledReflection.pdb", - "sdk/System.Private.DisabledReflection.xml", - "sdk/System.Private.Reflection.Execution.dll", - "sdk/System.Private.Reflection.Execution.pdb", - "sdk/System.Private.Reflection.Execution.xml", - "sdk/System.Private.StackTraceMetadata.dll", - "sdk/System.Private.StackTraceMetadata.pdb", - "sdk/System.Private.StackTraceMetadata.xml", - "sdk/System.Private.TypeLoader.dll", - "sdk/System.Private.TypeLoader.pdb", - "sdk/System.Private.TypeLoader.xml", - "sdk/libRuntime.ServerGC.a", - "sdk/libRuntime.VxsortDisabled.a", - "sdk/libRuntime.VxsortEnabled.a", - "sdk/libRuntime.WorkstationGC.a", - "sdk/libbootstrapper.o", - "sdk/libbootstrapperdll.o", - "sdk/libeventpipe-disabled.a", - "sdk/libeventpipe-enabled.a", - "sdk/libstandalonegc-disabled.a", - "sdk/libstandalonegc-enabled.a", - "sdk/libstdc++compat.a", - "sdk/libz.a", - "tools/ILCompiler.Compiler.pdb", - "tools/ILCompiler.DependencyAnalysisFramework.pdb", - "tools/ILCompiler.LLVM.pdb", - "tools/ILCompiler.MetadataTransform.pdb", - "tools/ILCompiler.RyuJit.pdb", - "tools/ILCompiler.TypeSystem.pdb", - "tools/ilc", - "tools/ilc.dbg", - "tools/libclrjit_universal_arm64_x64.so", - "tools/libclrjit_universal_arm_x64.so", - "tools/libclrjit_universal_wasm32_x64.so", - "tools/libclrjit_unix_x64_x64.so", - "tools/libclrjit_win_x64_x64.so", - "tools/libclrjit_win_x86_x64.so", - "tools/libjitinterface_x64.so", - "tools/netstandard/ILCompiler.Build.Tasks.deps.json", - "tools/netstandard/ILCompiler.Build.Tasks.dll", - "tools/netstandard/ILCompiler.Build.Tasks.pdb" - ] - }, - "runtime.wasi-wasm.Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "sha512": "45hRljBD21KDrmGfOixHY/Tj2j5DvrbTm9Rb8fneOFCUGJdQSobP+De5I30cnTu671YYyRE0ir3yqbHdn82p3Q==", - "type": "package", - "path": "runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/BuildFrameworkNativeObjects.proj", - "build/DotNetJsApi.targets", - "build/Microsoft.DotNet.ILCompiler.LLVM.props", - "build/Microsoft.DotNet.ILCompiler.LLVM.targets", - "build/Microsoft.DotNet.ILCompiler.SingleEntry.targets", - "build/Microsoft.DotNet.ILCompiler.props", - "build/Microsoft.NETCore.Native.Publish.targets", - "build/Microsoft.NETCore.Native.Unix.targets", - "build/Microsoft.NETCore.Native.Wasm.targets", - "build/Microsoft.NETCore.Native.Windows.targets", - "build/Microsoft.NETCore.Native.targets", - "build/NativeAOT.natstepfilter", - "build/NativeAOT.natvis", - "build/OverrideImportRuntimeIlcPackageTarget.targets", - "build/WindowsAPIs.txt", - "build/findvcvarsall.bat", - "framework/Microsoft.CSharp.dll", - "framework/Microsoft.CSharp.pdb", - "framework/Microsoft.VisualBasic.Core.dll", - "framework/Microsoft.VisualBasic.Core.pdb", - "framework/Microsoft.VisualBasic.dll", - "framework/Microsoft.VisualBasic.pdb", - "framework/Microsoft.Win32.Primitives.dll", - "framework/Microsoft.Win32.Primitives.pdb", - "framework/Microsoft.Win32.Registry.dll", - "framework/Microsoft.Win32.Registry.pdb", - "framework/System.AppContext.dll", - "framework/System.AppContext.pdb", - "framework/System.Buffers.dll", - "framework/System.Buffers.pdb", - "framework/System.Collections.Concurrent.dll", - "framework/System.Collections.Concurrent.pdb", - "framework/System.Collections.Immutable.dll", - "framework/System.Collections.Immutable.pdb", - "framework/System.Collections.NonGeneric.dll", - "framework/System.Collections.NonGeneric.pdb", - "framework/System.Collections.Specialized.dll", - "framework/System.Collections.Specialized.pdb", - "framework/System.Collections.dll", - "framework/System.Collections.pdb", - "framework/System.ComponentModel.Annotations.dll", - "framework/System.ComponentModel.Annotations.pdb", - "framework/System.ComponentModel.DataAnnotations.dll", - "framework/System.ComponentModel.DataAnnotations.pdb", - "framework/System.ComponentModel.EventBasedAsync.dll", - "framework/System.ComponentModel.EventBasedAsync.pdb", - "framework/System.ComponentModel.Primitives.dll", - "framework/System.ComponentModel.Primitives.pdb", - "framework/System.ComponentModel.TypeConverter.dll", - "framework/System.ComponentModel.TypeConverter.pdb", - "framework/System.ComponentModel.dll", - "framework/System.ComponentModel.pdb", - "framework/System.Configuration.dll", - "framework/System.Configuration.pdb", - "framework/System.Console.dll", - "framework/System.Console.pdb", - "framework/System.Core.dll", - "framework/System.Core.pdb", - "framework/System.Data.Common.dll", - "framework/System.Data.Common.pdb", - "framework/System.Data.DataSetExtensions.dll", - "framework/System.Data.DataSetExtensions.pdb", - "framework/System.Data.dll", - "framework/System.Data.pdb", - "framework/System.Diagnostics.Contracts.dll", - "framework/System.Diagnostics.Contracts.pdb", - "framework/System.Diagnostics.Debug.dll", - "framework/System.Diagnostics.Debug.pdb", - "framework/System.Diagnostics.DiagnosticSource.dll", - "framework/System.Diagnostics.DiagnosticSource.pdb", - "framework/System.Diagnostics.FileVersionInfo.dll", - "framework/System.Diagnostics.FileVersionInfo.pdb", - "framework/System.Diagnostics.Process.dll", - "framework/System.Diagnostics.Process.pdb", - "framework/System.Diagnostics.StackTrace.dll", - "framework/System.Diagnostics.StackTrace.pdb", - "framework/System.Diagnostics.TextWriterTraceListener.dll", - "framework/System.Diagnostics.TextWriterTraceListener.pdb", - "framework/System.Diagnostics.Tools.dll", - "framework/System.Diagnostics.Tools.pdb", - "framework/System.Diagnostics.TraceSource.dll", - "framework/System.Diagnostics.TraceSource.pdb", - "framework/System.Diagnostics.Tracing.dll", - "framework/System.Diagnostics.Tracing.pdb", - "framework/System.Drawing.Primitives.dll", - "framework/System.Drawing.Primitives.pdb", - "framework/System.Drawing.dll", - "framework/System.Drawing.pdb", - "framework/System.Dynamic.Runtime.dll", - "framework/System.Dynamic.Runtime.pdb", - "framework/System.Formats.Asn1.dll", - "framework/System.Formats.Asn1.pdb", - "framework/System.Formats.Tar.dll", - "framework/System.Formats.Tar.pdb", - "framework/System.Globalization.Calendars.dll", - "framework/System.Globalization.Calendars.pdb", - "framework/System.Globalization.Extensions.dll", - "framework/System.Globalization.Extensions.pdb", - "framework/System.Globalization.dll", - "framework/System.Globalization.pdb", - "framework/System.IO.Compression.Brotli.dll", - "framework/System.IO.Compression.Brotli.pdb", - "framework/System.IO.Compression.FileSystem.dll", - "framework/System.IO.Compression.FileSystem.pdb", - "framework/System.IO.Compression.ZipFile.dll", - "framework/System.IO.Compression.ZipFile.pdb", - "framework/System.IO.Compression.dll", - "framework/System.IO.Compression.pdb", - "framework/System.IO.FileSystem.AccessControl.dll", - "framework/System.IO.FileSystem.AccessControl.pdb", - "framework/System.IO.FileSystem.DriveInfo.dll", - "framework/System.IO.FileSystem.DriveInfo.pdb", - "framework/System.IO.FileSystem.Primitives.dll", - "framework/System.IO.FileSystem.Primitives.pdb", - "framework/System.IO.FileSystem.Watcher.dll", - "framework/System.IO.FileSystem.Watcher.pdb", - "framework/System.IO.FileSystem.dll", - "framework/System.IO.FileSystem.pdb", - "framework/System.IO.IsolatedStorage.dll", - "framework/System.IO.IsolatedStorage.pdb", - "framework/System.IO.MemoryMappedFiles.dll", - "framework/System.IO.MemoryMappedFiles.pdb", - "framework/System.IO.Pipelines.dll", - "framework/System.IO.Pipelines.pdb", - "framework/System.IO.Pipes.AccessControl.dll", - "framework/System.IO.Pipes.AccessControl.pdb", - "framework/System.IO.Pipes.dll", - "framework/System.IO.Pipes.pdb", - "framework/System.IO.UnmanagedMemoryStream.dll", - "framework/System.IO.UnmanagedMemoryStream.pdb", - "framework/System.IO.dll", - "framework/System.IO.pdb", - "framework/System.Linq.Expressions.dll", - "framework/System.Linq.Expressions.pdb", - "framework/System.Linq.Parallel.dll", - "framework/System.Linq.Parallel.pdb", - "framework/System.Linq.Queryable.dll", - "framework/System.Linq.Queryable.pdb", - "framework/System.Linq.dll", - "framework/System.Linq.pdb", - "framework/System.Memory.dll", - "framework/System.Memory.pdb", - "framework/System.Net.Http.Json.dll", - "framework/System.Net.Http.Json.pdb", - "framework/System.Net.Http.dll", - "framework/System.Net.Http.pdb", - "framework/System.Net.HttpListener.dll", - "framework/System.Net.HttpListener.pdb", - "framework/System.Net.Mail.dll", - "framework/System.Net.Mail.pdb", - "framework/System.Net.NameResolution.dll", - "framework/System.Net.NameResolution.pdb", - "framework/System.Net.NetworkInformation.dll", - "framework/System.Net.NetworkInformation.pdb", - "framework/System.Net.Ping.dll", - "framework/System.Net.Ping.pdb", - "framework/System.Net.Primitives.dll", - "framework/System.Net.Primitives.pdb", - "framework/System.Net.Quic.dll", - "framework/System.Net.Quic.pdb", - "framework/System.Net.Requests.dll", - "framework/System.Net.Requests.pdb", - "framework/System.Net.Security.dll", - "framework/System.Net.Security.pdb", - "framework/System.Net.ServicePoint.dll", - "framework/System.Net.ServicePoint.pdb", - "framework/System.Net.Sockets.dll", - "framework/System.Net.Sockets.pdb", - "framework/System.Net.WebClient.dll", - "framework/System.Net.WebClient.pdb", - "framework/System.Net.WebHeaderCollection.dll", - "framework/System.Net.WebHeaderCollection.pdb", - "framework/System.Net.WebProxy.dll", - "framework/System.Net.WebProxy.pdb", - "framework/System.Net.WebSockets.Client.dll", - "framework/System.Net.WebSockets.Client.pdb", - "framework/System.Net.WebSockets.dll", - "framework/System.Net.WebSockets.pdb", - "framework/System.Net.dll", - "framework/System.Net.pdb", - "framework/System.Numerics.Vectors.dll", - "framework/System.Numerics.Vectors.pdb", - "framework/System.Numerics.dll", - "framework/System.Numerics.pdb", - "framework/System.ObjectModel.dll", - "framework/System.ObjectModel.pdb", - "framework/System.Private.DataContractSerialization.dll", - "framework/System.Private.DataContractSerialization.pdb", - "framework/System.Private.Uri.dll", - "framework/System.Private.Uri.pdb", - "framework/System.Private.Xml.Linq.dll", - "framework/System.Private.Xml.Linq.pdb", - "framework/System.Private.Xml.dll", - "framework/System.Private.Xml.pdb", - "framework/System.Reflection.DispatchProxy.dll", - "framework/System.Reflection.DispatchProxy.pdb", - "framework/System.Reflection.Emit.ILGeneration.dll", - "framework/System.Reflection.Emit.ILGeneration.pdb", - "framework/System.Reflection.Emit.Lightweight.dll", - "framework/System.Reflection.Emit.Lightweight.pdb", - "framework/System.Reflection.Emit.dll", - "framework/System.Reflection.Emit.pdb", - "framework/System.Reflection.Extensions.dll", - "framework/System.Reflection.Extensions.pdb", - "framework/System.Reflection.Metadata.dll", - "framework/System.Reflection.Metadata.pdb", - "framework/System.Reflection.Primitives.dll", - "framework/System.Reflection.Primitives.pdb", - "framework/System.Reflection.TypeExtensions.dll", - "framework/System.Reflection.TypeExtensions.pdb", - "framework/System.Reflection.dll", - "framework/System.Reflection.pdb", - "framework/System.Resources.Reader.dll", - "framework/System.Resources.Reader.pdb", - "framework/System.Resources.ResourceManager.dll", - "framework/System.Resources.ResourceManager.pdb", - "framework/System.Resources.Writer.dll", - "framework/System.Resources.Writer.pdb", - "framework/System.Runtime.CompilerServices.Unsafe.dll", - "framework/System.Runtime.CompilerServices.Unsafe.pdb", - "framework/System.Runtime.CompilerServices.VisualC.dll", - "framework/System.Runtime.CompilerServices.VisualC.pdb", - "framework/System.Runtime.Extensions.dll", - "framework/System.Runtime.Extensions.pdb", - "framework/System.Runtime.Handles.dll", - "framework/System.Runtime.Handles.pdb", - "framework/System.Runtime.InteropServices.JavaScript.dll", - "framework/System.Runtime.InteropServices.JavaScript.pdb", - "framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "framework/System.Runtime.InteropServices.RuntimeInformation.pdb", - "framework/System.Runtime.InteropServices.dll", - "framework/System.Runtime.InteropServices.pdb", - "framework/System.Runtime.Intrinsics.dll", - "framework/System.Runtime.Intrinsics.pdb", - "framework/System.Runtime.Loader.dll", - "framework/System.Runtime.Loader.pdb", - "framework/System.Runtime.Numerics.dll", - "framework/System.Runtime.Numerics.pdb", - "framework/System.Runtime.Serialization.Formatters.dll", - "framework/System.Runtime.Serialization.Formatters.pdb", - "framework/System.Runtime.Serialization.Json.dll", - "framework/System.Runtime.Serialization.Json.pdb", - "framework/System.Runtime.Serialization.Primitives.dll", - "framework/System.Runtime.Serialization.Primitives.pdb", - "framework/System.Runtime.Serialization.Xml.dll", - "framework/System.Runtime.Serialization.Xml.pdb", - "framework/System.Runtime.Serialization.dll", - "framework/System.Runtime.Serialization.pdb", - "framework/System.Runtime.dll", - "framework/System.Runtime.pdb", - "framework/System.Security.AccessControl.dll", - "framework/System.Security.AccessControl.pdb", - "framework/System.Security.Claims.dll", - "framework/System.Security.Claims.pdb", - "framework/System.Security.Cryptography.Algorithms.dll", - "framework/System.Security.Cryptography.Algorithms.pdb", - "framework/System.Security.Cryptography.Cng.dll", - "framework/System.Security.Cryptography.Cng.pdb", - "framework/System.Security.Cryptography.Csp.dll", - "framework/System.Security.Cryptography.Csp.pdb", - "framework/System.Security.Cryptography.Encoding.dll", - "framework/System.Security.Cryptography.Encoding.pdb", - "framework/System.Security.Cryptography.OpenSsl.dll", - "framework/System.Security.Cryptography.OpenSsl.pdb", - "framework/System.Security.Cryptography.Primitives.dll", - "framework/System.Security.Cryptography.Primitives.pdb", - "framework/System.Security.Cryptography.X509Certificates.dll", - "framework/System.Security.Cryptography.X509Certificates.pdb", - "framework/System.Security.Cryptography.dll", - "framework/System.Security.Cryptography.pdb", - "framework/System.Security.Principal.Windows.dll", - "framework/System.Security.Principal.Windows.pdb", - "framework/System.Security.Principal.dll", - "framework/System.Security.Principal.pdb", - "framework/System.Security.SecureString.dll", - "framework/System.Security.SecureString.pdb", - "framework/System.Security.dll", - "framework/System.Security.pdb", - "framework/System.ServiceModel.Web.dll", - "framework/System.ServiceModel.Web.pdb", - "framework/System.ServiceProcess.dll", - "framework/System.ServiceProcess.pdb", - "framework/System.Text.Encoding.CodePages.dll", - "framework/System.Text.Encoding.CodePages.pdb", - "framework/System.Text.Encoding.Extensions.dll", - "framework/System.Text.Encoding.Extensions.pdb", - "framework/System.Text.Encoding.dll", - "framework/System.Text.Encoding.pdb", - "framework/System.Text.Encodings.Web.dll", - "framework/System.Text.Encodings.Web.pdb", - "framework/System.Text.Json.dll", - "framework/System.Text.Json.pdb", - "framework/System.Text.RegularExpressions.dll", - "framework/System.Text.RegularExpressions.pdb", - "framework/System.Threading.Channels.dll", - "framework/System.Threading.Channels.pdb", - "framework/System.Threading.Overlapped.dll", - "framework/System.Threading.Overlapped.pdb", - "framework/System.Threading.Tasks.Dataflow.dll", - "framework/System.Threading.Tasks.Dataflow.pdb", - "framework/System.Threading.Tasks.Extensions.dll", - "framework/System.Threading.Tasks.Extensions.pdb", - "framework/System.Threading.Tasks.Parallel.dll", - "framework/System.Threading.Tasks.Parallel.pdb", - "framework/System.Threading.Tasks.dll", - "framework/System.Threading.Tasks.pdb", - "framework/System.Threading.Thread.dll", - "framework/System.Threading.Thread.pdb", - "framework/System.Threading.ThreadPool.dll", - "framework/System.Threading.ThreadPool.pdb", - "framework/System.Threading.Timer.dll", - "framework/System.Threading.Timer.pdb", - "framework/System.Threading.dll", - "framework/System.Threading.pdb", - "framework/System.Transactions.Local.dll", - "framework/System.Transactions.Local.pdb", - "framework/System.Transactions.dll", - "framework/System.Transactions.pdb", - "framework/System.ValueTuple.dll", - "framework/System.ValueTuple.pdb", - "framework/System.Web.HttpUtility.dll", - "framework/System.Web.HttpUtility.pdb", - "framework/System.Web.dll", - "framework/System.Web.pdb", - "framework/System.Windows.dll", - "framework/System.Windows.pdb", - "framework/System.Xml.Linq.dll", - "framework/System.Xml.Linq.pdb", - "framework/System.Xml.ReaderWriter.dll", - "framework/System.Xml.ReaderWriter.pdb", - "framework/System.Xml.Serialization.dll", - "framework/System.Xml.Serialization.pdb", - "framework/System.Xml.XDocument.dll", - "framework/System.Xml.XDocument.pdb", - "framework/System.Xml.XPath.XDocument.dll", - "framework/System.Xml.XPath.XDocument.pdb", - "framework/System.Xml.XPath.dll", - "framework/System.Xml.XPath.pdb", - "framework/System.Xml.XmlDocument.dll", - "framework/System.Xml.XmlDocument.pdb", - "framework/System.Xml.XmlSerializer.dll", - "framework/System.Xml.XmlSerializer.pdb", - "framework/System.Xml.dll", - "framework/System.Xml.pdb", - "framework/System.dll", - "framework/System.pdb", - "framework/WindowsBase.dll", - "framework/WindowsBase.pdb", - "framework/icudt.dat", - "framework/icudt_CJK.dat", - "framework/icudt_EFIGS.dat", - "framework/icudt_hybrid.dat", - "framework/icudt_no_CJK.dat", - "framework/libSystem.Globalization.Native.Icudt.a", - "framework/libSystem.Globalization.Native.a", - "framework/libSystem.IO.Compression.Native.a", - "framework/libSystem.Native.TimeZoneData.Disabled.a", - "framework/libSystem.Native.TimeZoneData.a", - "framework/libSystem.Native.a", - "framework/libicudata.a", - "framework/libicui18n.a", - "framework/libicuuc.a", - "framework/mscorlib.dll", - "framework/mscorlib.pdb", - "framework/netstandard.dll", - "framework/netstandard.pdb", - "mibc/DotNet_Adhoc.mibc", - "mibc/DotNet_FSharp.mibc", - "mibc/DotNet_FirstTimeXP.mibc", - "mibc/DotNet_HelloWorld.mibc", - "mibc/DotNet_OrchardCore.mibc", - "mibc/DotNet_TechEmpower.mibc", - "runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm.nuspec", - "sdk/System.Private.CoreLib.dll", - "sdk/System.Private.CoreLib.pdb", - "sdk/System.Private.CoreLib.xml", - "sdk/System.Private.DisabledReflection.dll", - "sdk/System.Private.DisabledReflection.pdb", - "sdk/System.Private.DisabledReflection.xml", - "sdk/System.Private.Reflection.Execution.dll", - "sdk/System.Private.Reflection.Execution.pdb", - "sdk/System.Private.Reflection.Execution.xml", - "sdk/System.Private.StackTraceMetadata.dll", - "sdk/System.Private.StackTraceMetadata.pdb", - "sdk/System.Private.StackTraceMetadata.xml", - "sdk/System.Private.TypeLoader.dll", - "sdk/System.Private.TypeLoader.pdb", - "sdk/System.Private.TypeLoader.xml", - "sdk/libCppExceptionHandling.a", - "sdk/libEmulatedExceptionHandling.a", - "sdk/libPortableRuntime.a", - "sdk/libWasmExceptionHandling.a", - "sdk/libbootstrapper.o", - "sdk/libbootstrapperdll.o", - "sdk/libstandalonegc-disabled.a", - "sdk/libstdc++compat.a", - "tools/netstandard/ILCompiler.Build.Tasks.deps.json", - "tools/netstandard/ILCompiler.Build.Tasks.dll", - "tools/netstandard/ILCompiler.Build.Tasks.pdb" - ] - }, - "runtime.win-x64.Microsoft.DotNet.ILCompiler.LLVM/9.0.0-preview.5.24304.1": { - "sha512": "P0RPQhDuIltHzfHsVLwxvHCE3nCz/6m4B4oh8OWd4EGn11gHtnzAKoKaIbX9c3VZPMHPGxlmsSGmofMWPhLtRg==", - "type": "package", - "path": "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/BuildFrameworkNativeObjects.proj", - "build/DotNetJsApi.targets", - "build/Microsoft.DotNet.ILCompiler.LLVM.props", - "build/Microsoft.DotNet.ILCompiler.LLVM.targets", - "build/Microsoft.DotNet.ILCompiler.SingleEntry.targets", - "build/Microsoft.DotNet.ILCompiler.props", - "build/Microsoft.NETCore.Native.Publish.targets", - "build/Microsoft.NETCore.Native.Unix.targets", - "build/Microsoft.NETCore.Native.Wasm.targets", - "build/Microsoft.NETCore.Native.Windows.targets", - "build/Microsoft.NETCore.Native.targets", - "build/NativeAOT.natstepfilter", - "build/NativeAOT.natvis", - "build/OverrideImportRuntimeIlcPackageTarget.targets", - "build/WindowsAPIs.txt", - "build/findvcvarsall.bat", - "framework/Microsoft.CSharp.dll", - "framework/Microsoft.CSharp.pdb", - "framework/Microsoft.VisualBasic.Core.dll", - "framework/Microsoft.VisualBasic.Core.pdb", - "framework/Microsoft.VisualBasic.dll", - "framework/Microsoft.VisualBasic.pdb", - "framework/Microsoft.Win32.Primitives.dll", - "framework/Microsoft.Win32.Primitives.pdb", - "framework/Microsoft.Win32.Registry.dll", - "framework/Microsoft.Win32.Registry.pdb", - "framework/System.AppContext.dll", - "framework/System.AppContext.pdb", - "framework/System.Buffers.dll", - "framework/System.Buffers.pdb", - "framework/System.Collections.Concurrent.dll", - "framework/System.Collections.Concurrent.pdb", - "framework/System.Collections.Immutable.dll", - "framework/System.Collections.Immutable.pdb", - "framework/System.Collections.NonGeneric.dll", - "framework/System.Collections.NonGeneric.pdb", - "framework/System.Collections.Specialized.dll", - "framework/System.Collections.Specialized.pdb", - "framework/System.Collections.dll", - "framework/System.Collections.pdb", - "framework/System.ComponentModel.Annotations.dll", - "framework/System.ComponentModel.Annotations.pdb", - "framework/System.ComponentModel.DataAnnotations.dll", - "framework/System.ComponentModel.DataAnnotations.pdb", - "framework/System.ComponentModel.EventBasedAsync.dll", - "framework/System.ComponentModel.EventBasedAsync.pdb", - "framework/System.ComponentModel.Primitives.dll", - "framework/System.ComponentModel.Primitives.pdb", - "framework/System.ComponentModel.TypeConverter.dll", - "framework/System.ComponentModel.TypeConverter.pdb", - "framework/System.ComponentModel.dll", - "framework/System.ComponentModel.pdb", - "framework/System.Configuration.dll", - "framework/System.Configuration.pdb", - "framework/System.Console.dll", - "framework/System.Console.pdb", - "framework/System.Core.dll", - "framework/System.Core.pdb", - "framework/System.Data.Common.dll", - "framework/System.Data.Common.pdb", - "framework/System.Data.DataSetExtensions.dll", - "framework/System.Data.DataSetExtensions.pdb", - "framework/System.Data.dll", - "framework/System.Data.pdb", - "framework/System.Diagnostics.Contracts.dll", - "framework/System.Diagnostics.Contracts.pdb", - "framework/System.Diagnostics.Debug.dll", - "framework/System.Diagnostics.Debug.pdb", - "framework/System.Diagnostics.DiagnosticSource.dll", - "framework/System.Diagnostics.DiagnosticSource.pdb", - "framework/System.Diagnostics.FileVersionInfo.dll", - "framework/System.Diagnostics.FileVersionInfo.pdb", - "framework/System.Diagnostics.Process.dll", - "framework/System.Diagnostics.Process.pdb", - "framework/System.Diagnostics.StackTrace.dll", - "framework/System.Diagnostics.StackTrace.pdb", - "framework/System.Diagnostics.TextWriterTraceListener.dll", - "framework/System.Diagnostics.TextWriterTraceListener.pdb", - "framework/System.Diagnostics.Tools.dll", - "framework/System.Diagnostics.Tools.pdb", - "framework/System.Diagnostics.TraceSource.dll", - "framework/System.Diagnostics.TraceSource.pdb", - "framework/System.Diagnostics.Tracing.dll", - "framework/System.Diagnostics.Tracing.pdb", - "framework/System.Drawing.Primitives.dll", - "framework/System.Drawing.Primitives.pdb", - "framework/System.Drawing.dll", - "framework/System.Drawing.pdb", - "framework/System.Dynamic.Runtime.dll", - "framework/System.Dynamic.Runtime.pdb", - "framework/System.Formats.Asn1.dll", - "framework/System.Formats.Asn1.pdb", - "framework/System.Formats.Tar.dll", - "framework/System.Formats.Tar.pdb", - "framework/System.Globalization.Calendars.dll", - "framework/System.Globalization.Calendars.pdb", - "framework/System.Globalization.Extensions.dll", - "framework/System.Globalization.Extensions.pdb", - "framework/System.Globalization.Native.pdb", - "framework/System.Globalization.dll", - "framework/System.Globalization.pdb", - "framework/System.IO.Compression.Brotli.dll", - "framework/System.IO.Compression.Brotli.pdb", - "framework/System.IO.Compression.FileSystem.dll", - "framework/System.IO.Compression.FileSystem.pdb", - "framework/System.IO.Compression.Native.dll", - "framework/System.IO.Compression.Native.pdb", - "framework/System.IO.Compression.ZipFile.dll", - "framework/System.IO.Compression.ZipFile.pdb", - "framework/System.IO.Compression.dll", - "framework/System.IO.Compression.pdb", - "framework/System.IO.FileSystem.AccessControl.dll", - "framework/System.IO.FileSystem.AccessControl.pdb", - "framework/System.IO.FileSystem.DriveInfo.dll", - "framework/System.IO.FileSystem.DriveInfo.pdb", - "framework/System.IO.FileSystem.Primitives.dll", - "framework/System.IO.FileSystem.Primitives.pdb", - "framework/System.IO.FileSystem.Watcher.dll", - "framework/System.IO.FileSystem.Watcher.pdb", - "framework/System.IO.FileSystem.dll", - "framework/System.IO.FileSystem.pdb", - "framework/System.IO.IsolatedStorage.dll", - "framework/System.IO.IsolatedStorage.pdb", - "framework/System.IO.MemoryMappedFiles.dll", - "framework/System.IO.MemoryMappedFiles.pdb", - "framework/System.IO.Pipelines.dll", - "framework/System.IO.Pipelines.pdb", - "framework/System.IO.Pipes.AccessControl.dll", - "framework/System.IO.Pipes.AccessControl.pdb", - "framework/System.IO.Pipes.dll", - "framework/System.IO.Pipes.pdb", - "framework/System.IO.UnmanagedMemoryStream.dll", - "framework/System.IO.UnmanagedMemoryStream.pdb", - "framework/System.IO.dll", - "framework/System.IO.pdb", - "framework/System.Linq.Expressions.dll", - "framework/System.Linq.Expressions.pdb", - "framework/System.Linq.Parallel.dll", - "framework/System.Linq.Parallel.pdb", - "framework/System.Linq.Queryable.dll", - "framework/System.Linq.Queryable.pdb", - "framework/System.Linq.dll", - "framework/System.Linq.pdb", - "framework/System.Memory.dll", - "framework/System.Memory.pdb", - "framework/System.Net.Http.Json.dll", - "framework/System.Net.Http.Json.pdb", - "framework/System.Net.Http.dll", - "framework/System.Net.Http.pdb", - "framework/System.Net.HttpListener.dll", - "framework/System.Net.HttpListener.pdb", - "framework/System.Net.Mail.dll", - "framework/System.Net.Mail.pdb", - "framework/System.Net.NameResolution.dll", - "framework/System.Net.NameResolution.pdb", - "framework/System.Net.NetworkInformation.dll", - "framework/System.Net.NetworkInformation.pdb", - "framework/System.Net.Ping.dll", - "framework/System.Net.Ping.pdb", - "framework/System.Net.Primitives.dll", - "framework/System.Net.Primitives.pdb", - "framework/System.Net.Quic.dll", - "framework/System.Net.Quic.pdb", - "framework/System.Net.Requests.dll", - "framework/System.Net.Requests.pdb", - "framework/System.Net.Security.dll", - "framework/System.Net.Security.pdb", - "framework/System.Net.ServicePoint.dll", - "framework/System.Net.ServicePoint.pdb", - "framework/System.Net.Sockets.dll", - "framework/System.Net.Sockets.pdb", - "framework/System.Net.WebClient.dll", - "framework/System.Net.WebClient.pdb", - "framework/System.Net.WebHeaderCollection.dll", - "framework/System.Net.WebHeaderCollection.pdb", - "framework/System.Net.WebProxy.dll", - "framework/System.Net.WebProxy.pdb", - "framework/System.Net.WebSockets.Client.dll", - "framework/System.Net.WebSockets.Client.pdb", - "framework/System.Net.WebSockets.dll", - "framework/System.Net.WebSockets.pdb", - "framework/System.Net.dll", - "framework/System.Net.pdb", - "framework/System.Numerics.Vectors.dll", - "framework/System.Numerics.Vectors.pdb", - "framework/System.Numerics.dll", - "framework/System.Numerics.pdb", - "framework/System.ObjectModel.dll", - "framework/System.ObjectModel.pdb", - "framework/System.Private.DataContractSerialization.dll", - "framework/System.Private.DataContractSerialization.pdb", - "framework/System.Private.Uri.dll", - "framework/System.Private.Uri.pdb", - "framework/System.Private.Xml.Linq.dll", - "framework/System.Private.Xml.Linq.pdb", - "framework/System.Private.Xml.dll", - "framework/System.Private.Xml.pdb", - "framework/System.Reflection.DispatchProxy.dll", - "framework/System.Reflection.DispatchProxy.pdb", - "framework/System.Reflection.Emit.ILGeneration.dll", - "framework/System.Reflection.Emit.ILGeneration.pdb", - "framework/System.Reflection.Emit.Lightweight.dll", - "framework/System.Reflection.Emit.Lightweight.pdb", - "framework/System.Reflection.Emit.dll", - "framework/System.Reflection.Emit.pdb", - "framework/System.Reflection.Extensions.dll", - "framework/System.Reflection.Extensions.pdb", - "framework/System.Reflection.Metadata.dll", - "framework/System.Reflection.Metadata.pdb", - "framework/System.Reflection.Primitives.dll", - "framework/System.Reflection.Primitives.pdb", - "framework/System.Reflection.TypeExtensions.dll", - "framework/System.Reflection.TypeExtensions.pdb", - "framework/System.Reflection.dll", - "framework/System.Reflection.pdb", - "framework/System.Resources.Reader.dll", - "framework/System.Resources.Reader.pdb", - "framework/System.Resources.ResourceManager.dll", - "framework/System.Resources.ResourceManager.pdb", - "framework/System.Resources.Writer.dll", - "framework/System.Resources.Writer.pdb", - "framework/System.Runtime.CompilerServices.Unsafe.dll", - "framework/System.Runtime.CompilerServices.Unsafe.pdb", - "framework/System.Runtime.CompilerServices.VisualC.dll", - "framework/System.Runtime.CompilerServices.VisualC.pdb", - "framework/System.Runtime.Extensions.dll", - "framework/System.Runtime.Extensions.pdb", - "framework/System.Runtime.Handles.dll", - "framework/System.Runtime.Handles.pdb", - "framework/System.Runtime.InteropServices.JavaScript.dll", - "framework/System.Runtime.InteropServices.JavaScript.pdb", - "framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "framework/System.Runtime.InteropServices.RuntimeInformation.pdb", - "framework/System.Runtime.InteropServices.dll", - "framework/System.Runtime.InteropServices.pdb", - "framework/System.Runtime.Intrinsics.dll", - "framework/System.Runtime.Intrinsics.pdb", - "framework/System.Runtime.Loader.dll", - "framework/System.Runtime.Loader.pdb", - "framework/System.Runtime.Numerics.dll", - "framework/System.Runtime.Numerics.pdb", - "framework/System.Runtime.Serialization.Formatters.dll", - "framework/System.Runtime.Serialization.Formatters.pdb", - "framework/System.Runtime.Serialization.Json.dll", - "framework/System.Runtime.Serialization.Json.pdb", - "framework/System.Runtime.Serialization.Primitives.dll", - "framework/System.Runtime.Serialization.Primitives.pdb", - "framework/System.Runtime.Serialization.Xml.dll", - "framework/System.Runtime.Serialization.Xml.pdb", - "framework/System.Runtime.Serialization.dll", - "framework/System.Runtime.Serialization.pdb", - "framework/System.Runtime.dll", - "framework/System.Runtime.pdb", - "framework/System.Security.AccessControl.dll", - "framework/System.Security.AccessControl.pdb", - "framework/System.Security.Claims.dll", - "framework/System.Security.Claims.pdb", - "framework/System.Security.Cryptography.Algorithms.dll", - "framework/System.Security.Cryptography.Algorithms.pdb", - "framework/System.Security.Cryptography.Cng.dll", - "framework/System.Security.Cryptography.Cng.pdb", - "framework/System.Security.Cryptography.Csp.dll", - "framework/System.Security.Cryptography.Csp.pdb", - "framework/System.Security.Cryptography.Encoding.dll", - "framework/System.Security.Cryptography.Encoding.pdb", - "framework/System.Security.Cryptography.OpenSsl.dll", - "framework/System.Security.Cryptography.OpenSsl.pdb", - "framework/System.Security.Cryptography.Primitives.dll", - "framework/System.Security.Cryptography.Primitives.pdb", - "framework/System.Security.Cryptography.X509Certificates.dll", - "framework/System.Security.Cryptography.X509Certificates.pdb", - "framework/System.Security.Cryptography.dll", - "framework/System.Security.Cryptography.pdb", - "framework/System.Security.Principal.Windows.dll", - "framework/System.Security.Principal.Windows.pdb", - "framework/System.Security.Principal.dll", - "framework/System.Security.Principal.pdb", - "framework/System.Security.SecureString.dll", - "framework/System.Security.SecureString.pdb", - "framework/System.Security.dll", - "framework/System.Security.pdb", - "framework/System.ServiceModel.Web.dll", - "framework/System.ServiceModel.Web.pdb", - "framework/System.ServiceProcess.dll", - "framework/System.ServiceProcess.pdb", - "framework/System.Text.Encoding.CodePages.dll", - "framework/System.Text.Encoding.CodePages.pdb", - "framework/System.Text.Encoding.Extensions.dll", - "framework/System.Text.Encoding.Extensions.pdb", - "framework/System.Text.Encoding.dll", - "framework/System.Text.Encoding.pdb", - "framework/System.Text.Encodings.Web.dll", - "framework/System.Text.Encodings.Web.pdb", - "framework/System.Text.Json.dll", - "framework/System.Text.Json.pdb", - "framework/System.Text.RegularExpressions.dll", - "framework/System.Text.RegularExpressions.pdb", - "framework/System.Threading.Channels.dll", - "framework/System.Threading.Channels.pdb", - "framework/System.Threading.Overlapped.dll", - "framework/System.Threading.Overlapped.pdb", - "framework/System.Threading.Tasks.Dataflow.dll", - "framework/System.Threading.Tasks.Dataflow.pdb", - "framework/System.Threading.Tasks.Extensions.dll", - "framework/System.Threading.Tasks.Extensions.pdb", - "framework/System.Threading.Tasks.Parallel.dll", - "framework/System.Threading.Tasks.Parallel.pdb", - "framework/System.Threading.Tasks.dll", - "framework/System.Threading.Tasks.pdb", - "framework/System.Threading.Thread.dll", - "framework/System.Threading.Thread.pdb", - "framework/System.Threading.ThreadPool.dll", - "framework/System.Threading.ThreadPool.pdb", - "framework/System.Threading.Timer.dll", - "framework/System.Threading.Timer.pdb", - "framework/System.Threading.dll", - "framework/System.Threading.pdb", - "framework/System.Transactions.Local.dll", - "framework/System.Transactions.Local.pdb", - "framework/System.Transactions.dll", - "framework/System.Transactions.pdb", - "framework/System.ValueTuple.dll", - "framework/System.ValueTuple.pdb", - "framework/System.Web.HttpUtility.dll", - "framework/System.Web.HttpUtility.pdb", - "framework/System.Web.dll", - "framework/System.Web.pdb", - "framework/System.Windows.dll", - "framework/System.Windows.pdb", - "framework/System.Xml.Linq.dll", - "framework/System.Xml.Linq.pdb", - "framework/System.Xml.ReaderWriter.dll", - "framework/System.Xml.ReaderWriter.pdb", - "framework/System.Xml.Serialization.dll", - "framework/System.Xml.Serialization.pdb", - "framework/System.Xml.XDocument.dll", - "framework/System.Xml.XDocument.pdb", - "framework/System.Xml.XPath.XDocument.dll", - "framework/System.Xml.XPath.XDocument.pdb", - "framework/System.Xml.XPath.dll", - "framework/System.Xml.XPath.pdb", - "framework/System.Xml.XmlDocument.dll", - "framework/System.Xml.XmlDocument.pdb", - "framework/System.Xml.XmlSerializer.dll", - "framework/System.Xml.XmlSerializer.pdb", - "framework/System.Xml.dll", - "framework/System.Xml.pdb", - "framework/System.dll", - "framework/System.pdb", - "framework/WindowsBase.dll", - "framework/WindowsBase.pdb", - "framework/mscorlib.dll", - "framework/mscorlib.pdb", - "framework/msquic.dll", - "framework/msquic.pdb", - "framework/netstandard.dll", - "framework/netstandard.pdb", - "mibc/DotNet_Adhoc.mibc", - "mibc/DotNet_FSharp.mibc", - "mibc/DotNet_FirstTimeXP.mibc", - "mibc/DotNet_HelloWorld.mibc", - "mibc/DotNet_OrchardCore.mibc", - "mibc/DotNet_TechEmpower.mibc", - "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "runtime.win-x64.microsoft.dotnet.ilcompiler.llvm.nuspec", - "sdk/Runtime.ServerGC.GuardCF.lib", - "sdk/Runtime.ServerGC.GuardCF.pdb", - "sdk/Runtime.ServerGC.lib", - "sdk/Runtime.ServerGC.pdb", - "sdk/Runtime.VxsortDisabled.lib", - "sdk/Runtime.VxsortDisabled.pdb", - "sdk/Runtime.VxsortEnabled.GuardCF.lib", - "sdk/Runtime.VxsortEnabled.GuardCF.pdb", - "sdk/Runtime.VxsortEnabled.lib", - "sdk/Runtime.VxsortEnabled.pdb", - "sdk/Runtime.WorkstationGC.lib", - "sdk/Runtime.WorkstationGC.pdb", - "sdk/System.Globalization.Native.Aot.GuardCF.lib", - "sdk/System.Globalization.Native.Aot.GuardCF.pdb", - "sdk/System.Globalization.Native.Aot.lib", - "sdk/System.Globalization.Native.Aot.pdb", - "sdk/System.IO.Compression.Native.Aot.GuardCF.lib", - "sdk/System.IO.Compression.Native.Aot.GuardCF.pdb", - "sdk/System.IO.Compression.Native.Aot.lib", - "sdk/System.IO.Compression.Native.Aot.pdb", - "sdk/System.Private.CoreLib.dll", - "sdk/System.Private.CoreLib.pdb", - "sdk/System.Private.CoreLib.xml", - "sdk/System.Private.DisabledReflection.dll", - "sdk/System.Private.DisabledReflection.pdb", - "sdk/System.Private.DisabledReflection.xml", - "sdk/System.Private.Reflection.Execution.dll", - "sdk/System.Private.Reflection.Execution.pdb", - "sdk/System.Private.Reflection.Execution.xml", - "sdk/System.Private.StackTraceMetadata.dll", - "sdk/System.Private.StackTraceMetadata.pdb", - "sdk/System.Private.StackTraceMetadata.xml", - "sdk/System.Private.TypeLoader.dll", - "sdk/System.Private.TypeLoader.pdb", - "sdk/System.Private.TypeLoader.xml", - "sdk/bootstrapper.GuardCF.obj", - "sdk/bootstrapper.GuardCF.pdb", - "sdk/bootstrapper.obj", - "sdk/bootstrapper.pdb", - "sdk/bootstrapperdll.GuardCF.obj", - "sdk/bootstrapperdll.GuardCF.pdb", - "sdk/bootstrapperdll.obj", - "sdk/bootstrapperdll.pdb", - "sdk/eventpipe-disabled.GuardCF.lib", - "sdk/eventpipe-disabled.GuardCF.pdb", - "sdk/eventpipe-disabled.lib", - "sdk/eventpipe-disabled.pdb", - "sdk/eventpipe-enabled.GuardCF.lib", - "sdk/eventpipe-enabled.GuardCF.pdb", - "sdk/eventpipe-enabled.lib", - "sdk/eventpipe-enabled.pdb", - "sdk/standalonegc-disabled.GuardCF.lib", - "sdk/standalonegc-disabled.GuardCF.pdb", - "sdk/standalonegc-disabled.lib", - "sdk/standalonegc-disabled.pdb", - "sdk/standalonegc-enabled.GuardCF.lib", - "sdk/standalonegc-enabled.GuardCF.pdb", - "sdk/standalonegc-enabled.lib", - "sdk/standalonegc-enabled.pdb", - "tools/ILCompiler.Compiler.pdb", - "tools/ILCompiler.DependencyAnalysisFramework.pdb", - "tools/ILCompiler.LLVM.pdb", - "tools/ILCompiler.MetadataTransform.pdb", - "tools/ILCompiler.RyuJit.pdb", - "tools/ILCompiler.TypeSystem.pdb", - "tools/clrjit_universal_arm64_x64.dll", - "tools/clrjit_universal_arm_x64.dll", - "tools/clrjit_universal_wasm32_x64.dll", - "tools/clrjit_unix_x64_x64.dll", - "tools/clrjit_win_x64_x64.dll", - "tools/clrjit_win_x86_x64.dll", - "tools/ilc.exe", - "tools/ilc.pdb", - "tools/jitinterface_x64.dll", - "tools/libLLVM.dll", - "tools/netstandard/ILCompiler.Build.Tasks.deps.json", - "tools/netstandard/ILCompiler.Build.Tasks.dll", - "tools/netstandard/ILCompiler.Build.Tasks.pdb" - ] - }, - "ByteCodeAlliance.Componentize.DotNet.Wasm.SDK/0.1.0-dev": { - "type": "project", - "path": "componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj", - "msbuildProject": "componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj" - }, - "ByteCodeAlliance.Componentize.DotNet.WitBindgen/0.1.0-dev": { - "type": "project", - "path": "componentize-dotnet/src/WitBindgen/WitBindgen.csproj", - "msbuildProject": "componentize-dotnet/src/WitBindgen/WitBindgen.csproj" - } - }, - "projectFileDependencyGroups": { - "net9.0": [ - "ByteCodeAlliance.Componentize.DotNet.Wasm.SDK >= 0.1.0-dev", - "Microsoft.NET.ILLink.Tasks >= 9.0.0-rc.2.24473.5", - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM >= 10.0.0-alpha.1.24531.4" - ] - }, - "packageFolders": { - "/home/seanomik/.nuget/packages/": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj", - "projectName": "dotnet-guest-test", - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj", - "packagesPath": "/home/seanomik/.nuget/packages/", - "outputPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/nuget.config", - "/home/seanomik/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net9.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": { - "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj": { - "projectPath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/componentize-dotnet/src/WasmComponent.Sdk/WasmComponent.Sdk.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "9.0.100" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[9.0.0-rc.2.24473.5, )", - "autoReferenced": true - }, - "runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM": { - "target": "Package", - "version": "[10.0.0-alpha.1.24531.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[9.0.0-rc.2.24474.3, 9.0.0-rc.2.24474.3]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.100-rc.2.24474.11/PortableRuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "wasi-wasm": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/dotnet-guest-test/obj/project.nuget.cache b/dotnet-guest-test/obj/project.nuget.cache deleted file mode 100644 index 5c13dd3..0000000 --- a/dotnet-guest-test/obj/project.nuget.cache +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "ESLOE/RD2bc=", - "success": true, - "projectFilePath": "/media/data_drive/Development/Rust/lyra-wasm-scripting-test/dotnet-guest-test/dotnet-guest-test.csproj", - "expectedPackageFiles": [ - "/home/seanomik/.nuget/packages/microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1/microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "/home/seanomik/.nuget/packages/microsoft.net.illink.tasks/9.0.0-rc.2.24473.5/microsoft.net.illink.tasks.9.0.0-rc.2.24473.5.nupkg.sha512", - "/home/seanomik/.nuget/packages/runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm/10.0.0-alpha.1.24531.4/runtime.linux-x64.microsoft.dotnet.ilcompiler.llvm.10.0.0-alpha.1.24531.4.nupkg.sha512", - "/home/seanomik/.nuget/packages/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1/runtime.wasi-wasm.microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "/home/seanomik/.nuget/packages/runtime.win-x64.microsoft.dotnet.ilcompiler.llvm/9.0.0-preview.5.24304.1/runtime.win-x64.microsoft.dotnet.ilcompiler.llvm.9.0.0-preview.5.24304.1.nupkg.sha512", - "/home/seanomik/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.0-rc.2.24474.3/microsoft.aspnetcore.app.ref.9.0.0-rc.2.24474.3.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/dotnet-guest-test/wit/deps/lyraapi/ecs.wit b/dotnet-guest-test/wit/deps/lyraapi/ecs.wit new file mode 100644 index 0000000..6fd2d71 --- /dev/null +++ b/dotnet-guest-test/wit/deps/lyraapi/ecs.wit @@ -0,0 +1,81 @@ +package lyra:api; + +interface ecs { + record entity-id { + id: u64, + } + + record entity { + id: entity-id, + generation: u64, + } + + record wasm-type-id { + // represents a u128, can be converted into that with mem::transmute + inner: tuple, + } + + record component-info { + host-name: option, + /// The size of the component in memory. + size: u64, + /// The alignment of the component in memory. + alignment: u64, + /// The type id of the component. + /// + /// This must be unique between component types since its used to identify the components + /// in spawning and querying. + type-id: wasm-type-id, + } + + resource ecs-dynamic-view { + constructor(wrld: borrow, component-infos: list); + + /// Get the bytes of the next row in the view. + /// + /// A row contains multiple component serialized as bytes. The buffer is tighly packed. + next: func() -> option>>; + } + + resource ecs-world { + constructor(); + + /// Spawn an entity. + /// + /// Parameters: + /// * `components`: A tightly packed byte buffer containing the components to spawn + /// with the entity. This expects the components in the same order of `component-infos`. + /// * `component-infos`: A list of `component-infos` uses to identify the components + /// and specify the layouts of them. + spawn: func(components: list, component-infos: list) -> entity; + + /// Insert components into an existing entity. + /// + /// Parameters: + /// * `en`: The entity to insert into. + /// * `components`: A tightly packed byte buffer containing the components to spawn + /// with the entity. This expects the components in the same order of `component-infos`. + /// * `component-infos`: A list of `component-infos` uses to identify the components + /// and specify the layouts of them. + insert: func(en: entity, components: list, component-infos: list); + + /// Query for a list of entities and their components. + /// + /// Parameters: + /// * `component-infos`: The `component-info`'s of the components that you are querying. + /// + /// Returns: an iterator that returns the byte buffers of each row. + view: func(component-infos: list) -> ecs-dynamic-view; + + /// Query for components from a single entity. + /// + /// Parameters: + /// * `en`: The entity to query components from. + /// * `component-infos`: The `component-info`'s of the components that you are querying. + /// + /// Returns: A row of components serialized as bytes. The buffer is tighly packed. + view-one: func(en: entity, component-infos: list) -> option>; + + //with_system: func(stage: string, component-infos: list, system: func(components: list)); + } +} \ No newline at end of file diff --git a/dotnet-guest-test/wit/deps/lyraapi/world.wit b/dotnet-guest-test/wit/deps/lyraapi/world.wit new file mode 100644 index 0000000..4947c02 --- /dev/null +++ b/dotnet-guest-test/wit/deps/lyraapi/world.wit @@ -0,0 +1,5 @@ +package lyra:api; + +world imports { + import ecs; +} \ No newline at end of file diff --git a/dotnet-guest-test/wit/world.wit b/dotnet-guest-test/wit/world.wit new file mode 100644 index 0000000..54a9781 --- /dev/null +++ b/dotnet-guest-test/wit/world.wit @@ -0,0 +1,20 @@ +package component:witguest; + +interface math { + record vec3 { + x: f32, + y: f32, + z: f32, + } +} + +/// An example world for the component to target. +world example { + import math; + use lyra:api/ecs.{ecs-world, entity}; + + import host-print: func(msg: string); + + export on-init: func(game-world: borrow, owning-entity: entity) -> result; + export on-update: func(game-world: borrow, owning-entity: entity) -> result; +} diff --git a/lyra-engine b/lyra-engine index 7ae0eae..62adcf2 160000 --- a/lyra-engine +++ b/lyra-engine @@ -1 +1 @@ -Subproject commit 7ae0eae6ac714d72250149ab6b61a1ac66a5a6a9 +Subproject commit 62adcf2b50a458314f573425061530d3dc3d25da diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..271800c --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "nightly" \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 751c3e7..145ce99 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,12 +1,15 @@ use std::alloc::Layout; +use std::any::TypeId; +use std::collections::HashMap; use std::ptr::NonNull; use anyhow::{anyhow, Context}; use async_trait::async_trait; +use common_api::math::Vec3; use component::witguest::math; use ecs::query::dynamic::{DynamicViewState, DynamicViewStateIter, QueryDynamicType}; -use lyra_ecs::query::dynamic::DynamicViewOne; -use lyra_ecs::World; +use lyra_ecs::{query::dynamic::DynamicViewOne, DynTypeId}; +use lyra_ecs::{ArchetypeEntityId, World}; use lyra_ecs as ecs; @@ -31,7 +34,7 @@ wasmtime::component::bindgen!({ } }); -use lyra::api::ecs as wasm_ecs; +use lyra::api::ecs::{self as wasm_ecs, ComponentInfo}; impl Into for wasm_ecs::WasmTypeId { fn into(self) -> ecs::DynTypeId { @@ -130,19 +133,38 @@ impl wasm_ecs::HostEcsWorld for Imports { .ok_or(WasmError::InvalidResourceHandle("EcsWorld")) .unwrap(); let world = &mut world_entry.world; + let lookup = world.get_resource::().unwrap(); // add the components in the tightly packed `components` buffer into the dynamic bundle let mut bundle = ecs::DynamicBundle::new(); let mut offset = 0; for info in infos { - // SAFETY: The components are tightly packed, adding the offset to the pointer will + // get the full u128 from the u64 2-tuple + let full_id = unsafe { std::mem::transmute::<_, u128>(info.type_id.inner) }; + // Try to get the Native type's ComponentInfo. If something is found, verify that + // the size and alignment match. + let info = match lookup.0.get(&full_id) { + Some(native) => { + let native_align = native.layout().align() as u64; + let native_size = native.layout().size() as u64; + + assert_eq!(native_align, info.alignment, "Native type alignment is different then scripting type alignment!"); + assert_eq!(native_size, info.size, "Native type size is different then scripting type size!"); + + native.clone() + }, + None => info.into() + }; + + // SAFETY: The components are tightly packed. Adding the offset to the pointer will // get the next component in the buffer. let data_ptr = unsafe { NonNull::new_unchecked(components.as_mut_ptr().add(offset)) }; bundle.push_unknown(data_ptr, info.clone().into()); - offset += info.size as usize; + offset += info.layout().size() as usize; } + drop(lookup); let en = world.spawn(bundle); en.into() } @@ -374,6 +396,9 @@ impl wasm_ecs::HostEcsDynamicView for Imports { } } */ +#[derive(Default, Clone)] +struct GuestTypeLookup(HashMap); + #[async_trait] impl wasm_ecs::Host for Imports {} @@ -411,11 +436,17 @@ async fn main() -> wasmtime::Result<()> { ); // Load the component from disk - let bytes = std::fs::read("target/wasm32-wasip1/debug/witguest-component.wasm")?; + //let bytes = std::fs::read("target/wasm32-wasip1/debug/witguest-component.wasm")?; + let bytes = std::fs::read("dotnet-guest-test/bin/Debug/net9.0/wasi-wasm/native/dotnet-guest-test.wasm")?; let component = wasmtime::component::Component::new(&engine, bytes)?; let (script_en, (world_res_a, world_res_b)) = { let mut world = World::new(); + + let mut lookup = GuestTypeLookup::default(); + lookup.0.insert(4124409524, lyra_ecs::ComponentInfo::new::()); + world.add_resource(lookup); + let script_en = world.spawn(()); let data = store.data_mut(); @@ -430,13 +461,41 @@ async fn main() -> wasmtime::Result<()> { }; // Instantiate the component - println!("creating example component"); + println!("RUST: Creating example component"); let instance = linker.instantiate_async(&mut store, &component).await?; call_script_stage_async(&mut store, &instance, "init", world_res_a, script_en.into()).await?; - call_script_stage_async(&mut store, &instance, "update", world_res_b, script_en.into()).await?; + //call_script_stage_async(&mut store, &instance, "update", world_res_b, script_en.into()).await?; + println!("RUST: Guest is done"); + + let rep = world_res_b.rep(); + let w = store.data().world_slab.get(rep as _).unwrap(); + let w = &w.world; + println!("RUST: Got {} archetypes", w.archetype_count()); + for a in w.archetypes.values() { + println!("RUST: Archetype {}", a.id().0); + for col in &a.columns { + println!("RUST: Column type id: {:?}", col.info.type_id()); - println!("Guest is done"); + if col.info.type_id().is_id(DynTypeId::Unknown(4124409524)) { + println!("RUST: Found C# Vec3"); + let pos = unsafe { col.get::(0) }; + println!("RUST: Entity 0 pos: {:?}", *pos); + } + } + } + + let mut dv = w.dynamic_view(); + dv.push(QueryDynamicType::from_info(lyra_ecs::ComponentInfo::new::())); + let iter = dv.into_iter(); + + for (en, comps) in iter { + let first = comps.first().unwrap(); + unsafe { + let v: Vec3 = std::ptr::read(first.ptr.as_ptr() as _); + println!("RUST: Found native Vec3! {:?}", v); + } + } Ok(()) }