-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make lazy evaluation even faster #906
Comments
Continuing the discussion from here: #891 (comment)
Using your sample, there are three <i2 Include='a;b;c'>
<m1>m1_contents</m1>
<m2>m2_contents</m2>
</i2> Then we have <i Include='@(i2)'/> Then we have <i2 Update='a;b;c'>
<m1>m1_updated</m1>
<m2>m2_updated</m2>
</i2> Your comment seems to refer to the fact that Then when Hopefully this helps make it more clear. A possible solution is to clone all the items before modifying their metadata. |
There are a couple of optimizations that we can still do on the lazy item evaluator:
<Compile Remove="@(Compile)">
or<Compile Update="@(Compile)">
)The text was updated successfully, but these errors were encountered: