Building a portion of my multi-dll app and the build stops when it reads the _ni.clw file of the included dll app.
The ide still works, but the build stops and sits there. I can't close the IDE - the build is running and I can't stop the build.
This was going pretty well, too. I had built the app and have it working so I think I am missing something simple.
I tried removing the sln file and opening the app to recreate it.
I deleted the _ni.clw file in the child app re-generated and compiled, build the parent - no joy.
this is happening in the webserver app (the one that exports the webserver)
I have the following structure -
Main-app - main.exe
uses data.lib, webserver.lib and inventory.lib
Has one procedure - Websever - External.
-----------------
webserver app - webserver.dll
uses data.lib, inventory.lib
Has websever - exported
--- webhandler - exported
--- --- IndexPage (Netwebpage)
--- --- --- PageHeader (Netwebsource) - with the menu extension
--- --- --- PageFooter (NetWebSource)
--- BrowseInventory - External
--- UpdateInventory - External
---------------------
Inventory app - Inventory.lib
uses data.lib
Has WebServer (not exported)
--- WebHandler
--- --- IndexPage
--- --- --- PageHeader (Netwebsource) - with the menu extension
--- --- --- PageFooter (NetWebSource)
--- BrowseInventory - Exported
--- UpdateInventory - Exported
---------------------
Chris c