Skip to content

Commit

Permalink
[corlib] Add missing API to AppDomainSetup
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-safar committed Dec 4, 2014
1 parent 0495330 commit 2fa7448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mcs/class/corlib/System/AppDomainSetup.cs
Expand Up @@ -297,6 +297,8 @@ static string GetAppBase (string appBase)
}
}

public string TargetFrameworkName { get; set; }

public ActivationArguments ActivationArguments {
get {
if (_activationArguments != null)
Expand Down Expand Up @@ -390,11 +392,9 @@ internal void SerializeNonPrimitives ()
serialized_non_primitives = ms.ToArray ();
}

#if NET_4_0
[MonoTODO ("not implemented, does not throw because it's used in testing moonlight")]
public void SetCompatibilitySwitches (IEnumerable<string> switches)
{
}
#endif
}
}

0 comments on commit 2fa7448

Please sign in to comment.