Exception Page showing only method names in the callstack

Fixes #304
This commit is contained in:
Pranav K 2016-06-30 10:03:11 -07:00
parent 5c7157919b
commit afd3bea80f
2 changed files with 5 additions and 1 deletions

View File

@ -189,7 +189,7 @@ namespace Microsoft.AspNetCore.Diagnostics
{ {
Error = scan, Error = scan,
StackFrames = StackTraceHelper.GetFrames(ex) StackFrames = StackTraceHelper.GetFrames(ex)
.Select(frame => GetStackFrame(frame.Method, frame.FilePath, frame.LineNumber)) .Select(frame => GetStackFrame(frame.MethodDisplayInfo.ToString(), frame.FilePath, frame.LineNumber))
}; };
}; };
} }

View File

@ -35,6 +35,10 @@
"type": "build", "type": "build",
"version": "1.1.0-*" "version": "1.1.0-*"
}, },
"Microsoft.Extensions.TypeNameHelper.Sources": {
"type": "build",
"version": "1.1.0-*"
},
"System.Diagnostics.DiagnosticSource": "4.0.0-*", "System.Diagnostics.DiagnosticSource": "4.0.0-*",
"System.Reflection.Metadata": "1.3.0-*" "System.Reflection.Metadata": "1.3.0-*"
}, },