So, I've developed a great module and integrated all over the installation on multiple pages. The next day comes the customer and they want another view added to the module. So I build another module definition. Problem is, now I have to install the whole module again and remove all other (a lot right now) module definitions with the exception of the newest.
Is there a way to work around this? I even prefer to do it by programming, code-wise adding a new module definition to the page.
EDIT:
For example I've got a page with my module installed. The page will then have the following module definitions:
ModuleDefinitionA
ModuleDefinitionB
ModuleDefinitionC
Now I update my module by adding another module definition and I have to install it on the page again:
ModuleDefinitionA
<-- from previous installModuleDefinitionB
<-- from previous installModuleDefinitionC
<-- from previous installModuleDefinitionA
<-- from new installModuleDefinitionB
<-- from new installModuleDefinitionC
<-- from new installModuleDefinitionD
<-- new definition from new install
How can I add only ModuleDefinitionD
without adding all the other duplicate module definitions?
(not a novice at DNN module development)