Page 1 of 1

dll's across multiple solutions

Posted: Fri Nov 18, 2016 10:41 pm
by mattmccall
I think I once knew this answer but I cannot find it anywhere.

If you have multiple solutions can you use dll's from one solution to another? I want to say no, but like I said I can't find it anywhere and something in my brain says no.

EX: Solution 1 has a dll, can I use that dll in Solution 2

Re: dll's across multiple solutions

Posted: Mon Nov 21, 2016 1:40 pm
by asdf
Hi Matt,

It is possible to reference one project to another one. Therefore, you will need to create a "ModuleLibrary".
ModuleLib.png
After you created your recording modules in this library, you will have to build the solution.
There will be a *.dll file created in the \bin\debug\ folder.
Now you have to reference this dll file to your other solution. Then you will be able to re-use all modules from the module library in the new solution.
TestLib.png
Please note that you are not able to adapt the recordings from the library in the TestSuite of the new solution. You can only reuse the modules with this approach.

I hope this helps.

Kind regards,
asdf

Re: dll's across multiple solutions

Posted: Mon Nov 21, 2016 8:53 pm
by mattmccall
That does help, thanks!