Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-pipelines/Get-SymbolFiles.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Write-Progress -Activity $ActivityName -CurrentOperation "Discovery PDB files"
$PDBs = Get-ChildItem -rec "$Path/*.pdb"

# Filter PDBs to product OR test related.
$testregex = "unittest|tests|\.test\."
$testregex = "unittest|tests|\.test\.|TestHost"

Write-Progress -Activity $ActivityName -CurrentOperation "De-duplicating symbols"
$PDBsByHash = @{}
Expand Down
6 changes: 6 additions & 0 deletions src/SosThreadingTools/SosThreadingTools.targets
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
<GenerateNuspecDependsOn>StampAndIncludeGalleryManifest;$(GenerateNuspecDependsOn)</GenerateNuspecDependsOn>
</PropertyGroup>

<ItemGroup>
<FilesToSign Include="$(TargetDir)$(DnneNativeBinaryName).dll">
<StrongName />
</FilesToSign>
</ItemGroup>

<Target Name="PackBuildOutputs" DependsOnTargets="DebugSymbolsProjectOutputGroup">
<ItemGroup>
<TfmSpecificPackageFile Include="$(TargetPath)" PackagePath="tools\$(RuntimeIdentifier)\" />
Expand Down