oising / strongnaming

A set of PowerShell Cmdlets to facilitate signing of unsigned 3rd party assemblies with a key of your choice, to allow them to be referenced by strongly named projects.
40 stars 6 forks source link

Signing of assembly references #4

Closed Chri-s closed 11 years ago

Chri-s commented 11 years ago

This commit will also add the public key token to all unsigned assembly references because signed assemblies cannot have unsigned assembly references. After that, you must also sign the referenced assemblies

Chri-s commented 11 years ago

Thanks for accepting the merge :) I'm not experienced with Powershell Commandlets or Mono.Cecil, so I just added what that I needed. In my case I added the NuGet package ServiceStack.OrmLite to my project, which is not signed and has dependencies to other ServiceStack packages which are also not signed. So all unsigned references got signed by your cmdlet so that I didn't need to sign the references on my own.

oising commented 10 years ago

I finally got around to pushing a variant of this publically. Sorry it took so long - 1.0.3 now handles this case.