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

Commit

Permalink
Merge pull request #26 from pranavkm/prkrishn/update
Browse files Browse the repository at this point in the history
Update binary-reference-assemblies
  • Loading branch information
lewing authored Apr 7, 2020
2 parents e68046d + b0fd62e commit 680013a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 36 deletions.
6 changes: 3 additions & 3 deletions build/monowasm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CSC ?= csc
CSC_COMMON_ARGS := -nologo -noconfig -optimize -nostdlib -unsafe -deterministic -publicsign -debug- -target:library -nowarn:612,618,809
Q_CSC = $(if $(V),,@echo "CSC [$(PROFILE)] $(1)";)

ASSEMBLIES := mscorlib System System.Xml System.Numerics System.Core System.Net.Http WebAssembly.Net.Http WebAssembly.Net.WebSockets
ASSEMBLIES := mscorlib System System.Xml System.Numerics System.Core System.Net.Http System.Net.Http.WebAssemblyHttpHandler WebAssembly.Net.WebSockets

ASSEMBLIES += bare/System

Expand All @@ -16,7 +16,7 @@ System.Net.Http_REFS := mscorlib System
System_REFS := mscorlib
System.Numerics_REFS := mscorlib
System.Xml_REFS := mscorlib System
WebAssembly.Net.Http_REFS := mscorlib System System.Core System.Net.Http
System.Net.Http.WebAssemblyHttpHandler_REFS := mscorlib System System.Core System.Net.Http
WebAssembly.Net.WebSockets_REFS := mscorlib System System.Core

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

ECMA_KEY_ASSEMBLIES := System.Core System.Net.Http System System.Numerics System.Xml mscorlib bare/System
WebAssembly.Net.Http_KEYFILE := ../../../../mcs/class/Open.snk
System.Net.Http.WebAssemblyHttpHandler_KEYFILE := ../../../../mcs/class/Open.snk
WebAssembly.Net.WebSockets_KEYFILE := ../../../../mcs/class/Open.snk

all: $(addsuffix .dll, $(ASSEMBLIES))
Expand Down
Binary file not shown.
Binary file modified build/monowasm/System.dll
Binary file not shown.
Binary file removed build/monowasm/WebAssembly.Net.Http.dll
Binary file not shown.
Binary file modified build/monowasm/mscorlib.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,46 +1,19 @@
[assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.Default | System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue | System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly:System.Reflection.AssemblyCompanyAttribute("WebAssembly.Net.Http")]
[assembly:System.Reflection.AssemblyCompanyAttribute("System.Net.Http.WebAssemblyHttpHandler")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly:System.Reflection.AssemblyProductAttribute("WebAssembly.Net.Http")]
[assembly:System.Reflection.AssemblyTitleAttribute("WebAssembly.Net.Http")]
[assembly:System.Reflection.AssemblyProductAttribute("System.Net.Http.WebAssemblyHttpHandler")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Net.Http.WebAssemblyHttpHandler")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName="")]
namespace WebAssembly.Net.Http.HttpClient
namespace System.Net.Http
{
public enum FetchCredentialsOption
public partial class WebAssemblyHttpHandler : System.Net.Http.HttpMessageHandler
{
Include = 2,
Omit = 0,
SameOrigin = 1,
}
public enum RequestCache
{
Default = 0,
ForceCache = 4,
NoCache = 3,
NoStore = 1,
OnlyIfCached = 5,
Reload = 2,
}
public enum RequestMode
{
Cors = 2,
Navigate = 3,
NoCors = 1,
SameOrigin = 0,
}
public partial class WasmHttpMessageHandler : System.Net.Http.HttpMessageHandler
{
public WasmHttpMessageHandler() { }
public static WebAssembly.Net.Http.HttpClient.RequestCache Cache { get { throw null; } set { } }
public static WebAssembly.Net.Http.HttpClient.FetchCredentialsOption DefaultCredentials { get { throw null; } set { } }
public static WebAssembly.Net.Http.HttpClient.RequestMode Mode { get { throw null; } set { } }
public static bool StreamingEnabled { get { throw null; } set { } }
public static bool StreamingSupported { get { throw null; } }
public WebAssemblyHttpHandler() { }
protected override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
}
}

0 comments on commit 680013a

Please sign in to comment.