Skip to content
This repository was archived by the owner on Oct 27, 2023. It is now read-only.

Commit 680013a

Browse files
authored
Merge pull request #26 from pranavkm/prkrishn/update
Update binary-reference-assemblies
2 parents e68046d + b0fd62e commit 680013a

File tree

7 files changed

+9
-36
lines changed

7 files changed

+9
-36
lines changed

build/monowasm/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CSC ?= csc
55
CSC_COMMON_ARGS := -nologo -noconfig -optimize -nostdlib -unsafe -deterministic -publicsign -debug- -target:library -nowarn:612,618,809
66
Q_CSC = $(if $(V),,@echo "CSC [$(PROFILE)] $(1)";)
77

8-
ASSEMBLIES := mscorlib System System.Xml System.Numerics System.Core System.Net.Http WebAssembly.Net.Http WebAssembly.Net.WebSockets
8+
ASSEMBLIES := mscorlib System System.Xml System.Numerics System.Core System.Net.Http System.Net.Http.WebAssemblyHttpHandler WebAssembly.Net.WebSockets
99

1010
ASSEMBLIES += bare/System
1111

@@ -16,7 +16,7 @@ System.Net.Http_REFS := mscorlib System
1616
System_REFS := mscorlib
1717
System.Numerics_REFS := mscorlib
1818
System.Xml_REFS := mscorlib System
19-
WebAssembly.Net.Http_REFS := mscorlib System System.Core System.Net.Http
19+
System.Net.Http.WebAssemblyHttpHandler_REFS := mscorlib System System.Core System.Net.Http
2020
WebAssembly.Net.WebSockets_REFS := mscorlib System System.Core
2121

2222
bare/System_REFS := mscorlib
@@ -27,7 +27,7 @@ System_CSC_ARGS := ../../src/mono/System.extra.cs
2727
ECMA_KEY := ../../../../mcs/class/ecma.pub # Public Key Token: b77a5c561934e089
2828

2929
ECMA_KEY_ASSEMBLIES := System.Core System.Net.Http System System.Numerics System.Xml mscorlib bare/System
30-
WebAssembly.Net.Http_KEYFILE := ../../../../mcs/class/Open.snk
30+
System.Net.Http.WebAssemblyHttpHandler_KEYFILE := ../../../../mcs/class/Open.snk
3131
WebAssembly.Net.WebSockets_KEYFILE := ../../../../mcs/class/Open.snk
3232

3333
all: $(addsuffix .dll, $(ASSEMBLIES))
6.5 KB
Binary file not shown.

build/monowasm/System.dll

-512 Bytes
Binary file not shown.
-6 KB
Binary file not shown.

build/monowasm/mscorlib.dll

0 Bytes
Binary file not shown.
Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,19 @@
11
[assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
22
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.Default | System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue | System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
3-
[assembly:System.Reflection.AssemblyCompanyAttribute("WebAssembly.Net.Http")]
3+
[assembly:System.Reflection.AssemblyCompanyAttribute("System.Net.Http.WebAssemblyHttpHandler")]
44
[assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
55
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
6-
[assembly:System.Reflection.AssemblyProductAttribute("WebAssembly.Net.Http")]
7-
[assembly:System.Reflection.AssemblyTitleAttribute("WebAssembly.Net.Http")]
6+
[assembly:System.Reflection.AssemblyProductAttribute("System.Net.Http.WebAssemblyHttpHandler")]
7+
[assembly:System.Reflection.AssemblyTitleAttribute("System.Net.Http.WebAssemblyHttpHandler")]
88
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
99
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
1010
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
1111
[assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName="")]
12-
namespace WebAssembly.Net.Http.HttpClient
12+
namespace System.Net.Http
1313
{
14-
public enum FetchCredentialsOption
14+
public partial class WebAssemblyHttpHandler : System.Net.Http.HttpMessageHandler
1515
{
16-
Include = 2,
17-
Omit = 0,
18-
SameOrigin = 1,
19-
}
20-
public enum RequestCache
21-
{
22-
Default = 0,
23-
ForceCache = 4,
24-
NoCache = 3,
25-
NoStore = 1,
26-
OnlyIfCached = 5,
27-
Reload = 2,
28-
}
29-
public enum RequestMode
30-
{
31-
Cors = 2,
32-
Navigate = 3,
33-
NoCors = 1,
34-
SameOrigin = 0,
35-
}
36-
public partial class WasmHttpMessageHandler : System.Net.Http.HttpMessageHandler
37-
{
38-
public WasmHttpMessageHandler() { }
39-
public static WebAssembly.Net.Http.HttpClient.RequestCache Cache { get { throw null; } set { } }
40-
public static WebAssembly.Net.Http.HttpClient.FetchCredentialsOption DefaultCredentials { get { throw null; } set { } }
41-
public static WebAssembly.Net.Http.HttpClient.RequestMode Mode { get { throw null; } set { } }
42-
public static bool StreamingEnabled { get { throw null; } set { } }
43-
public static bool StreamingSupported { get { throw null; } }
16+
public WebAssemblyHttpHandler() { }
4417
protected override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
4518
}
4619
}
File renamed without changes.

0 commit comments

Comments
 (0)