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)
207_log.LogMessage($"Tracking file '{file.FullPath}' isNested={isNested}"); 220_filesToCopy.Add(new KeyValuePair<string, string>(existingSignInfo.FullPath, file.FullPath)); 309_log.LogMessage(MessageImportance.Low, $"Ignoring zero length file: {file.FullPath}"); 324Debug.Assert(parentContainer.FullPath != file.FullPath); 371if (FileSignInfo.IsPEFile(file.FullPath)) 373isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 376peInfo = GetPEInfo(file.FullPath); 421else if (FileSignInfo.IsPkg(file.FullPath) || FileSignInfo.IsAppBundle(file.FullPath)) 423isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 425else if (FileSignInfo.IsNupkg(file.FullPath)) 427isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 429else if (FileSignInfo.IsWixInstaller(file.FullPath)) 431isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 433else if (FileSignInfo.IsDeb(file.FullPath)) 435isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 437else if (FileSignInfo.IsRpm(file.FullPath)) 439isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 441else if (FileSignInfo.IsPowerShellScript(file.FullPath)) 443isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath)); 456_log.LogMessage(MessageImportance.Low, $"File configured to not be signed: {file.FullPath}{fileSpec}"); 510warning = $"Signing Microsoft library '{file.FullPath}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'."; 515warning = $"Signing 3rd party library '{file.FullPath}' with Microsoft certificate '{signInfo.Certificate}'. The library is considered 3rd party library due to its copyright: '{peInfo.Copyright}'."; 541_log.LogMessage(MessageImportance.Low, $"Ignoring non-signable file: {file.FullPath}"); 551_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is already signed."); 554_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is not signed."); 557_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' signing status is unknown, treating as unsigned."); 566bool isAlreadyStrongNamed = StrongNameHelper.IsSigned(file.FullPath, snPath: _snPath); 569_log.LogMessage(MessageImportance.Low, $"PE file {file.FullPath} does not have a valid strong name signature."); 573_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);