2024-06-12 12:42:50 -04:00
|
|
|
{
|
2024-06-13 17:37:14 -04:00
|
|
|
"AppSettings": {
|
2024-06-13 17:55:06 -04:00
|
|
|
"Debug": false, // Enables extra debug logging, slows down the program by alot
|
|
|
|
"SilentMode": true, // The tool will stop and prompt you to continue on every remapping if disabled
|
|
|
|
"AssemblyPath": "./Data/Managed/Assembly-CSharp.dll", // Path to the assembly we want to remap
|
|
|
|
"OutputPath": "./Data/Assembly-CSharp-Remapped.dll", // Path including the filename and extension we want to write the changes to
|
2024-06-14 18:07:01 -04:00
|
|
|
"MappingPath": "./Data/Mappings.jsonc", // Path to the mapping file
|
|
|
|
"RenameFields": true, // Names of fields of the matched type will be renamed to the type name with approproiate convention
|
|
|
|
"RenameProperties": true, // Names of properties of the matched type will be renamed to the type name with approproiate convention
|
|
|
|
"Publicize": true, // Publicize all types, methods, and properties : NOTE: Not run until after the remap has completed
|
|
|
|
"Unseal": true // Unseal all types : NOTE: Not run until after the remap has completed
|
|
|
|
},
|
|
|
|
"Remapper": {
|
|
|
|
"MaxMatchCount": 5 // Max matches the remapper will return
|
2024-06-13 17:55:06 -04:00
|
|
|
},
|
|
|
|
"AutoMapper": {
|
2024-06-13 18:09:31 -04:00
|
|
|
"RequiredMatches": 5, // Minimum number of times a member must have this name in the assembly before considering it for remapping
|
|
|
|
"NamesToIgnore": [ // Any member name you want to ignore while iterating through the assembly
|
|
|
|
|
|
|
|
]
|
2024-06-13 17:37:14 -04:00
|
|
|
}
|
2024-06-12 12:42:50 -04:00
|
|
|
}
|