2016-12-15 48 views
1

我想在C#中使用github上提供的代碼來實現Microsoft情緒API。我遵循Microsoft Cognitive Service中給出的所有步驟。我有3個錯誤Microsoft Emotion API實現錯誤

Error : The tag 'VideoResultControl' does not exist in XML namespace 'clr-namespace:SampleUserControlLibrary;assembly=SampleUserControlLibrary' 

Error: The tag 'SampleScenarios' does not exist in XML namespace 'clr-namespace:SampleUserControlLibrary;assembly=SampleUserControlLibrary'. 

Error NuGet Package restore failed for project EmotionAPI-WPF-Samples: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters 

我發現了一個類似的問題問here(除了在第三個問題的變化),但沒有答案。

我試圖刪除文件.suo修復的最後一個錯誤,但沒有運氣

回答

2

後的研究時間,我解決了這個解決方案。 對於前兩個錯誤,我發現

認知共Windows是一個git的子模塊

所以,待辦事項是 -

git submodule init 

git submodule update 

對於第三個問題,I temporarily moved the project to an upper directory tree so that the path name is not too long 更多信息可以發現herehere

相關問題