3 writes to ThreadExceptionRecorded
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
1298telemetry.ThreadExceptionRecorded = _threadException is not null;
Microsoft.Build.Framework.UnitTests (2)
CrashTelemetry_Tests.cs (2)
700ThreadExceptionRecorded = false, 740ThreadExceptionRecorded = true,
6 references to ThreadExceptionRecorded
Microsoft.Build.Framework (3)
Telemetry\CrashTelemetry.cs (3)
530AddIfNotNull(ThreadExceptionRecorded); 600AddIfNotNull(ThreadExceptionRecorded?.ToString(), nameof(ThreadExceptionRecorded));
Microsoft.Build.Framework.UnitTests (3)
CrashTelemetry_Tests.cs (3)
717props[nameof(CrashTelemetry.ThreadExceptionRecorded)].ShouldBe("False"); 759props[nameof(CrashTelemetry.ThreadExceptionRecorded)].ShouldBe(true); 785props.ShouldNotContainKey(nameof(CrashTelemetry.ThreadExceptionRecorded));