Clean n-1 SBRP packages after building SBRP (#15898)
This commit is contained in:
parent
39f7a7d614
commit
cb35390c1b
1 changed files with 6 additions and 0 deletions
|
@ -332,6 +332,12 @@
|
||||||
<!-- Copy lists of NonShipping packages to prebuilt-report dir -->
|
<!-- Copy lists of NonShipping packages to prebuilt-report dir -->
|
||||||
<Copy SourceFiles="@(NonShippingPackageLists)" DestinationFolder="$(PackageReportDir)packagelists/" />
|
<Copy SourceFiles="@(NonShippingPackageLists)" DestinationFolder="$(PackageReportDir)packagelists/" />
|
||||||
|
|
||||||
|
<!-- Building SBRP: At this point the References directory contains the previously-source-built SBRPs,
|
||||||
|
clear it before moving the current SBRPs. This ensures n-1 SBRPs aren't required to build the product repos. -->
|
||||||
|
<RemoveDir
|
||||||
|
Condition="'$(_NupkgDestinationPath)' == '$(ReferencePackagesDir)'"
|
||||||
|
Directories="$(ReferencePackagesDir)" />
|
||||||
|
|
||||||
<Move
|
<Move
|
||||||
Condition="'@(SourceBuiltNupkgFiles)' != ''"
|
Condition="'@(SourceBuiltNupkgFiles)' != ''"
|
||||||
SourceFiles="@(SourceBuiltNupkgFiles)"
|
SourceFiles="@(SourceBuiltNupkgFiles)"
|
||||||
|
|
Loading…
Reference in a new issue