-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Pack symbols in SharedFx for libraries we redist from runtime #62429
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 1 commit
2f07492
6e28836
42ec34a
3731da7
6897c51
dff1fb2
d3125f6
233105d
6356266
3291251
065552f
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 |
---|---|---|
|
@@ -33,6 +33,25 @@ | |
<PartialCompositeAssemblyListPath>PartialCompositeAssemblyListPath.txt</PartialCompositeAssemblyListPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Internal.Runtime.AspNetCore.Transport" | ||
Version="$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)" | ||
ExcludeAssets="All" | ||
GeneratePathProperty="true" /> | ||
</ItemGroup> | ||
|
||
<!-- Explicitly include symbols for libraries we redistribute from runtime --> | ||
<ItemGroup> | ||
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb" | ||
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" /> | ||
Check failure on line 46 in src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.Composite.sfxproj
|
||
|
||
<_TransportPdbsWithName Include="@(_TransportPdbs)" | ||
Name="%(Filename)" /> | ||
|
||
<_SymbolFilesToPackage Include="@(_TransportPdbsWithName)" | ||
Condition="'@(ExternalAspNetCoreAppReference->AnyHaveMetadataValue('Identity', '%(Name)'))' == 'true'" /> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="@(AspNetCoreAppReference);@(AspNetCoreAppReferenceAndPackage);@(ExternalAspNetCoreAppReference)"> | ||
<IncludeAssets>Runtime;Native</IncludeAssets> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,25 @@ | |
<GenerateVSInsertionPackages>true</GenerateVSInsertionPackages> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Internal.Runtime.AspNetCore.Transport" | ||
Version="$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)" | ||
ExcludeAssets="All" | ||
GeneratePathProperty="true" /> | ||
</ItemGroup> | ||
|
||
<!-- Explicitly include symbols for libraries we redistribute from runtime --> | ||
<ItemGroup> | ||
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb" | ||
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" /> | ||
Check failure on line 63 in src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.sfxproj
|
||
jkoritzinsky marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
<_TransportPdbsWithName Include="@(_TransportPdbs)" | ||
Name="%(Filename)" /> | ||
|
||
<_SymbolFilesToPackage Include="@(_TransportPdbsWithName)" | ||
Condition="'@(ExternalAspNetCoreAppReference->AnyHaveMetadataValue('Identity', '%(Name)'))' == 'true'" /> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="@(AspNetCoreAppReference);@(AspNetCoreAppReferenceAndPackage);@(ExternalAspNetCoreAppReference)"> | ||
<IncludeAssets>Runtime;Native</IncludeAssets> | ||
|
Uh oh!
There was an error while loading. Please reload this page.