How to write assemblies for given dll file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sasi vardhan
    New Member
    • Aug 2011
    • 1

    How to write assemblies for given dll file

    I had only .dll file..i didn't have assembly information i.e., strong name key,assembly manifest etc.

    My question is how to store .dll file in GAC with out having assembly info(strong name key)?is this possible to store .dll file in GAC..
    please provide the information for this question..
    thanks & regards..
  • bvrwoo
    New Member
    • Aug 2011
    • 16

    #2
    You still would need a strong key for GAC assemblies using the command line. A better way is just to write your core in C++ and then use C++/CLI as the wrapper for .NET into a dll linking the your .lib files and .h files to the project.

    Comment

    Working...