Added script reference test and clearing check file caches on re-created incremental build #11731
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a single test to
WorkspaceTeststhat tests whether or not the script will update properly when a DLL file that it is referencing changes.When first writing the test, it was failing because FCS was returning back cached/stale check file results even after the incremental build was re-created when one of its references changed. Clearing the items associated with the project in the cache fixed this issue.
What caused the issue in the first place, wasn't necessarily due to not clearing any caches, but because I made a change where the first file was returning
DateTime.MinValueinstead of thedefaultTimeStampwhich gets set toDateTime.UtcNowwhen an incremental build gets created. I made an additional change to return thedefaultTimeStamp.