Cordial greeting!
I have a solution in Visual Studio which has 3 projects:
Project 1 and project 2 refer to project 3 (the DLL) and consume the classes, methods and all contained in that DLL.
As project 1 and 2 make reference, another person could take the same DLL and reference it in its own application, that is, use that dll.
My question is how can I restrict the use of my DLL, even if referenced from another solution or project other than mine, that is, protect the unauthorized use of that .dll
I appreciate if you can give me an example c #
Thanks