We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f742dc7 commit 11dd8baCopy full SHA for 11dd8ba
src/Installers/Windows/AspNetCoreModule-Setup/CustomAction/aspnetcoreCA.vcxproj
@@ -93,4 +93,13 @@
93
</ProjectReference>
94
</ItemGroup>
95
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
96
+
97
+ <Target Name="_CopySymbolsToPublishDir" AfterTargets="Build" >
98
+ <ItemGroup>
99
+ <_BuiltPdbPath Include="$([System.IO.Path]::ChangeExtension($(TargetPath), '.pdb'))" />
100
+ </ItemGroup>
101
102
+ <Copy SourceFiles="@(_BuiltPdbPath)" DestinationFiles="$(SymbolsOutputPath)$(TargetName)\$(TargetName).pdb" />
103
+ <Copy SourceFiles="@(_BuiltPdbPath)" DestinationFiles="$(SymbolsOutputPath)IISCustomActionDll\IISCustomActionDll.pdb" />
104
+ </Target>
105
</Project>
0 commit comments