Skip to content

Commit

Permalink
Align TraceEvent Version with dotnet/runtime (#3191)
Browse files Browse the repository at this point in the history
* Align TraceEvent Version with dotnet/runtime

* Update Graph NodeCount type

* Bump TraceEvent Version to 3.0.3
  • Loading branch information
mdh1418 committed Aug 10, 2022
1 parent ff78d5d commit d7fc76b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<MicrosoftBclAsyncInterfacesVersion>1.1.0</MicrosoftBclAsyncInterfacesVersion>
<MicrosoftDiagnosticsRuntimeVersion>2.2.332302</MicrosoftDiagnosticsRuntimeVersion>
<MicrosoftDiaSymReaderNativePackageVersion>16.9.0-beta1.21055.5</MicrosoftDiaSymReaderNativePackageVersion>
<MicrosoftDiagnosticsTracingTraceEventVersion>2.0.64</MicrosoftDiagnosticsTracingTraceEventVersion>
<MicrosoftDiagnosticsTracingTraceEventVersion>3.0.3</MicrosoftDiagnosticsTracingTraceEventVersion>
<!-- Use pinned version to avoid picking up latest (which doesn't support netcoreapp3.1) during source-build -->
<MicrosoftExtensionsLoggingPinnedVersion>2.1.1</MicrosoftExtensionsLoggingPinnedVersion>
<!-- Need version that understands UseAppFilters sentinel. -->
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/dotnet-gcdump/DotNetHeapDump/Graph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public virtual NodeType AllocTypeNodeStorage()
/// <summary>
/// Same as NodeIndexLimit, just cast to an integer.
/// </summary>
public int NodeCount { get { return m_nodes.Count; } }
public long NodeCount { get { return m_nodes.Count; } }
/// <summary>
/// It is expected that users will want additional information associated with TYPES of the nodes of the graph. They can
/// do this by allocating an array of code:NodeTypeIndexLimit and then indexing this by code:NodeTypeIndex
Expand Down

0 comments on commit d7fc76b

Please sign in to comment.