I included the bin folder in my MVC project (TestProj), and added my own dll file (testDll.dll).
I am trying to access my dll file by writing:
using TestProj.testDll;
but it doesn’t recognize my testDll file.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To add your
testDll.dllfile as a reference:Referencesunder your projectAdd referenceBrowseand look for yourtestDll.dllfileThen, add the
using XXX;(whereXXXis a namespace present in your library) line in the files where you need to access your library members.If you later want to update your library, just replace the
testDll.dllfile by the more recent.