2011-11-13 58 views
0

最初,在Visual Studio中,我單擊調試而不是發佈來在手機7設備上部署我的應用程序。沒有錯誤,完美無瑕!如何在部署電話時引用SMF庫7(發佈)

收到大量錯誤,指出某些庫似乎並不存在於手機中。

例如,從錯誤的整個列表提取物包括

Warning 10 The referenced component 'Microsoft.SilverlightMediaFramework.Utilities' could not be found. 

Warning 3 Could not resolve this reference. Could not locate the assembly "Microsoft.SilverlightMediaFramework.Plugins". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. SLARToolKitWinPhoneSample 

此外,IM也使用Slartookit上電的AR功能。在手機上部署(發佈)也會提示以下錯誤。

Error 11 The type or namespace name 'SLARToolKit' could not be found (are you missing a using directive or an assembly reference?) 

我該怎麼辦?更新手機會解決這個問題嗎?我必須手動安裝嗎?要麼?

感謝

+0

奇怪的是,即使即時仍然得到這些錯誤,應用程序似乎仍然工作正常。但解決它們仍然很好,可能會影響後來的發展。謝謝 – aHaH

回答

0

與任何引用的第三方組件,它們應該被自動複製到XAP。您可以使用任何類型的zip文件工具打開生成的XAP,以確保在構建時正確複製了裝配。

如果是GAC引用的程序集,則可能需要在本地引用它們。

相關問題