1 write to FullPath
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
37
FullPath
= 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
}");
324
Debug.Assert(parentContainer.
FullPath
!= file.
FullPath
);
371
if (FileSignInfo.IsPEFile(file.
FullPath
))
373
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.
FullPath
));
376
peInfo = GetPEInfo(file.
FullPath
);
421
else if (FileSignInfo.IsPkg(file.
FullPath
) || FileSignInfo.IsAppBundle(file.
FullPath
))
423
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.
FullPath
, _pkgToolPath));
425
else if (FileSignInfo.IsNupkg(file.
FullPath
))
427
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.
FullPath
));
429
else if (FileSignInfo.IsWixInstaller(file.
FullPath
))
431
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.
FullPath
));
433
else if (FileSignInfo.IsDeb(file.
FullPath
))
435
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.
FullPath
));
437
else if (FileSignInfo.IsRpm(file.
FullPath
))
439
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.
FullPath
));;
441
else if (FileSignInfo.IsPowerShellScript(file.
FullPath
))
443
isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.
FullPath
));
456
_log.LogMessage(MessageImportance.Low, $"File configured to not be signed: {file.
FullPath
}{fileSpec}");
510
warning = $"Signing Microsoft library '{file.
FullPath
}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'.";
515
warning = $"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.");
566
bool 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)
16
internal string FullPath => File.
FullPath
;
133
Debug.Assert(pathWithHash.
FullPath
!= null);