-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Add missing assemblies to ref pack #19161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
b61c478
d6654d1
0e4635c
903ddbd
cac1ed2
abe41c2
44dab04
4c15267
370f79e
168dff4
5df69da
0572a25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -130,7 +130,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant | |||
<!-- Exclude transitive external dependencies that are not directly referenced by projects in AspNetCore or Extensions --> | ||||
<AspNetCoreReferenceAssemblyPath | ||||
Include="@(ReferencePathWithRefAssemblies)" | ||||
Condition="'%(ReferencePathWithRefAssemblies.IsReferenceAssembly)' == 'true'" | ||||
Condition="'%(ReferencePathWithRefAssemblies.IsReferenceAssembly)' != 'false'" | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have trouble believing the previous There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ahh, I think I now understand what you mean. We should probably investigate what's happening here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe we need to exclude
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> for the @(AspNetCoreAppReference) items that are from ref/ projects. Might be possible to shorten the new code to
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might be fine to remove references to the ref/ projects entirely i.e. exclude |
||||
Exclude=" | ||||
@(_ReferencedExtensionsRefAssemblies); | ||||
@(ReferencePathWithRefAssemblies->WithMetadataValue('NuGetPackageId', 'Microsoft.NETCore.App.Ref')); | ||||
|
Uh oh!
There was an error while loading. Please reload this page.