Hi All,
I have a monorepo,MyWebApp, with the following structure. It’s a .NET webapp.
Repo:MyWebApp
MyWebAppDB
MyWebAppDB.csproj
PresentationLayer
PresentationLayer.csproj
BusinessLayer
BusinessLayer.csproj
DataLayer
DataLayer.csproj
MyWebApp.sln
I am trying to add a new project to the repo and it will look like this. The new project is built and deployed separately.
Repo:MyWebApp
MyWebAppDB
MyWebAppDB.csproj
PresentationLayer
PresentationLayer.csproj
BusinessLayer
BusinessLayer.csproj
DataLayer
DataLayer.csproj
MyWebApp.sln
MyAPI
MyAPI.csproj
Or do have to separate them into a separate folder like this.
Repo:MyWebApp
MyWebApp
MyWebAppDB
MyWebAppDB.csproj
PresentationLayer
PresentationLayer.csproj
BusinessLayer
BusinessLayer.csproj
DataLayer
DataLayer.csproj
MyWebApp.sln
MyAPI
MyAPI.csproj
I have created a separate project key for the new project. Does anyone have such similar setup? I am not sure whether it is supported or not.
Cheers,
Gordon