I have a class library that have folder Called "Resources" that's our convention of keeping the DLL that need to be referenced.
So there are some base DLL that are added in it.Lets name them as "BaseWork.dll".
I have a web project in the same solution that have this class library. I have added the reference of Class library in the Web project. I want to access some class through this "BaseWork.dll" in the code behind of some aspx page. I am not able to access it.
There is an easiest way to do this is Add the Resource folder for our convention Sake , add the "BaseWork.dll" to it. Then add the reference in the Web-project . That would be repetition of the same things across the solution.
Is there any better way to do this?
PS: I am working in .net framework 4.0 in Visual studio 2010.