FindRibbons task failed unexpectedly when building addin for Outlook 2010

余生长醉 提交于 2019-12-01 08:14:14
Swati Gaur

You need to remove the SecurityTransparent attribute from the end of the AssemblyInfo.cs file.

I had the same issue when upgrading my Visual Studio 2010 VSTO projects to Visual Studio 2013. The way I fix the issue was with a combination of two things:

First I removed the reference to the assembly attribute SecurityTransparent from my AssemblyInfo.vb

<Assembly: SecurityTransparent()>

Second I set Copy Local = true on the Microsoft.Office.Tools.Common.v4.0.Utilities reference.

KKG

I was able to fix this error by adding explicit assembly version references in my .csproj. See https://stackoverflow.com/a/29095545/4679952 for details.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!