Upon code clean up (profile: StyleCop) it always creates regions for constructors, properties and so on...
#region Constructors and Destructors
public IpDiagnosticsService()
{
// : base()
// NOP. Required for serializer.
}
public IpDiagnosticsService(string applicationName, SPFarm farm) : base(applicationName, farm)
{
// NOP
}
#endregion
#region Properties
// ...omitted.
#endregion
Awesome. I don't want that. How do it turn this off? Couldn't find any option for that.