From ec30ec7b07f50a66dff869be08cf9fd4a902213d Mon Sep 17 00:00:00 2001 From: de4dot Date: Tue, 28 Feb 2012 22:36:35 +0100 Subject: [PATCH] Add CF 2.0/3.5, SL 2.0 ref asm search paths --- de4dot.code/AssemblyResolver.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/de4dot.code/AssemblyResolver.cs b/de4dot.code/AssemblyResolver.cs index 33b96c92..e36df1ef 100644 --- a/de4dot.code/AssemblyResolver.cs +++ b/de4dot.code/AssemblyResolver.cs @@ -47,12 +47,15 @@ namespace de4dot.code { addSilverlightDirs(Path.Combine(path, @"Microsoft Silverlight")); addIfExists(path, @"Microsoft SDKs\Silverlight\v2.0\Libraries\Client"); addIfExists(path, @"Microsoft SDKs\Silverlight\v2.0\Libraries\Server"); + addIfExists(path, @"Microsoft SDKs\Silverlight\v2.0\Reference Assemblies"); addIfExists(path, @"Microsoft SDKs\Silverlight\v3.0\Libraries\Client"); addIfExists(path, @"Microsoft SDKs\Silverlight\v3.0\Libraries\Server"); addIfExists(path, @"Microsoft SDKs\Silverlight\v4.0\Libraries\Client"); addIfExists(path, @"Microsoft SDKs\Silverlight\v4.0\Libraries\Server"); addIfExists(path, @"Microsoft SDKs\Silverlight\v5.0\Libraries\Client"); addIfExists(path, @"Microsoft SDKs\Silverlight\v5.0\Libraries\Server"); + addIfExists(path, @"Microsoft.NET\SDK\CompactFramework\v2.0\WindowsCE"); + addIfExists(path, @"Microsoft.NET\SDK\CompactFramework\v3.5\WindowsCE"); addIfExists(path, @"Reference Assemblies\Microsoft\Framework\Silverlight\v3.0"); addIfExists(path, @"Reference Assemblies\Microsoft\Framework\Silverlight\v4.0"); addIfExists(path, @"Reference Assemblies\Microsoft\Framework\Silverlight\v5.0");