Unable to find manifest signing certificate in the certificate store

VS2010打开同事的项目出错,错误提示是:Unable to find manifest signing certificate in the certificate store,这我可头大了,心想自己辛苦俩月写得程序不会就这么光荣牺牲了吧,找了一下解决方案,发现有两种解决方法:

方法一:把DEF项目的属性->Signing选项->Sign the ClickOnce manifests 勾去掉,这样就可以编绎通过了;

方法二:用记事本打开 *.csproj文件 ,删除下面四句代码:

    <manifestcertificatethumbprint>...</manifestcertificatethumbprint> 
    <manifestkeyfile>...</manifestkeyfile> 
    <generatemanifests>...</generatemanifests> 
    <signmanifests>...</signmanifests>

    这样也可以正常编译。

如果你的项目没有经过发布,就不会有以上问题出现

转自http://blog.csdn.net/Garydeng/article/details/7953143

猜你喜欢

转载自blog.csdn.net/zhuzi2129/article/details/79288105
今日推荐