如何在 OpenCover 中排除 Class 属性?

How to exclude Class Properties in OpenCover?

例如我有一个像这样的简单 POCO:

public class Customer
{
   public int Age { get; set; }
}

我想排除遵循此模式的属性。 请注意,我不能排除整个 class 因为将来我可能会添加一个需要覆盖的方法。

wiki 中有您需要的所有信息

https://github.com/opencover/opencover/wiki/Usage

在这种情况下,-skipautoprops 是您需要的开关。