I have two applications
- Parent application.
- Child application.
WORKING STRUCTURE
The code of child application is compiled from the parent application.
I have added a
DLLnamedMyDLL.dllin the parent application(There is a feature in parent application to upload DLL and compile code of child application from there). The child application also consumes thatDLL.Now I need to create a
DLLof child application. SinceMyDLL.dllis in parent application I cannot build the project of child application individually(since child application also consumes thatMyDLL.dll).
When I build the child application, its showing the error : Could not Find namespace MyDll. Are you missing an assembly reference?
CODE
1. Parent Application
using MyDll;
namesapace MyNamespace
{
class ParentApplication
{
}
}
2. Child Application
using MyDll;
namesapace ChildNamespace
{
class ChildApplication
{
}
}
How do I generate a DLL of child application without building project of child application?