我为内部部署的SharePoint 2013网站创建了一个自定义登录页面。然后,我添加了使用Google身份验证登录SharePoint网站的逻辑。当我构建项目时,我收到此错误:
error CS0012: The type 'Google.Apis.Services.BaseClientService' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Apis, Version=1.8.1.31687, Culture=neutral, PublicKeyToken=null'
我已添加此引用。我还添加了对我的GAC的引用。当我双击错误时,我会看到这部分代码:
private PlusService ps = null;
但是我在代码中的行上没有任何红色标记或错误,仅在输出窗口中。我使用Google提供的代码作为示例,我已经从谷歌建议下载了nuget的api引用。有没有人有任何想法或有没有人遇到过这个?