You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we run Strazh over list of projects or solution with many projects we must analyze projects one by one in a "dependency order".
Example:
A -> B (project A depends on project B)
B -> C
D -> C
C -> E
Order to analyze should be next:
E
C
B, D (same time, but one by one still ok)
A
Explanations:
So project E do not depends on any project - we will analyze it first and inject data to graph.
Then we take C, then B or D (does not matter) and last one to analyze is A.
The text was updated successfully, but these errors were encountered:
When we run Strazh over list of projects or solution with many projects we must analyze projects one by one in a "dependency order".
Example:
Order to analyze should be next:
Explanations:
So project E do not depends on any project - we will analyze it first and inject data to graph.
Then we take C, then B or D (does not matter) and last one to analyze is A.
The text was updated successfully, but these errors were encountered: