Skip to content

Commit 065552f

Browse files
committed
Include transitive .pdb's
1 parent 3291251 commit 065552f

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.Composite.sfxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@
5454
</Reference>
5555
</ItemGroup>
5656

57+
<ItemGroup>
58+
<_AllExternalAspNetCoreAppReferences Include="@(ExternalAspNetCoreAppReference);@(_TransitiveExternalAspNetCoreAppReference)" />
59+
</ItemGroup>
60+
5761
<ItemGroup>
5862
<IgnoredDuplicateType Include="Microsoft.AspNetCore.Hosting.WebHostBuilderIISExtensions" />
5963
<IgnoredDuplicateType Include="Microsoft.Extensions.DependencyInjection.SignalRDependencyInjectionExtensions" />
@@ -103,9 +107,9 @@
103107

104108
<!-- Explicitly include symbols for libraries we redistribute from runtime -->
105109
<Target Name="_AddExtensionsSymbolsToSymbolPack">
106-
<!-- Flatten ExternalAspNetCoreAppReference into a property -->
110+
<!-- Flatten _AllExternalAspNetCoreAppReferences into a property -->
107111
<PropertyGroup>
108-
<FileNameList>@(ExternalAspNetCoreAppReference, ';')</FileNameList>
112+
<FileNameList>@(_AllExternalAspNetCoreAppReferences, ';')</FileNameList>
109113
<!-- Add trailing semicolon -->
110114
<FileNameList>$(FileNameList);</FileNameList>
111115
</PropertyGroup>

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.sfxproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@
6969
<IncludeAssets>Runtime;Native</IncludeAssets>
7070
</Reference>
7171
</ItemGroup>
72+
73+
<ItemGroup>
74+
<_AllExternalAspNetCoreAppReferences Include="@(ExternalAspNetCoreAppReference);@(_TransitiveExternalAspNetCoreAppReference)" />
75+
</ItemGroup>
76+
7277
<ItemGroup>
7378
<PackageReference Condition="'$(GenerateInstallers)' == 'true'" Include="Microsoft.DotNet.Build.Tasks.Installers" Version="$(MicrosoftDotNetBuildTasksInstallersVersion)" />
7479
<LinuxPackageDependency Include="dotnet-runtime-$(DotnetRuntimeDependencyMajorMinorVersion)" Version="$(DotnetRuntimeDependencyVersion)" />
@@ -99,9 +104,9 @@
99104

100105
<!-- Explicitly include symbols for libraries we redistribute from runtime -->
101106
<Target Name="_AddExtensionsSymbolsToSymbolPack">
102-
<!-- Flatten ExternalAspNetCoreAppReference into a property -->
107+
<!-- Flatten _AllExternalAspNetCoreAppReferences into a property -->
103108
<PropertyGroup>
104-
<FileNameList>@(ExternalAspNetCoreAppReference, ';')</FileNameList>
109+
<FileNameList>@(_AllExternalAspNetCoreAppReferences, ';')</FileNameList>
105110
<!-- Add trailing semicolon -->
106111
<FileNameList>$(FileNameList);</FileNameList>
107112
</PropertyGroup>

0 commit comments

Comments
 (0)