What can I call a C ++ assembly in VS2008?

I have no experience developing C ++ on Windows, but I am a C # developer.

I have a wrapper around some native dlls written in C ++. (LGPL project)). I had to use this from a strong named assembly.

How to set strong name of assembly C ++? The Signing tab is not available, as it is in C # projects.

I assume that I need to edit the vcproj file and put a link to the key file, something like

 /KEYFILE:"sgKey.snk" 

which I found on this site: http://www.windows-tech.info/17/6a8f0ab94246fb61.php

I am sure it will be easy as soon as I find the right link. Can someone point me in the right direction?

A simple question for C ++ developers to get some rep points.

Thank.

+3
source share
1 answer

I found him. For some reason, the first time I clicked on a project, the property pages were blank. On retrying, I found it on the project properties page.

Configuration Propertyes|Linker|Advanced|Key File. 

And just enter the path to the snk key file.

Thanks for watching.

+3
source

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


All Articles