Fixup DebuggerDisplay for PageActionDescriptor

This commit is contained in:
Pranav K 2018-05-31 13:47:39 -07:00
parent 57be52e4c1
commit f0c552ee49
No known key found for this signature in database
GPG Key ID: 1963DA6D96C3057A
1 changed files with 1 additions and 1 deletions

View File

@ -81,6 +81,6 @@ namespace Microsoft.AspNetCore.Mvc.RazorPages
}
}
private string DebuggerDisplayString() => $"{{ViewEnginePath = {nameof(ViewEnginePath)}, RelativePath = {nameof(RelativePath)}}}";
private string DebuggerDisplayString => $"{{ViewEnginePath = {nameof(ViewEnginePath)}, RelativePath = {nameof(RelativePath)}}}";
}
}