1 write to CurrentProcess
dotnet (1)
Installer\Windows\InstallerBase.cs (1)
198CurrentProcess = Process.GetCurrentProcess();
5 references to CurrentProcess
dotnet (5)
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (1)
59Log?.LogMessage($"Executing: {Microsoft.DotNet.Cli.Utils.Windows.GetProcessCommandLine()}, PID: {CurrentProcess.Id}, PPID: {ParentProcess.Id}");
Commands\Workload\Install\NetSdkMsiInstallerServer.cs (3)
171if (ParentProcess == null || ParentProcess.StartTime > CurrentProcess.StartTime || 192string pipeName = WindowsUtils.CreatePipeName(CurrentProcess.Id); 197string logPipeName = WindowsUtils.CreatePipeName(CurrentProcess.Id, "log");
Installer\Windows\InstallerBase.cs (1)
199ParentProcess = CurrentProcess.GetParentProcess();