delay-sign

Remove signing from an assembly

∥☆過路亽.° 提交于 2019-12-18 16:12:10
问题 I have a project open in Visual Studio (it happens to be Enyim.Caching). This assembly wants to be delay-signed. In fact, it desires so strongly to be delay-signed, that I am unable to force Visual studio to compile it without delay signing. I have unchecked "Delay sign only" and "Sign the assembly" on the Visual Studio project properties box, and rebuilt. The assembly is still marked for delay sign (as shown by sn.exe -v ). I have unloaded the project and verified that the signing is set to

Run Powershell or Command Prompt as administrator during Visual Studio Team Services build

混江龙づ霸主 提交于 2019-12-08 15:20:58
问题 I am working on a project where we are delay signing the assemblies. I need to use the strong name tool a couple times during the build, to turn off strong name verification, and then to fully sign the assemblies before they are packaged. I attempted to use a powershell step to turn off verification, but it came back with this error: Script: $testprojs = gci Project.*.dll -r $testprojs | % { sn -Vr $_ write-output $("Turned off sn verification for " + $_.Name) } Error: Failed to open registry

Remove signing from an assembly

自闭症网瘾萝莉.ら 提交于 2019-11-30 13:53:37
I have a project open in Visual Studio (it happens to be Enyim.Caching). This assembly wants to be delay-signed. In fact, it desires so strongly to be delay-signed, that I am unable to force Visual studio to compile it without delay signing. I have unchecked "Delay sign only" and "Sign the assembly" on the Visual Studio project properties box, and rebuilt. The assembly is still marked for delay sign (as shown by sn.exe -v ). I have unloaded the project and verified that the signing is set to false. When reloading the project, the check boxes for "Sign" and "Delay Sign" are checked. I have

Team Foundation Server Build with password protected codesigning fails

别说谁变了你拦得住时间么 提交于 2019-11-28 04:24:39
I'm trying to setup a continuous integration build on TFS 2008. In the project I want to build I use a key for signing. This key uses a password. I can't get it to build, because during the build TFS wants to show a dialog which can't be shown. I think I need to build the project by hand on the server, but only the TFS explorer and build parts are installed on the server. Any suggestions on how to get my project to build properly? This is the error given by TFS: C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(1805,7): error MSB4018: The "ResolveKeySource" task failed

Team Foundation Server Build with password protected codesigning fails

别说谁变了你拦得住时间么 提交于 2019-11-27 00:23:55
问题 I'm trying to setup a continuous integration build on TFS 2008. In the project I want to build I use a key for signing. This key uses a password. I can't get it to build, because during the build TFS wants to show a dialog which can't be shown. I think I need to build the project by hand on the server, but only the TFS explorer and build parts are installed on the server. Any suggestions on how to get my project to build properly? This is the error given by TFS: C:\WINDOWS\Microsoft.NET