Fix build error
This commit is contained in:
parent
c16b803119
commit
8284605d04
@ -82,7 +82,7 @@ internal class Remapper
|
|||||||
|
|
||||||
foreach (var nestedType in type.NestedTypes)
|
foreach (var nestedType in type.NestedTypes)
|
||||||
{
|
{
|
||||||
ScoreType(nestedType, remap);
|
FindMatch(nestedType, remap);
|
||||||
}
|
}
|
||||||
|
|
||||||
var score = new ScoringModel
|
var score = new ScoringModel
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
{
|
{
|
||||||
"Debug": false, // Enables extra debug logging, slows down the program by alot
|
"AppSettings": {
|
||||||
"SilentMode": true, // The tool will stop and prompt you to continue on every remapping if disabled
|
"Debug": false, // Enables extra debug logging, slows down the program by alot
|
||||||
"MaxMatchCount": 5, // Default max matches the remapper will return
|
"SilentMode": true // The tool will stop and prompt you to continue on every remapping if disabled
|
||||||
"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": {
|
||||||
"AssemblyPath": "./Data/Managed/Assembly-CSharp.dll", // Path to the assembly we want to remap
|
"MaxMatchCount": 5, // Max matches the remapper will return
|
||||||
"OutputPath": "./Data/Assembly-CSharp-Remapped.dll", // Path including the filename and extension we want to write the changes to
|
"Publicize": true, // Publicize all types, methods, and properties : NOTE: Not run until after the remap has completed
|
||||||
"MappingPath": "./Data/Mappings.jsonc" // Path to the mapping file
|
"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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user