VS2008 C# solution

  • Thread starter Thread starter Morris
  • Start date Start date
M

Morris

I added in my VS2008 C# solution a new dll but its output is created only in
its own directory and not copied to the main executable project.
Is there any idea please?
Thanks
Morris
 
I added in my VS2008 C# solution a new dll but its output is created only
in its own directory and not copied to the main executable project.
Is there any idea please?
Thanks
Morris

You need to add a reference to the dll in your main project.
 
Morris said:
I added in my VS2008 C# solution a new dll but its output is created only in
its own directory and not copied to the main executable project.
Is there any idea please?
Thanks
Morris


.

Does the main executable project contain a reference to the dll? It won't
be copied there unless it is referenced.

Mike
 
Back
Top