Permission Sets, Attributes

  • Thread starter Thread starter Mythran
  • Start date Start date
M

Mythran

I have 3 projects in a solution; Project1, Project2, and Project3. All 3
projects are given a strong-name using the same snk file.

What I need is to have Project3 not be callable from any assembly exception
Project2. I can use StrongNameIdentityPermissionAttribute to keep
assemblies that don't have the same public key from calling it, but Project1
can still call this assembly...so, are there any attributes I can use to
prevent any other assemblies from calling Project3?

Thanks in advance,
Mythran
 
Hi,

Why dont you make project 3 a private assembly in project 2. That would
be the easiest way to make project 3 only callable from project 2

Ken
 
Back
Top