You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating API metadata for named ValueTuple with same type but different argument names.
Generated API document don't distinguish these ValueTuples.
To Reproduce
Run docfx metadata command to following code
public class ValueTupleTests
{
public static (int Ret1, int Ret2) Method1() => (0, 0);
public static (int Ret3, int Ret4) Method2() => (0, 0);
public static (int, int) Method3() => (0, 0);
}
2.1. When running on Debug mode with Visual Studio. Debug.Assert failed at following lines.
Describe the bug
When generating API metadata for named
ValueTuple
with same type but different argument names.Generated API document don't distinguish these ValueTuples.
To Reproduce
2.1. When running on
Debug
mode with Visual Studio.Debug.Assert
failed at following lines.2.2. When running on
Release
mode.Generated HTML display following
Returns
contents for ALL 3-methodsExpected behavior
Named ValueTuple returns contents are correctly displayed.
Context (please complete the following information):
The text was updated successfully, but these errors were encountered: