[corlib] Add missing API to AppDomainSetup
authorMarek Safar <marek.safar@gmail.com>
Thu, 4 Dec 2014 17:09:28 +0000 (18:09 +0100)
committerMarek Safar <marek.safar@gmail.com>
Thu, 4 Dec 2014 17:49:45 +0000 (18:49 +0100)
mcs/class/corlib/System/AppDomainSetup.cs

index c515ae1785cf0869f85dcfafcbd901db48c8a6d3..d689f379ff24bb7999ef081b05b7efbd9d8160a8 100644 (file)
@@ -297,6 +297,8 @@ namespace System
                        }
                }
 
+               public string TargetFrameworkName { get; set; }
+
                public ActivationArguments ActivationArguments {
                        get {
                                if (_activationArguments != null)
@@ -390,11 +392,9 @@ namespace System
                        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
        }
 }