public ReplacementData( string original, string replacement, string[] positionals = null, Dictionary <string, string> renames = null) { Original = original; Replacement = replacement; Positionals = positionals ?? new string[0]; Renames = renames ?? new Dictionary <string, string>(); Renames.Add("ArgumentCustomization", "ProcessArgumentConfigurator"); Renames.Add("ToolPath", "ProcessToolPath"); }
public void ForceRenameVariable(string originalName, string newName) { Renames.Add(originalName); }