Skip to content

Commit 07e4979

Browse files
committed
Added System.Memory.dll
So we can use Span and Memory from System
1 parent f2579e7 commit 07e4979

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

wasm/LinkerConfig.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
<assembly fullname="System.Core" />
77
<assembly fullname="System.Collections" />
88
<assembly fullname="System.Net.Http" />
9+
<assembly fullname="System.Memory" />
910
</linker>

wasm/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public static class Program
2424
"System",
2525
"System.Core",
2626
"System.Collections",
27-
"System.Net.Http"
27+
"System.Net.Http",
28+
"System.Memory"
2829
);
2930
private static readonly IEnumerable<string> defaultUsings = new[]
3031
{

0 commit comments

Comments
 (0)