1 write to FullPath
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
37FullPath = fullPath;
33 references to FullPath
Microsoft.DotNet.SignTool (33)
src\Configuration.cs (31)
206_log.LogMessage($"Tracking file '{file.FullPath}' isNested={isNested}"); 219_filesToCopy.Add(new KeyValuePair<string, string>(existingSignInfo.FullPath, file.FullPath)); 308_log.LogMessage(MessageImportance.Low, $"Ignoring zero length file: {file.FullPath}"); 323Debug.Assert(parentContainer.FullPath != file.FullPath); 370if (FileSignInfo.IsPEFile(file.FullPath)) 372isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 375peInfo = GetPEInfo(file.FullPath); 420else if (FileSignInfo.IsPkg(file.FullPath) || FileSignInfo.IsAppBundle(file.FullPath)) 422isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 424else if (FileSignInfo.IsNupkg(file.FullPath)) 426isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 428else if (FileSignInfo.IsWixInstaller(file.FullPath)) 430isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 432else if (FileSignInfo.IsDeb(file.FullPath)) 434isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 436else if (FileSignInfo.IsRpm(file.FullPath)) 438isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 440else if (FileSignInfo.IsPowerShellScript(file.FullPath)) 442isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath)); 455_log.LogMessage(MessageImportance.Low, $"File configured to not be signed: {file.FullPath}{fileSpec}"); 509warning = $"Signing Microsoft library '{file.FullPath}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'."; 514warning = $"Signing 3rd party library '{file.FullPath}' with Microsoft certificate '{signInfo.Certificate}'. The library is considered 3rd party library due to its copyright: '{peInfo.Copyright}'."; 540_log.LogMessage(MessageImportance.Low, $"Ignoring non-signable file: {file.FullPath}"); 550_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is already signed."); 553_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is not signed."); 556_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' signing status is unknown, treating as unsigned."); 565bool isAlreadyStrongNamed = StrongName.IsSigned(file.FullPath, snPath: _snPath, log: _log); 568_log.LogMessage(MessageImportance.Low, $"PE file {file.FullPath} does not have a valid strong name signature."); 572_log.LogMessage(MessageImportance.Low, $"PE file {file.FullPath} has a valid strong name signature.");
src\FileSignInfo.cs (2)
16internal string FullPath => File.FullPath; 133Debug.Assert(pathWithHash.FullPath != null);