1 write to _log
Microsoft.DotNet.SignTool (1)
src\SignTool.cs (1)
32
_log
= log;
8 references to _log
Microsoft.DotNet.SignTool (8)
src\RealSignTool.cs (4)
64
_log
.LogError($"Failed to execute MSBuild on the project file {projectFilePath}");
94
return StrongName.IsSigned(fileFullPath, snPath:_snPath, log:
_log
) ? SigningStatus.Signed : SigningStatus.NotSigned;
134
_log
.LogMessage($"Locally strong naming {filesToLocallyStrongNameSign.Count()} files.");
140
_log
.LogMessage(MessageImportance.High, $"Failed to locally strong name sign '{file.FileName}'");
src\SignTool.cs (4)
87
_log
.LogError($"Failed to zip file {file.FullPath} to {zipFilePath}");
120
_log
.LogError($"Failed to unzip file {item.Value} to {item.Key}");
247
_log
.LogMessage($"Strong-name signing '{file.FullPath}' locally with key '{file.SignInfo.StrongName}'.");
249
return StrongName.Sign(file.FullPath, file.SignInfo.StrongName, _args.SNBinaryPath,
_log
);