I have several Web Services (asmx applications). I want them to all
descend from a base class. I want this class file to be in their parent
directory.
How do I make a file outside the project directory part of the project?
> How do I make a file outside the project directory part of the project?
How do you get down off an elephant? You don't, you get down off a duck.
In this case, you don't need to make a file outside the project directory
part of the project. You add a seocond project to the solution, and
reference it in the first project.
Of course, you could simply add the individual class to the current project,
but if you want them separate, that's the way to do it.

Signature
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
>I have several Web Services (asmx applications). I want them to all
> descend from a base class. I want this class file to be in their parent
> directory.
>
> How do I make a file outside the project directory part of the project?
Richard C Haven - 18 Jan 2005 02:13 GMT
And how I long for a duck, but all I see is elephants. <s>
It all seems to work; thank you very much.
Do I have to distribute the BaseService.DLL when I deploy my asm?
Thanks