supress warning for generated c# code
Posted
by soren.enemaerke
on Stack Overflow
See other posts from Stack Overflow
or by soren.enemaerke
Published on 2010-04-23T20:15:19Z
Indexed on
2010/04/23
20:23 UTC
Read the original article
Hit count: 282
I have turned on "Treat warnings as errors" for my VS project which mean that I get errors for missing documentation (nice reminder for this particular project).
However, part of the code is generated by a custom tool which does not insert xml documentation so I'm looking for away to ignore the missing xml documentation for the generated code only, not for the entire project. I have no influence on the actual file generated and cannot really insert anything in the file (as it is regenerated frequently by the tool) so I looking for something existing outside the generated file (the classes that are generated are partial, if that helps)
© Stack Overflow or respective owner