Base solution for your next web application
Open Closed

Gateway for App backend #10902


User avatar
0
angelsegura created

We have a regular multi-tenant ASP.Net zero setup. Now we are adding an app to our service portfolio that need to have access to a part of the platform conent. We want to have the backend of the App isolated from the platform backend (Traffic balance, security, etc.), but we'd like to reuse as much code as possible from the original platform backend. What would be the best approach? Can we "ducplicate" the *.Web..Host project under the ASP.NET Zero license scheme?

Thanks


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @angelsegura

    Yes, you can duplicate the *.Web.Host. Then, you can move your common code which will be used by existing *.Web.Host project and new *.Web.Host project to a common library project and use this project from both apps.

  • User Avatar
    0
    angelsegura created

    Thanks a lot!