C# signtool error:no certificates were found that met all the given criteria 错误解决方案

程序运行时报错:signtool error:no certificates were found that met all the given criteria (汉译:符号工具错误:没有找到符合所有给定标准的证书)

解决方案:打开项目->属性->签名,去掉为 ClickOnce 清单签名即可。

原文地址:https://www.cnblogs.com/swjian/p/9483471.html

时间: 2024-11-01 16:23:57

C# signtool error:no certificates were found that met all the given criteria 错误解决方案的相关文章

SignTool Error: No certificates were found that met all the given criteria

在使用数字证书给驱动cat包签名时遇到提示错误: SignTool Error: No certificates were found that met all the given criteria 检查pfx证书已经安装,cer证书文件也存在,联网也正常,但是总是提示这个错误. 签名语句为: signtool.exe sign /s root /n "Test Certificate" /t http://timestamp.verisign.com/scripts/timestam

ClickOnce Publishing时报Error:No Certificates were found that met all the given criteria

今天联系WPF时, 报Error,如下图 上网找了半天说证书过期,可以自己建立测试证书,找了好多资源,最后建立成个人信息交换(.pfx) 文件,并且导入VS,但是依然不行. 参考:https://msdn.microsoft.com/zh-cn/library/bfsktky3.aspx,https://technet.microsoft.com/zh-cn/subscriptions/ff550672 最后解决办法是打开Signing页签,按下右中间的Create test Certifica

Windows文件居然有解锁一说,并且还会引起SignTool Error,真是昏倒!

I'm running Windows 7 and when I try to run a batch file, it says, "The publisher could not be verified. Are you sure you want to run this software?" So when I try to sign it with my code signing certificate, it says "SignTool Error: This f

Android Studio上Session 'app': Error Installing APK错误解决方案

我在使用Android Studio的时候,使用自己的魅族(M5 Note)真机调试,运行不成功,提示下面图片中的错误(Session 'app':Error Installing APK). 再经过测试过好几种网上的方法之后,特记录如下,望以后大家少走弯路,希望可以帮助到大家. 可能不同的人使用到的方法都会是下面的不同的方法: 1)连接手机之后,会有显示手机的SDK型号以及API的版本,显示我自己的是魅族M5 Note(Android 6,API23),在我的手机上安装不上,刚开始有人说魅族手

coreseek 在gcc 4.9+ 上编译不通过 [sphinxexpr.o] Error 1 错误解决方案

这几天玩hhvm,把gcc环境都装到4.9了,然后编译coreseek的时候就出问题,google一大圈,貌似捕风捉影看到一些信息说是gcc4.7+的c++作用域必须用this->去引用,这里整理一个补丁仅供大家参考coreseek 在gcc 4.7+ 上编译不通过 [sphinxexpr.o] Error 1 错误解决方案 错误如下:(每个人环境都不太一样,提示错误信息应该不尽相同但出错原因应该都是gcc4.7+以上版本作用域的问题) sphinxexpr.cpp:1047:43: note:

关于 error: LNK1123: failure during conversion to COFF: file invalid or corrupt 错误的解决...

出现上面错误的原因是系统中存在有多个的 cvtres.exe,只需要将旧版的重命名或者删除. 关于 error: LNK1123: failure during conversion to COFF: file invalid or corrupt 错误的解决...

(转:)Visual Studio 2012 编译错误【error C4996: 'scanf': This function or variable may be unsafe. 】的解决方案

在VS 2012 中编译 C 语言项目,如果使用了 scanf 函数,编译时便会提示如下错误: error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 原因是Visual C++ 2012 使用了更加安

VS2008 LINK : fatal error LNK1104: cannot open file 'atls.lib'错误解决方案

用VS 2008编写ATL的64位应用程序时,提示链接错误: VS2008 LINK : fatal error LNK1104: cannot open file 'atls.lib' 问题原因 VS 2008默认并不包含ATL x64的库,需要参照以下文档自行编译,但是编译过程会出错. C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\atlmfc\src\readme.txt 解决方案 通过测试我发现,其它高版本VS,如VS 201

error: jump to case label与crosses initialization of"xx"编译错误

前言 我过去使用vs下的cl编译程序时,从没遇到过此类错误,今天在Qt 5.3的MINGW版本下编译程序时,却出现 error: jump to case label与crosses initialization of"xx"编译错误. 解决方案 在switch语句的内部(包括case语句的内部)都不能声明变量,如需要声明,请在switch语句外面.