Add reference question

  • Thread starter Thread starter Verdict
  • Start date Start date
V

Verdict

Hi
My project is a web project using c# with code behind.(vs.net)
I'm developing on my local machine and then install it on the remote server.
I created a class library named 'DataLibrary' with the database connection
definitions and "added reference" from my project.

On the local machine it works just fine, but when I install it on the remote
server I get an error saying:
CS0246: The type or namespace name 'DataLibrary' could not be found (are you
missing a using directive or an assembly reference?)

little code:
Line 1: using System;
Line 2: using System.Collections;
Line 3: using System.ComponentModel;
Line 4: using System.Web;
Line 5: using System.Web.SessionState;
Line 6: using DataLibrary;
Line 7: using GlobalFunctions;


I tried to copy the DLL itself to the server but it didn't help.
Can someone help with that?
Thanks
 
Back
Top