Skip to content

Commit 9c8a0c3

Browse files
authored
Get native .pdb into Shared Framework symbol package (#62124)
* Get native .pdb into Shared Framework symbol package * New approach
1 parent d382ae4 commit 9c8a0c3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@
8282

8383
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
8484
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
85+
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
86+
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb" />
8587
</ItemGroup>
8688

87-
8889
<Target Name="_WarnAboutUnbuiltNativeDependencies"
8990
BeforeTargets="Build"
9091
Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) AND

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@
7979

8080
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
8181
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
82+
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
83+
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb" />
8284
</ItemGroup>
8385

84-
8586
<Target Name="_WarnAboutUnbuiltNativeDependencies"
8687
BeforeTargets="Build"
8788
Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) AND

0 commit comments

Comments
 (0)