Windowsphone 8.1 System.IO.FileNotFoundException dday.ical

时间:2015-07-26 21:28:21

标签: c# dll windows-phone-8.1 dday

我开发了一个windowsphone 8.1应用程序并使用DDay.iCal libery。我把libery包含在nuget中。 我喜欢从Stream加载日历。当我加载它时,我收到以下错误消息:

类型' System.IO.FileNotFoundException'的例外情况发生在DDay.iCal.DLL但未在用户代码中处理 附加信息:无法加载文件或程序集&System; Version,Version = 2.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089'或其中一个依赖项。系统找不到指定的文件。

这是我加载日历的代码:

var str=GenerateStreamFromString(result);
IICalendarCollection calendars = iCalendar.LoadFromStream(str);

1 个答案:

答案 0 :(得分:1)

DLL是针对.Net 2.0 / 3.5编译的,与Windows Phone不兼容。

enter image description here

这就是您收到此错误消息的原因。使用与Windows Phone兼容的库。