Example #1
0
            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");
            }
Example #2
0
 public void ForceRenameVariable(string originalName, string newName)
 {
     Renames.Add(originalName);
 }