Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make LargeAddressAware incremental (dotnet#1658)
Unfortunately, we have two processes that run in sequence to modify the output binary in place. This can happen: * Initial compile * First editbin * First OpenSourceSign * Second compile (skipped, up to date) * Second editbin (runs, wasn't incremental before this commit) * Second OpenSourceSign (runs, prior step makes it appear out of date) The last OpenSourceSign then complains "this assembly is already signed", breaking the build. Fixes dotnet#1657 by treating editbin + OpenSourceSign as a unit for purposes of incrementality.
- Loading branch information