C ++ Managed Strong Name / Signature

How can I sign a managed C ++ dll with a .pfx file ??

Or is there a way to include the unsigned managed C ++ dll in a signed C # project? I really don't need a signed dll I just need VS to stop giving me an error. "SlimDX assembly reference does not have a strong name." in my C # project that needs to be signed.

+3
source share
1 answer

If you create a dll, there is a post-build step in VS that will allow you to run the signature utility. Check this link (for .Net 4.0, there are other versions available on the page) http://msdn.microsoft.com/en-us/library/xc31ft41.aspx

, dll dll , dll ++/CLI, .

+2

Source: https://habr.com/ru/post/1769467/


All Articles