丢失我无法包含的程序集

时间:2013-10-17 09:17:03

标签: c# windows-phone-7 windows-phone-8 assemblies .net-assembly

对于我的项目,我需要vectorpolygon类型。我在MSDN上发现我必须在我的项目中包含WindowsBase(见下文),但这不起作用。

using System.Windows
using System.Windows.Windowsbase

我在哪里可以找到要包含的正确程序集?

我可以不添加它们,因为它是一个Windows手机项目吗?

我在互联网上看到其他几个人也有这个问题。

完整错误为Error 1 The type or namespace name 'Vector' could not be found (are you missing a using directive or an assembly reference?)

1 个答案:

答案 0 :(得分:0)

您不能在为Windows Phone 7编译的应用程序中包含桌面WPF引用(请参阅MSDN上的supported platforms)。

你最好重写那段代码(或者用一个反编译器“抓住”它来保持命名空间不变,以防有一天它会被发送到Portable Library)。