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
Markdown is supported
Copy & paste or drag & drop images (max 30 MB per image)
2 Answer(s)
-
0
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.
Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image) -
0
Thanks a lot!
Markdown is supportedCopy & paste or drag & drop images (max 30 MB per image)