<PackageReference Include="Polly" Version="8.1.0" />

KeyHelper

static class KeyHelper
using System; using System.Runtime.CompilerServices; namespace Polly.Utilities { internal static class KeyHelper { [System.Runtime.CompilerServices.NullableContext(1)] public static string GuidPart() { return Guid.NewGuid().ToString().Substring(0, 8); } } }