Hi Gerry,
When you need to use a type (such as a class or structure) contained in
another assembly, you must set a reference to that assembly. This creates
an assembly reference within the client assembly's manifest that identifies
the name and version of the dependency. Visual Studio .NET supports two
types of references: project references and file references.
The Projects page within the Visual Studio .NET Add Reference dialog box
lists all of the other projects in the current solution. This allows you to
create a project reference to another project in the same solution. Project
references are the recommended way to set references because they offer
many advantages.
(Note Project references are the main reason you should adopt a single
solution or partitioned single solution model wherever possible.)
If you can't use a project reference because you need to reference an
assembly outside of your current solution's project set, you must set a
file reference. The following are the two ways to set a file reference:
To reference a .NET Framework assembly, you select the assembly from the
list displayed on the .NET tab of the Add References dialog box.
You can use the Browse button in the Add Reference dialog box.
If you set a file reference, the path to the assembly is stored in the
source controlled project file. A relative path is stored for local
assemblies, while the full network path is stored for server-based
assemblies, as
For your scenario, there may be some solutions. Please refer to the
following link for all existing good ways:
http://www.**--****.com/
tdlg_ch4.asp
The information in this link helps you:
Manage dependencies and references between projects and solutions.
Work with dependencies on .NET assemblies, Web services, databases,
serviced components, and COM Interop libraries.
Hope that helps.
Best regards,
Yanhong Huang
Microsoft Community Support
Get Secure! www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
- http://www.**--****.com/
p&SD=msdn
This posting is provided "AS IS" with no warranties, and confers no rights.