Simon
Simon

Reputation: 3285

How to forbid a .NET DLL class library to be referenced

How can I forbid dll class library to be referenced in other solutions?

Upvotes: 3

Views: 901

Answers (4)

k3b
k3b

Reputation: 14755

You can make some dll class methods to fail if it is not used by your own main program.

 Assembly main = System.Reflection.Assembly.GetExecutingAssembly();

 if (main.FullName != .....)
     throw new NotSupportedException();

or

 if (IsSignedWith(main, myCompanysX509Certificate))
     throw new NotSupportedException();

Upvotes: -1

EvilMM
EvilMM

Reputation: 901

You can embed you DLL into your EXE via setting the "Build Action"-Property to "Embedded ressource". Your DLL is not shipped as a single file and no one can use it.

Upvotes: -1

Cody Gray
Cody Gray

Reputation: 244752

You could look into adding a StrongNameIdentityPermission to your class library that matches the strong name of the program you do want to be able to use it with.

Alternatively, you could explore using InternalsVisibleToAttribute, although it may require some design changes in your library code. This should work as long as neither assembly is signed, or both are signed with a strong name. The argument specified on the attribute should match the public key and the name of the assembly that you want to be able to access its internal members.

But really, this will only stop someone who isn't trying very hard to use your library. They won't be able to add a reference, but it doesn't prevent someone from bypassing it through Reflection or disassembling your code. There are always ways around almost any security measure that you implement.

Upvotes: 6

Sachin Shanbhag
Sachin Shanbhag

Reputation: 55489

You can use something called as StrongNameIdentityPermission to prevent others from referencing your library.

Upvotes: 5

Related Questions