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