From: Alexandre Mutel Date: Fri, 7 Feb 2014 15:33:23 +0000 (+0900) Subject: [Mono.Linker] Add support for using the linker with assemblies referencing WPF X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=121a4dd89414bd3da568c567945f221bca344c75;p=mono.git [Mono.Linker] Add support for using the linker with assemblies referencing WPF --- diff --git a/mcs/tools/linker/Mono.Linker/LinkContext.cs b/mcs/tools/linker/Mono.Linker/LinkContext.cs index 8d97f8dc150..c4d71083cd5 100644 --- a/mcs/tools/linker/Mono.Linker/LinkContext.cs +++ b/mcs/tools/linker/Mono.Linker/LinkContext.cs @@ -217,6 +217,14 @@ namespace Mono.Linker { case "mscorlib": case "Accessibility": case "Mono.Security": + // WPF + case "PresentationFramework": + case "PresentationCore": + case "WindowsBase": + case "UIAutomationProvider": + case "UIAutomationTypes": + case "PresentationUI": + case "ReachFramework": return true; default: return name.Name.StartsWith ("System")