Hi all,
I am developing a 3 tier .net application using vs.net.
On complitation the app will have 4 assemblies:
Ntpct.LoanEquipment.BusinessTier.dll
Ntpct.LoanEquipment.DataAccessTier.dll
Ntpct.LoanEquipment.PresentationTier.dll (web app)
Ntpct.Utility.dll
the Utility assembly in the Ntpct namespace has some utility classes that I want to inherit from in the business tier of the Ntpct.LoanEquipment Namespace.
I am using the following code to inherit:
public class User : Ntpct.Utility.BaseUser
I have added a reference to the Ntpct.Utility assembly in the businessTier project however when I compile i get the follwoing error:
c:\ Referenced class 'Ntpct.LoanEquipment.BusinessTier.User' has base class or interface 'Ntpct.Utility.BaseUser' defined in an assembly that is not referenced. You must add a reference to assembly 'Ntpct.Utility'.
please help as I feel i will be losing hair and sleep over this.
p.s I have tried adding the assembly to the GAC but I still get the same compilation error.
TIA
Affleck
there are 10 types of people in this world those who understand binary, and those who don't.
I am developing a 3 tier .net application using vs.net.
On complitation the app will have 4 assemblies:
Ntpct.LoanEquipment.BusinessTier.dll
Ntpct.LoanEquipment.DataAccessTier.dll
Ntpct.LoanEquipment.PresentationTier.dll (web app)
Ntpct.Utility.dll
the Utility assembly in the Ntpct namespace has some utility classes that I want to inherit from in the business tier of the Ntpct.LoanEquipment Namespace.
I am using the following code to inherit:
public class User : Ntpct.Utility.BaseUser
I have added a reference to the Ntpct.Utility assembly in the businessTier project however when I compile i get the follwoing error:
c:\ Referenced class 'Ntpct.LoanEquipment.BusinessTier.User' has base class or interface 'Ntpct.Utility.BaseUser' defined in an assembly that is not referenced. You must add a reference to assembly 'Ntpct.Utility'.
please help as I feel i will be losing hair and sleep over this.
p.s I have tried adding the assembly to the GAC but I still get the same compilation error.
TIA
Affleck
there are 10 types of people in this world those who understand binary, and those who don't.