You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These may be related to the way #596 edge cases are handled
// these do not format consistently if you remove the ?
output.Measurements.Add(new BenchmarkMeasurement
{Timestamp= DateTime.UtcNow,Name="blazorwasm/commit",Value=typeof(Program).Assembly
.GetCustomAttributes<AssemblyMetadataAttribute>().FirstOrDefault(f => f.Key =="CommitHash")?.Value,});varruntimeVersion=typeof(object).Assembly
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion ??"Unknown";return httpContext.RequestServices
?.GetService<IOptions<JsonOptions>>()?.Value?.SerializerOptions ?? JsonOptions.DefaultSerializerOptions;varignoredSourceMembers= _sourceMemberConfigs?.Values.Where(smc => smc.IsIgnored()).Select(pm => pm.SourceMember.Name);
The text was updated successfully, but these errors were encountered:
varx=typeof(Program).Assembly
.GetCustomAttributes<AssemblyMetadataAttribute>().FirstOrDefault(f => f.Key =="CommitHash")?.Value;// should be formatted like above, without the ?varx=typeof(Program).Assembly
.GetCustomAttributes<AssemblyMetadataAttribute>().FirstOrDefault(f => f.Key =="CommitHash").Value;
These may be related to the way #596 edge cases are handled
The text was updated successfully, but these errors were encountered: