Menu

How do I get Doxygen to ignore files with a certain extension?

2015-11-17
2015-12-11
  • Patrick Skelton

    Patrick Skelton - 2015-11-17

    Hi,

    I am using Doxygen to generate HTML docs in a Visual Studio 2015 C# solution, but am unable to get it to ignore *.Designer.cs files

    I have tried using EXCLUDE_PATTERNS = *.Designer.cs and also EXCLUDE = *.Designer.cs, but neither seems to work. Does anyone know how to get this to work, please?

    Kind wishes ~ Pat

     

    Last edit: Patrick Skelton 2015-11-17
    • Luis Vega

      Luis Vega - 2015-12-11

      In the exclude option the wildcards are matched against the file with absolute path. To achieve what you need, you must include the directory in your wildcard regular expression.

      EXCLUDE_PATTERNS = /.Designer.cs

      From: Patrick Skelton [mailto:easygoingpat@users.sf.net]
      Sent: Tuesday, November 17, 2015 9:11 AM
      To: [doxygen:discussion] 130994@discussion.doxygen.p.re.sf.net
      Subject: EXTERNAL: [doxygen:discussion] How do I get Doxygen to ignore files with a certain extension?

      Hi,

      I am using Doxygen to generate HTML docs in a Visual Studio 2015 C# solution, but am unable to get it to ignore *.Designer.cs files

      I have tried using EXCLUDE_PATTERNS = .Designer.cs and also EXCLUDE .Designer.cs, but neither seems to work. Does anyone know how to get this to work, please?

      Kind wishes ~ Pat


      How do I get Doxygen to ignore files with a certain extension?https://sourceforge.net/p/doxygen/discussion/130994/thread/8e0562b6/?limit=25#da2c


      Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/doxygen/discussion/130994/

      To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/

       

Log in to post a comment.