File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -110,14 +110,22 @@ This package is an internal implementation of the .NET Core SDK and is not meant
110
110
</ItemGroup >
111
111
112
112
<JoinItems Left =" @(ReferencePathWithRefAssemblies)" Right =" @(_AvailableExtensionsRefAssemblies)" LeftKey =" Filename" RightKey =" Filename" ItemSpecToUse =" Left" >
113
+ <Output TaskParameter =" JoinResult" ItemName =" _ReferencedExtensionsRefAssemblies" />
114
+ </JoinItems >
115
+
116
+ <JoinItems Left =" @(_ReferencedExtensionsRefAssemblies)" Right =" @(ExternalAspNetCoreAppReference)" LeftKey =" Filename" RightKey =" Identity" ItemSpecToUse =" Left" >
117
+ <Output TaskParameter =" JoinResult" ItemName =" _SelectedExtensionsRefs" />
118
+ </JoinItems >
119
+
120
+ <JoinItems Left =" @(ReferencePathWithRefAssemblies)" Right =" @(_SelectedExtensionsRefs)" LeftKey =" Filename" RightKey =" Filename" ItemSpecToUse =" Left" >
113
121
<Output TaskParameter =" JoinResult" ItemName =" _SelectedExtensionsRefAssemblies" />
114
122
</JoinItems >
115
123
116
124
<ItemGroup >
117
125
<AspNetCoreReferenceAssemblyPath
118
126
Include =" @(ReferencePathWithRefAssemblies)"
119
127
Exclude ="
120
- @(_SelectedExtensionsRefAssemblies );
128
+ @(_ReferencedExtensionsRefAssemblies );
121
129
@(ReferencePathWithRefAssemblies->WithMetadataValue('NuGetPackageId', 'Microsoft.NETCore.App.Ref'));
122
130
@(ReferencePathWithRefAssemblies->WithMetadataValue('IsReferenceAssembly', 'false'));
123
131
@(ReferencePathWithRefAssemblies->WithMetadataValue('ReferenceGrouping', 'Microsoft.NETCore.App'));" />
You can’t perform that action at this time.
0 commit comments