Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lucia <rylucia@microsoft.com>2019-12-13 19:36:08 +0300
committerGitHub <noreply@github.com>2019-12-13 19:36:08 +0300
commit7bc25cef6d4ec4b5bb443cc7e20259c4fea1e354 (patch)
treec9ebc51f1f03e1c17c3ea84e65336156ac8bbac8 /netcore
parentd2539babf4120cc206a62825d4055f688a849169 (diff)
[netcore] Implement AppDomain.AssemblyLoad (#18143)
Diffstat (limited to 'netcore')
-rw-r--r--netcore/CoreFX.issues.rsp1
-rw-r--r--netcore/System.Private.CoreLib/src/LinkerDescriptor/System.Private.CoreLib.xml2
-rw-r--r--netcore/System.Private.CoreLib/src/Mono/MonoDomain.cs7
3 files changed, 0 insertions, 10 deletions
diff --git a/netcore/CoreFX.issues.rsp b/netcore/CoreFX.issues.rsp
index 4d698ea9908..995e0b39b53 100644
--- a/netcore/CoreFX.issues.rsp
+++ b/netcore/CoreFX.issues.rsp
@@ -745,7 +745,6 @@
# These events are not wired up in mono
# https://github.com/mono/mono/issues/16246
-nomethod System.Tests.AppDomainTests.ResourceResolve
--nomethod System.Tests.AppDomainTests.AssemblyLoad
-nomethod System.Tests.AppDomainTests.FirstChanceException_Called
-nomethod System.Tests.AppDomainTests.AssemblyResolve_FirstChanceException
diff --git a/netcore/System.Private.CoreLib/src/LinkerDescriptor/System.Private.CoreLib.xml b/netcore/System.Private.CoreLib/src/LinkerDescriptor/System.Private.CoreLib.xml
index 3215cd0bc5f..c414ec2cc3a 100644
--- a/netcore/System.Private.CoreLib/src/LinkerDescriptor/System.Private.CoreLib.xml
+++ b/netcore/System.Private.CoreLib/src/LinkerDescriptor/System.Private.CoreLib.xml
@@ -5,8 +5,6 @@
<!-- domain.c: mono_defaults.appdomain_class -->
<type fullname="Mono.MonoDomain">
<field name="_mono_app_domain"/>
- <!-- appdomain.c: mono_domain_fire_assembly_load -->
- <method name="DoAssemblyLoad" />
</type>
<!-- appdomain.c: mono_runtime_init -->
diff --git a/netcore/System.Private.CoreLib/src/Mono/MonoDomain.cs b/netcore/System.Private.CoreLib/src/Mono/MonoDomain.cs
index 3e1d7747585..f98f250abc1 100644
--- a/netcore/System.Private.CoreLib/src/Mono/MonoDomain.cs
+++ b/netcore/System.Private.CoreLib/src/Mono/MonoDomain.cs
@@ -17,13 +17,6 @@ namespace Mono
#endregion
#pragma warning restore 169
- public event AssemblyLoadEventHandler AssemblyLoad;
-
- private void DoAssemblyLoad (Assembly assembly)
- {
- return; /* FIXME */
- }
-
public event UnhandledExceptionEventHandler UnhandledException;
public event EventHandler ProcessExit;