I need use RDP in my project, it need create wrapper. So I first add the RDP control to ToolBox, and drag drop it to my Form, it will create two files under obj/debug - AxInterOp.MSTSCLib.Dll and InterOp.MSTSCLib.Dll, and the property of the latter looks like this:
(name)
Copy Local
....
Isolated
Path
...
It looks right, I can set Isolated to true to do Reg-Free. But if I delete the reference and add the reference by myself, the same InterOp.MSTSCLib.dll file, I get a different property this time, it looks like :
Alias
Copy Local
...
Path
..
Specific Version
No isolated now, I am not sure how it works, if I want to copy the two InterOp dlls to anothe machine and add them into another project, what should I do?
thans