Output: Exclude Unity and UnityEngineInternal namespaces by default, include root namespace

This commit is contained in:
Katy Coe
2019-11-11 02:05:05 +01:00
parent d6422baf45
commit a026acf528
3 changed files with 7 additions and 4 deletions

View File

@@ -34,10 +34,11 @@ namespace Il2CppInspector
var excludedNamespaces = config["exclude-namespaces"]?.Split(',').ToList() ??
new List<string> {
"System",
"Unity",
"UnityEngine",
"UnityEngineInternal",
"Mono",
"Microsoft.Win32",
""
};
if (excludedNamespaces.Count == 1 && excludedNamespaces[0].ToLower() == "none")