zoukankan      html  css  js  c++  java
  • 无法在证书存储区中找到清单签名证书 解决方法

    在vs2005中出现“无法在证书存储区中找到清单签名证书”,

    解决办法是用记事本打开项目的.csproj文件,

    删除类似以下xml就能顺利通过编译了.

    XML文件如下:

    <ManifestCertificateThumbprint>2EA54AA87930B25390B2382AA6B48B9EC10E9C08</ManifestCertificateThumbprint>
    <ManifestKeyFile>BarCodeTool_TemporaryKey.pfx</ManifestKeyFile>
    <GenerateManifests>true</GenerateManifests>
    <SignManifests>false</SignManifests>
    <SignAssembly>false</SignAssembly>
    <AssemblyOriginatorKeyFile>
    </AssemblyOriginatorKeyFile>
    <PublishUrl>http://localhost/BarCodeTool/</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Web</InstallFrom>
    <UpdateEnabled>true</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <InstallUrl>http://10.0.0.6/BarCodeTool/</InstallUrl>
    <CreateWebPageOnPublish>false</CreateWebPageOnPublish>
    <ApplicationRevision>6</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>

    第二种方法:删除此证书,重新导入新的证书。

  • 相关阅读:
    实现控件的拖拽
    自定义控件——安卓旋转动画
    MD5简单实例
    TextView来实现跑马灯的效果
    Intent的简单使用
    SharedPreferences的封装
    ViewPager+fragment的使用
    安卓定时器
    2020重新出发,MySql基础,MySql视图&索引&存储过程&触发器
    2020重新出发,MySql基础,MySql表数据操作
  • 原文地址:https://www.cnblogs.com/martintuan/p/1961622.html
Copyright © 2011-2022 走看看