How do I make Beyond Compare ignore certain differences while comparing versions of Delphi Form Files

前端 未结 4 504
清酒与你
清酒与你 2020-12-02 16:26

I use Beyond Compare (version 3.1.10) to compare different versions of Delphi Form Files, but I don\'t want to see differences concerning ExplicitTop, ExplicitLeft, Explicit

4条回答
  •  臣服心动
    2020-12-02 17:16

    In my case (C#), I wanted to ignore the entire line which contained namespaces (and thus, using's) which I changed. (Referenced Walkthrough - Ignore entire line if text exist in line

    ie.

    namespace INSERT.NAMESPACE.HERE 
          changed to 
    namespace INSERT.NAMESPACE.HERE.NEW
    

    To do that

    In step 5. of Craig's solution, change the Text Matching to

    " .\*INSERT.NAMESPACE.HERE.\* "
    

    (include the quotes)

    That's it.

提交回复
热议问题