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

github.com/mono/api-snapshot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2019-12-06 20:44:45 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2019-12-06 20:44:45 +0300
commit5babd5163bbee51001aac17caae43b6782d37ce3 (patch)
tree9bc7d87f0ad3ffb603e0d4a58f96db76c7552045
parentdbcbcaabbef40f1d34b83b79c0e50502d02587d6 (diff)
Apply changes from https://github.com/mono/mono/pull/18026 to API snapshot
-rw-r--r--profiles/monodroid/mscorlib.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/profiles/monodroid/mscorlib.cs b/profiles/monodroid/mscorlib.cs
index 4842cc7..7019bfc 100644
--- a/profiles/monodroid/mscorlib.cs
+++ b/profiles/monodroid/mscorlib.cs
@@ -393,9 +393,12 @@ namespace System
[System.ObsoleteAttribute("Use AppDomainSetup.ShadowCopyDirectories")]
[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)]
public void ClearShadowCopyPath() { }
+ [System.ObsoleteAttribute("AppDomain.CreateDomain will no longer be supported in .NET 5 and later. Consider AssemblyLoadContext when it becomes available https://docs.microsoft.com/en-us/dotnet/core/dependency-loading/understanding-assemblyloadcontext")]
public static System.AppDomain CreateDomain(string friendlyName) { throw null; }
+ [System.ObsoleteAttribute("AppDomain.CreateDomain will no longer be supported in .NET 5 and later. Consider AssemblyLoadContext when it becomes available https://docs.microsoft.com/en-us/dotnet/core/dependency-loading/understanding-assemblyloadcontext")]
public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo) { throw null; }
[System.MonoLimitationAttribute("Currently it does not allow the setup in the other domain")]
+ [System.ObsoleteAttribute("AppDomain.CreateDomain will no longer be supported in .NET 5 and later. Consider AssemblyLoadContext when it becomes available https://docs.microsoft.com/en-us/dotnet/core/dependency-loading/understanding-assemblyloadcontext")]
[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlAppDomain=true)]
public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, System.AppDomainSetup info) { throw null; }
public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, string appBasePath, string appRelativeSearchPath, bool shadowCopyFiles) { throw null; }