AssemblyTool/Templates/Settings.jsonc

11 lines
977 B
JSON
Raw Normal View History

2024-06-12 12:42:50 -04:00
{
2024-06-13 08:18:16 -04:00
"Debug": false, // Enables extra debug logging, slows down the program by alot
2024-06-12 12:42:50 -04:00
"SilentMode": true, // The tool will stop and prompt you to continue on every remapping if disabled
2024-06-13 08:18:16 -04:00
"MaxMatchCount": 5, // Default max matches the remapper will return
2024-06-12 12:42:50 -04:00
"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
"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
"MappingPath": "./Data/Mappings.jsonc" // Path to the mapping file
}