3 implementations of LogPath
dotnet (3)
Installer\Windows\NullInstallerLogger.cs (1)
13
public string
LogPath
=> string.Empty;
Installer\Windows\PipeStreamSetupLogger.cs (1)
29
public string
LogPath
Installer\Windows\TimestampedFileLogger.cs (1)
38
public string
LogPath
10 references to LogPath
dotnet (10)
Commands\Workload\Install\MsiInstallerBase.cs (10)
410
return Path.Combine(Path.GetDirectoryName(Log.
LogPath
),
411
Path.GetFileNameWithoutExtension(Log.
LogPath
) + $"_{packInfo.ResolvedPackageId}-{packInfo.Version}_{action}.log");
422
return Path.Combine(Path.GetDirectoryName(Log.
LogPath
),
423
Path.GetFileNameWithoutExtension(Log.
LogPath
) + $"_{msi.Manifest.Payload}_{action}.log");
434
return Path.Combine(Path.GetDirectoryName(Log.
LogPath
),
435
Path.GetFileNameWithoutExtension(Log.
LogPath
) + $"_{productCode}_{action}.log");
445
return Path.Combine(Path.GetDirectoryName(Log.
LogPath
),
446
Path.GetFileNameWithoutExtension(Log.
LogPath
) + $"_{Path.GetFileNameWithoutExtension(msiPath)}_AdminInstall.log");
457
return Path.Combine(Path.GetDirectoryName(Log.
LogPath
),
458
Path.GetFileNameWithoutExtension(Log.
LogPath
) + $"_{record.MsiId}-{record.MsiNuGetVersion}_{action}.log");