13 references to VSTestTrace
dotnet (13)
Commands\Test\VSTest\TestCommand.cs (9)
33
if (
VSTestTrace
.TraceEnabled)
40
VSTestTrace
.SafeWriteTrace(() => $"Argument list: '{commandLineParameters}'");
185
VSTestTrace
.SafeWriteTrace(() => $"MSBuild args from forwarded options: {string.Join(", ", parsedArgs)}");
247
VSTestTrace
.SafeWriteTrace(() => $"Root variable set {rootVariableName}:{rootValue}");
250
VSTestTrace
.SafeWriteTrace(() => $"Starting test using MSBuild with arguments '{testCommand.GetArgumentsToMSBuild()}' custom MSBuild path '{msbuildPath}' norestore '{noRestore}'");
265
VSTestTrace
.SafeWriteTrace(() => "No artifact found, post-processing won't run.");
269
VSTestTrace
.SafeWriteTrace(() => $"Artifacts directory found '{expectedArtifactDirectory}', running post-processing.");
286
VSTestTrace
.SafeWriteTrace(() => $"Cleaning artifact directory '{expectedArtifactDirectory}'.");
293
VSTestTrace
.SafeWriteTrace(() => $"Exception during artifact cleanup: \n{ex}");
Commands\Test\VSTest\VSTestFeatureFlag.cs (2)
26
if (
VSTestTrace
.TraceEnabled)
30
VSTestTrace
.SafeWriteTrace(() => $"Feature {flag.Key}: {IsSet(flag.Key)}");
Commands\Test\VSTest\VSTestForwardingApp.cs (2)
21
VSTestTrace
.SafeWriteTrace(() => $"Root variable set {rootVariableName}:{rootValue}");
24
VSTestTrace
.SafeWriteTrace(() => $"Forwarding to '{GetVSTestExePath()}' with args \"{argsToForward?.Aggregate((a, b) => $"{a} | {b}")}\"");