[MSBuild] Problem with setting properties 's values.
- by Nam Gi VU
Let's consider the below example.
There, I have:
target MAIN call target t then call target tt.
target t call target ttt, target tt call target tttt.
target t define property aa, target ttt modify aa.
target tttt try to print property aa 's value.
in short we have: MAIN - {t - {ttt-modify aa, define aa}, tt - tttt - print aa}
But in target…