I have created an excel plug-in in C#. It uses C++ dll native code using dllimport. It works fine on my local machine. Now I want to use it @ another PC/client PC. I have tried regasm also. I registered succesfully like below:
C:\windows\system32>C:\Windows\Microsoft.NET\Framework64\v4.0.30319\regasm /code
base C:\Users\ggirgup\Desktop\CsharpDllcallingCPPDll.dll
Microsoft .NET Framework Assembly Registration Utility version 4.0.30319.17929
for Microsoft .NET Framework version 4.0.30319.17929
Copyright (C) Microsoft Corporation. All rights reserved.
RegAsm : warning RA0000 : Registering an unsigned assembly with /codebase can ca
use your assembly to interfere with other applications that may be installed on
the same computer. The /codebase switch is intended to be used only with signed
assemblies. Please give your assembly a strong name and re-register it.
Types registered successfully
But When I open excel, It is not shown there in plug-ins. So how can I use this C# dll as excel-plugin in another PC?
Thanks in advance SO!