1 write to FullPath
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
37FullPath = fullPath;
35 references to FullPath
Microsoft.DotNet.SignTool (35)
src\Configuration.cs (33)
213_log.LogMessage($"Tracking file '{file.FullPath}' isNested={isNested}"); 226_filesToCopy.Add(new KeyValuePair<string, string>(existingSignInfo.FullPath, file.FullPath)); 320ExecutableType executableType = ContentUtil.GetExecutableType(file.FullPath); 326_log.LogMessage(MessageImportance.Low, $"Ignoring zero length file: {file.FullPath}"); 341Debug.Assert(parentContainer.FullPath != file.FullPath); 388if (FileSignInfo.IsPEFile(file.FullPath)) 390isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 393peInfo = GetPEInfo(file.FullPath); 439else if (FileSignInfo.IsPkg(file.FullPath) || FileSignInfo.IsAppBundle(file.FullPath)) 441isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 443else if (FileSignInfo.IsNupkg(file.FullPath)) 445isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 447else if (FileSignInfo.IsWixInstaller(file.FullPath)) 449isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 451else if (FileSignInfo.IsDeb(file.FullPath)) 453isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 455else if (FileSignInfo.IsRpm(file.FullPath)) 457isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 459else if (FileSignInfo.IsPowerShellScript(file.FullPath)) 461isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath)); 486_log.LogMessage(MessageImportance.Low, $"File configured to not be signed: {file.FullPath}{fileSpec}"); 517_log.LogWarning($"Skipping file '{file.FullPath}' because .js files are no longer signed by default. " + 556_log.LogMessage(MessageImportance.Low, $"Ignoring non-signable file: {file.FullPath}"); 566_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is already signed."); 569_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' is not signed."); 572_log.LogMessage(MessageImportance.Low, $"File '{file.FullPath}' signing status is unknown, treating as unsigned."); 581bool isAlreadyStrongNamed = StrongNameHelper.IsSigned(file.FullPath, snPath: _snPath); 584_log.LogMessage(MessageImportance.Low, $"PE file {file.FullPath} does not have a valid strong name signature."); 588_log.LogMessage(MessageImportance.Low, $"PE file {file.FullPath} has a valid strong name signature."); 623warning = $"Signing Microsoft library '{file.FullPath}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'."; 628warning = $"Signing 3rd party library '{file.FullPath}' with Microsoft certificate '{signInfo.Certificate}'. The library is considered 3rd party library due to its copyright: '{peInfo.Copyright}'.";
src\FileSignInfo.cs (2)
16internal string FullPath => File.FullPath; 136Debug.Assert(pathWithHash.FullPath != null);