1 write to FullPath
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
37FullPath = fullPath;
25 references to FullPath
Microsoft.DotNet.SignTool (25)
src\Configuration.cs (23)
202_log.LogMessage($"Tracking file '{file.FullPath}' isNested={isNested}"); 215_filesToCopy.Add(new KeyValuePair<string, string>(existingSignInfo.FullPath, file.FullPath)); 302Debug.Assert(parentContainer.FullPath != file.FullPath); 349if (FileSignInfo.IsPEFile(file.FullPath)) 351using (var stream = File.OpenRead(file.FullPath)) 356peInfo = GetPEInfo(file.FullPath); 397else if (FileSignInfo.IsPackage(file.FullPath)) 399isAlreadySigned = VerifySignatures.IsSignedContainer(file.FullPath, _pathToContainerUnpackingDirectory, _tarToolPath); 402_log.LogMessage(MessageImportance.Low, $"Container {file.FullPath} does not have a signature marker."); 406_log.LogMessage(MessageImportance.Low, $"Container {file.FullPath} has a signature marker."); 409else if (FileSignInfo.IsWix(file.FullPath)) 411isAlreadySigned = VerifySignatures.IsDigitallySigned(file.FullPath); 414_log.LogMessage(MessageImportance.Low, $"File {file.FullPath} is not digitally signed."); 418_log.LogMessage(MessageImportance.Low, $"File {file.FullPath} is digitally signed."); 421else if(FileSignInfo.IsPowerShellScript(file.FullPath)) 423isAlreadySigned = VerifySignatures.VerifySignedPowerShellFile(file.FullPath); 426_log.LogMessage(MessageImportance.Low, $"File {file.FullPath} does not have a signature block."); 430_log.LogMessage(MessageImportance.Low, $"File {file.FullPath} has a signature block."); 444_log.LogMessage(MessageImportance.Low, $"File configured to not be signed: {file.FullPath}{fileSpec}"); 478warning = $"Signing Microsoft library '{file.FullPath}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'."; 483warning = $"Signing 3rd party library '{file.FullPath}' with Microsoft certificate '{signInfo.Certificate}'. The library is considered 3rd party library due to its copyright: '{peInfo.Copyright}'."; 509_log.LogMessage(MessageImportance.Low, $"Ignoring non-signable file: {file.FullPath}");
src\FileSignInfo.cs (2)
15internal string FullPath => File.FullPath; 106Debug.Assert(pathWithHash.FullPath != null);