You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CopyInnerBuildRestoredPackages task copies restored packages to the .packages directory at the repo root. AFAICT, this collection of packages is used as a means for prebuilt detection, which is done by the ReportPrebuiltUsage target. The issue is that this also gets executed for the unified-build where prebuilt detection isn't relevant. So in the unified-build it's wasting time and disk space for no purpose.
This should get cleaned up so it's only done for source builds. In addition, the ReportPrebuiltUsage target should get moved into the same file from where it's referenced.
The text was updated successfully, but these errors were encountered:
This issue stems from my comment at dotnet/installer#18824 (comment).
The
CopyInnerBuildRestoredPackages
task copies restored packages to the.packages
directory at the repo root. AFAICT, this collection of packages is used as a means for prebuilt detection, which is done by theReportPrebuiltUsage
target. The issue is that this also gets executed for the unified-build where prebuilt detection isn't relevant. So in the unified-build it's wasting time and disk space for no purpose.This should get cleaned up so it's only done for source builds. In addition, the
ReportPrebuiltUsage
target should get moved into the same file from where it's referenced.The text was updated successfully, but these errors were encountered: