-
Notifications
You must be signed in to change notification settings - Fork 7
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
Potential build incrementality issue #293
Comments
Do you know which files are not in FileWrites? I thought we added them all. |
Double checked, they are in FileWrites, my bad. However, the lack of |
Uno core is using a very old version of resizetizer actually. I'll update it to confirm that this is still an issue, then will verify if #294 fixes it. |
I'm putting this one in the icebox. This is a known issue. This will need to be addressed as part of an overall overhaul of Resizetizer. There are number of paper cuts like this that will need to be addressed. |
@dansiegel I think it should be a small fix like what I did in #294? |
The target
GenerateUnoSplashAndroid
doesn't specify inputs and outputs, and it writes files to disk but doesn't do<FileWrites Include="..." />
. This looks like a problem as clean may not delete such files, and also the target will be run on every build even if no changes are done. This will then cause other targets to also be run because new files are written, which may cascade to even run R8 and Csc unnecessarily which are expensive tasks to run on every build.The text was updated successfully, but these errors were encountered: