-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Filter binplace and harvest package depproj's to only direct reference #31167
Filter binplace and harvest package depproj's to only direct reference #31167
Conversation
@@ -9,6 +9,11 @@ | |||
|
|||
<Import Project="harvestPackages.props" /> | |||
|
|||
<ItemGroup> | |||
<!-- Only include the assets from the direct packages we reference in the output --> | |||
<PackageToInclude Include="@(PackageReference)" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't binplace in harvestPackages.depproj, is this just in case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point I forgot we don't copy. I will remove this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just tested it locally and it works. Thanks for the fix!
b3b549b
to
f24fb67
Compare
We don't need to copy out the full closure of all packages for this project so only copy the packages that are directly referenced.
f24fb67
to
f58f59b
Compare
test Packaging All Configurations x64 Debug Build Got a weird error that seems unrelated:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…efx#31167) Don't copy out the full closure of all packages for binplacePackages. Commit migrated from dotnet/corefx@eb41cd4
We don't need to copy out the full closure of all packages for
these project so only copy the packages that are directly referenced.
cc @ViktorHofer @ericstj
Fixes https://github.com/dotnet/corefx/issues/31156