7 references to CrashDumpType
Microsoft.TestPlatform.Extensions.BlameDataCollector (7)
BlameCollector.cs (7)
55
private
CrashDumpType
_crashDumpType;
164
_environmentVariables.Add(new KeyValuePair<string, string>("COMPlus_DbgMiniDumpType", _crashDumpType ==
CrashDumpType
.Full ? "4" : "2"));
368
if (Enum.TryParse(attribute.Value, ignoreCase: true, out
CrashDumpType
value) && Enum.IsDefined(typeof(
CrashDumpType
), value))
374
_logger.LogWarning(_context.SessionDataCollectionContext, FormatBlameParameterValueIncorrectMessage(attribute, Enum.GetNames(typeof(
CrashDumpType
))));
437
_logger.LogWarning(_context.SessionDataCollectionContext, FormatBlameParameterValueIncorrectMessage(attribute, Enum.GetNames(typeof(
CrashDumpType
))));
648
_processDumpUtility.StartTriggerBasedProcessDump(args.TestHostProcessId, dumpDirectory, _crashDumpType ==
CrashDumpType
.Full, _targetFramework!, _collectDumpAlways, logWarning);