8 writes to FileName
Microsoft.TestPlatform.CommunicationUtilities (1)
_generated\62\TestPlatformJsonContext.TestProcessStartInfo.g.cs (1)
61Setter = static (obj, value) => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo)obj).FileName = value!,
Microsoft.TestPlatform.CrossPlatEngine (1)
Adapter\FrameworkHandle.cs (1)
92FileName = filePath,
Microsoft.TestPlatform.TestHostRuntimeProvider (6)
Hosting\DefaultTestHostManager.cs (1)
246FileName = launcherPath,
Hosting\DotnetTestHostManager.cs (5)
365startInfo.FileName = fullExePath; 395startInfo.FileName = testHostExeNugetPath; 521startInfo.FileName = _dotnetHostPath; 528startInfo.FileName = currentProcessPath; 553startInfo.FileName = muxerPath;
11 references to FileName
Microsoft.TestPlatform.CommunicationUtilities (3)
_generated\62\TestPlatformJsonContext.TestProcessStartInfo.g.cs (2)
60Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo)obj).FileName, 168writer.WriteString(PropName_FileName, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo)value).FileName);
EventHandlers\TestRunEventsHandler.cs (1)
97EqtTrace.Info("Sending LaunchProcessWithDebuggerAttached on additional test process: {0}", testProcessStartInfo?.FileName);
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\ProxyOperationManager.cs (1)
235_testHostProcessFileName = testHostStartInfo.FileName;
Microsoft.TestPlatform.TestHostRuntimeProvider (7)
Hosting\DefaultTestHostManager.cs (3)
530EqtTrace.Verbose("Launching default test Host Process {0} with arguments {1}", testHostStartInfo.FileName, testHostStartInfo.Arguments); 542EqtTrace.Verbose("DefaultTestHostManager: Starting process '{0}' with command line '{1}', CreateNoWindow={2}", testHostStartInfo.FileName, testHostStartInfo.Arguments, _createNoNewWindow); 546testHostStartInfo.FileName!,
Hosting\DotnetTestHostManager.cs (4)
561EqtTrace.Verbose("DotnetTestHostmanager: Full path of host exe is {0}", startInfo.FileName); 616var testhostDllPath = Path.ChangeExtension(startInfo.FileName, ".dll"); 976EqtTrace.Verbose($"DotnetTestHostManager: Starting process '{0}' with command line '{1}' and DOTNET environment: {string.Join(", ", dotnetEnvVars)} ", testHostStartInfo.FileName, testHostStartInfo.Arguments); 984testHostStartInfo.FileName!,