Output: Exclude AOT namespace by default
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2017-2019 Katy Coe - https://www.djkaty.com - https://github.com/djkaty
|
// Copyright (c) 2017-2020 Katy Coe - https://www.djkaty.com - https://github.com/djkaty
|
||||||
// All rights reserved
|
// All rights reserved
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
@@ -35,6 +35,7 @@ namespace Il2CppInspector
|
|||||||
"UnityEngineInternal",
|
"UnityEngineInternal",
|
||||||
"Mono",
|
"Mono",
|
||||||
"Microsoft.Win32",
|
"Microsoft.Win32",
|
||||||
|
"AOT"
|
||||||
})]
|
})]
|
||||||
public IEnumerable<string> ExcludedNamespaces { get; set; }
|
public IEnumerable<string> ExcludedNamespaces { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2019 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
|
Copyright 2019-2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
|
||||||
|
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
*/
|
*/
|
||||||
@@ -49,6 +49,7 @@ namespace Il2CppInspector
|
|||||||
"UnityEngineInternal",
|
"UnityEngineInternal",
|
||||||
"Mono",
|
"Mono",
|
||||||
"Microsoft.Win32",
|
"Microsoft.Win32",
|
||||||
|
"AOT"
|
||||||
};
|
};
|
||||||
|
|
||||||
// Dump each image in the binary separately
|
// Dump each image in the binary separately
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ Unity
|
|||||||
UnityEngine
|
UnityEngine
|
||||||
UnityEngineInternal
|
UnityEngineInternal
|
||||||
Microsoft.Win32
|
Microsoft.Win32
|
||||||
|
AOT
|
||||||
```
|
```
|
||||||
|
|
||||||
Providing an argument to `--exclude-namespaces` will override the default list. To output all namespaces, use `--exclude-namespaces=none`.
|
Providing an argument to `--exclude-namespaces` will override the default list. To output all namespaces, use `--exclude-namespaces=none`.
|
||||||
|
|||||||
Reference in New Issue
Block a user