Bump version

This commit is contained in:
Ben Adams 2017-11-13 12:25:25 +00:00
parent 207d8ddc6e
commit f0c84572b7
2 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,7 @@
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<Version>0.0.3</Version>
<Version>0.0.4</Version>
</PropertyGroup>
<PropertyGroup>

View File

@ -608,10 +608,6 @@ namespace System.Diagnostics
return false;
}
}
if (type.Namespace == "System.Threading" && (type.Name?.StartsWith("_") ?? false))
{
return false;
}
// Don't show any methods marked with the StackTraceHiddenAttribute
// https://github.com/dotnet/coreclr/pull/14652