I'm currently working on an ERP Blazor WebAssembly app that works alongside its base Razor Class libraries. The app could have some custom pages that aren't the same for all the customers and are independent (that means that the core app remains the same while the custom pages could get modified).
I've tried putting a git repo inside of the main repository using the git submodule
but I'm not sure this it's the right approach.
I've also tried creating a different solution that holds all the different customer projects, compiling the only one I need and substituting the .dll
file but it results in an integrity error.
Am I doing this correct? Can someone give me some tips/hints on the solution?