Skip to content

Commit

Permalink
Ensure we remotely copy all project pdbs and not only the main app one (
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroa authored Jan 6, 2022
1 parent 6515cfc commit 165924f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,11 @@ Copyright (C) 2011-2013 Xamarin. All rights reserved.
<_RemoteILLinkPath>$(ILLinkTasksAssembly.Replace('$(NetCoreRoot)', '$(_DotNetRootRemoteDirectory)').Replace('net472', 'net6.0').Replace('$([System.IO.Path]::GetFileName('$(ILLinkTasksAssembly)'))', 'illink.dll'))</_RemoteILLinkPath>
</PropertyGroup>

<!-- Include Debug symbols as input so those are copied to the server -->
<ItemGroup>
<!-- Include Debug symbols as input so those are copied to the server -->
<_ILLinkDebugSymbols Include="@(_DebugSymbolsIntermediatePath)" Condition="'$(_DebugSymbolsProduced)'=='true'" />
<!-- @(_PDBToLink) comes from the _ComputeManagedAssemblyToLink target, which is a dependency of this target and is included in Microsoft.NET.ILLink.targets -->
<!-- @(_PDBToLink) should contain the current assembly pdb and the project reference pdbs -->
<_ILLinkDebugSymbols Include="@(_PDBToLink)" />
</ItemGroup>

<Delete SessionId="$(BuildSessionId)" Files="@(_LinkedResolvedFileToPublishCandidate)" />
Expand Down

0 comments on commit 165924f

Please sign in to comment.