Hi,
What's the best practice for multiple VS ASP/MVC Projects hosted under a single domain name??
We have our Intranet https://intranet.corp.com (which is a VS project) but are planning to have individual sub applications such as Finance -https://intranet.corp.com/finance and Admin -https://intranet.corp.com/admin etc.. etc..
Ideally /finance and /admin would be their own VS projects then in IIS each one would be setup as an application and would have its own app pool.
We use windows authentication.
Some of the apps will use the same classes/methods so we are looking to have a core dll, but things like css files where we are using background images we can't use ~/images/bg.png and /images/ will go top level but it should be /finance/images/bg.png etc..
Or are we best to have one massive intranet vs solution and everyone works on their own bit?? We use TFS.
Thanks!!