惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

博客园 - 想想

通过 ASP.NET 4.0、Visual Studio 2010 和 IIS7 实现的搜索引擎优化 WidgetIfYr.com:将代码转化为Widget TheUniformProject:1件衣服365种穿法 模板页全球化 使用SandCastle和HTML Help 2.0集成XML代码注释到VS2005和VS2008 iCalendar 中文VS2008安装MVC框架后,不显示相关模板 HttpModule实现简单权限限制访问 什么是数据持久性? 向google,baidu,yahoo,msn,sogou等搜索引擎提交网站 什么是 ASP.NET? (悼念四川地震死难者)使整个网页变黑白色(灰色)的特效代码 window.open 参数 详细说明 Response.Redirect 打开新窗口的方法 如果有一些引用存在于标记中,则不会重命名这些引用,要继续吗 如何用VS2005制作Web安装程序 ASP.NET弹出日历 在IIS 6.0环境下运行ASP.NET 1.1 CSS色谱表
无法在证书存储区中找到清单签名证书
想想 · 2009-03-03 · via 博客园 - 想想


第一种办法:
工程->属性->签名->为ClickOnce清单签名

去掉这个勾就可以了

第二种办法:
用记事本打开对应csproj文件
将文件中的" <SignManifests>true</SignManifests> " 改为 "<SignManifests>false</SignManifests>"保存好就行了!

第三种办法:在vs2005中出现“无法在证书存储区中找到清单签名证书”,解决办法是用记事本打开项目的.csproj文件,删除类似以下xml就能顺利通过编译了

<ManifestCertificateThumbprint>B531F2CF222748C5E29308FC2247704827D1EA8C</ManifestCertificateThumbprint>
       <ManifestKeyFile>xxxx_TemporaryKey.pfx</ManifestKeyFile>
       <GenerateManifests>true</GenerateManifests>
       <SignManifests>true</SignManifests>
       <PublishUrl>D:\xxx\bin\</PublishUrl>
       <Install>true</Install>
       <InstallFrom>Disk</InstallFrom>
       <UpdateEnabled>false</UpdateEnabled>
       <UpdateMode>Foreground</UpdateMode>
       <UpdateInterval>7</UpdateInterval>
       <UpdateIntervalUnits>Days</UpdateIntervalUnits>
       <UpdatePeriodically>false</UpdatePeriodically>
       <UpdateRequired>false</UpdateRequired>
       <MapFileExtensions>true</MapFileExtensions>
       <CreateWebPageOnPublish>false</CreateWebPageOnPublish>
       <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
       <IsWebBootstrapper>false</IsWebBootstrapper>
       <BootstrapperEnabled>true</BootstrapperEnabled>