diff --git a/src/Polly.Core/ResilienceProperties.cs b/src/Polly.Core/ResilienceProperties.cs
index bb9fdbec3f0..2a593960d66 100644
--- a/src/Polly.Core/ResilienceProperties.cs
+++ b/src/Polly.Core/ResilienceProperties.cs
@@ -2,13 +2,13 @@
namespace Polly;
-#pragma warning disable CA1710 // Identifiers should have correct suffix
-
///
/// Represents a collection of custom resilience properties.
///
+[DebuggerDisplay("{Options}")]
public sealed class ResilienceProperties
{
+ [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
internal IDictionary Options { get; set; } = new Dictionary();
///