 ```C# using Simple.OData.Client; using System.Diagnostics; using System.Reflection; Console.WriteLine(IsDebugBuild(typeof(Pluralizers).Assembly)); static bool IsDebugBuild(Assembly a) => a.GetCustomAttributes(false).OfType<DebuggableAttribute>().Any(da => da.IsJITTrackingEnabled); ```