Windows如何找不到这个组件?

我一直在我的Windows日志中收到此错误:
 SharePointSocialNetworking.Facebook 
   b0ceb144-b183-4b66-aa10-39fd9ee42bd4 
   Could not load file or assembly 'Microsoft.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=736440c9b414ea16' or one of its dependencies. The system cannot find the file specified. 
但它正在谈论的大会已经在我的GAC中展示: 我在这里错过了什么吗? GAC中的所有内容都与错误消息匹配。窗户怎么能找不到这个?     
已邀请:
在web.config中添加一个SafeControl条目:
<configuration>
...
  <SharePoint>
  ...
    <SafeControls>
      ...
      <SafeControl Assembly="Microsoft.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=736440c9b414ea16" Namespace="Microsoft.Contracts" TypeName="*" Safe="True" />
    </SafeControls>
  ...
  </SharePoint>
...
</configuration>
    
它不仅需要找到Microsoft.Contracts程序集,还要查找其所有依赖项。您需要查看程序集具有哪些依赖项,并确保它们都在GAC中。     
你可以在这里找到图书馆 C: Program Files Reference Assemblies Microsoft Framework.NETFramework v4.0 mscorlib.dll     

要回复问题请先登录注册