Is there a recommendation to align the following folder structure:
dev ---> stage
wwwroot\app1\ref --> wwwroot\app1
wwwroot\app2\ref --> wwwroot\app2
wwwroot\app3\ref --> wwwroot\app3
...
I would like to compare each app folder in my wwwroot using a single session, instead of creating a session for each app individually.
In the above example, the folder structure is slightly different in that the code files are in the app folder root and not in the \ref folder.
Is it possible to use an Alignment override to associate this?
Things I have tried:
ref\*=*
ref\$1=(.*)
(.*)\ref=$1
I am not sure if overrides can cross the subpath boundary or not =P
dev ---> stage
wwwroot\app1\ref --> wwwroot\app1
wwwroot\app2\ref --> wwwroot\app2
wwwroot\app3\ref --> wwwroot\app3
...
I would like to compare each app folder in my wwwroot using a single session, instead of creating a session for each app individually.
In the above example, the folder structure is slightly different in that the code files are in the app folder root and not in the \ref folder.
Is it possible to use an Alignment override to associate this?
Things I have tried:
ref\*=*
ref\$1=(.*)
(.*)\ref=$1
I am not sure if overrides can cross the subpath boundary or not =P
Comment