strongname
InternalsVisibleTo for dynamically generated assembly, but with strong naming
I have a project that uses dynamic code generation to create a proxy class.This proxy class makes use of internal classes of the project (so that implementation details are not exposed) and so I use I[详细]
2023-02-09 13:33 分类:问答Any reason to ship .snk file with the project sources?
Every now and then I see a 开发者_如何学Gosample project on the network which contains a .snk file used for signing the compilation results with a strong name.[详细]
2023-02-08 03:55 分类:问答How does signing with a strong name protect against forging a set of assemblies?
Signing with a strong name (keypair stored in a .snk file) is (among other uses) meant to protect against forging assemblies.[详细]
2023-02-07 16:22 分类:问答Managed C++ Error when using a snk file:: "missing the private key needed for signing"
Why am I getting this error when trying to sign a Managed C++ project using a .snk file. \"......SlimDX\\build\\vs2010\\x86\\Debug\\VOS.snk\' is missing the private key needed for signing\"[详细]
2023-02-05 07:34 分类:问答Assembly needs to be redeployed into GAC every time its user app is changed
So basically we have an strong-names (strongly signed) assembly x.dll which is used by one of our components, App.exe. The signing key of the ass开发者_开发技巧embly is in our repository and it the a[详细]
2023-02-01 05:28 分类:问答Why is it possible to load types in an unsigned assembly from a signed assembly using reflection?
I have two assemblies A and B. A is strong named and B is not. According to MSDN I cannot reference B from A because a strong named assembly can only reference another strong named assembly.[详细]
2023-01-27 19:49 分类:问答Can I convert an assembly to a Strong-Named assembly without recompiling?
I found Microsoft KB artic开发者_如何学Cle: But it looks like they want me to recompile after I have created a key pair.Is there any way to just convert the assembly to a strong named assembly withou[详细]
2023-01-25 14:27 分类:问答managed c++ strong name/signing
How can I sign a managed c++ dll with a .pfx file?? Or is there a way to include the unsigned m开发者_运维问答anaged c++ dll in a signed c# project?[详细]
2023-01-20 09:00 分类:问答Extracting private key from a strong name file?
As the title states, does anyone know how to ex开发者_如何转开发tract the private key from an snk file? We want to use the private key from the StrongName for encryption purposes. I read in:[详细]
2023-01-10 12:54 分类:问答ClickOnce Strong-Name dependency signing
I have a windows application that that a lot of dependant DLLs. When I publish this application it returns an error for one of the DLLs that it must be strongly signed in order to be mark开发者_Python[详细]
2023-01-09 03:05 分类:问答