1 write to FullPath
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
37
FullPath
= 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
));
302
Debug.Assert(parentContainer.
FullPath
!= file.
FullPath
);
349
if (FileSignInfo.IsPEFile(file.
FullPath
))
351
using (var stream = File.OpenRead(file.
FullPath
))
356
peInfo = GetPEInfo(file.
FullPath
);
397
else if (FileSignInfo.IsPackage(file.
FullPath
))
399
isAlreadySigned = 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.");
409
else if (FileSignInfo.IsWix(file.
FullPath
))
411
isAlreadySigned = 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.");
421
else if(FileSignInfo.IsPowerShellScript(file.
FullPath
))
423
isAlreadySigned = 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}");
478
warning = $"Signing Microsoft library '{file.
FullPath
}' with 3rd party certificate '{signInfo.Certificate}'. The library is considered Microsoft library due to its copyright: '{peInfo.Copyright}'.";
483
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}'.";
509
_log.LogMessage(MessageImportance.Low, $"Ignoring non-signable file: {file.
FullPath
}");
src\FileSignInfo.cs (2)
15
internal string FullPath => File.
FullPath
;
106
Debug.Assert(pathWithHash.
FullPath
!= null);