From 1ad0ec9933fa91b1addd4abf9a131acc48213318 Mon Sep 17 00:00:00 2001 From: Kenneth Funes <35032606+kenneth-ew@users.noreply.github.com> Date: Fri, 28 Mar 2025 10:09:23 +0100 Subject: [PATCH] Extend exrefs to resolve for System.Int types --- sphinx_csharp/extrefs_data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphinx_csharp/extrefs_data.py b/sphinx_csharp/extrefs_data.py index 561fddc..37663e1 100644 --- a/sphinx_csharp/extrefs_data.py +++ b/sphinx_csharp/extrefs_data.py @@ -52,7 +52,8 @@ class ExternalRefsData: """ external_type_map = { 'msdn': { - 'System': ['Tuple', 'IDisposable', 'ICloneable', 'IComparable', 'Func', 'Action'], + 'System': ['Tuple', 'IDisposable', 'ICloneable', 'IComparable', 'Func', 'Action', + 'Int16', 'Int32', 'Int64', 'Int128', 'UInt16', 'UInt32', 'UInt64', 'UInt128'], 'System.Collections': ['IEnumerator'], 'System.Collections.Generic': ['List', 'Dictionary', 'IList', 'IDictionary', 'ISet', 'IEnumerable'], 'System.IO': ['FileFormatException'],