1 write to FileName
Microsoft.DotNet.SignTool (1)
src\PathWithHash.cs (1)
38
FileName
= Path.GetFileName(fullPath);
10 references to FileName
Microsoft.DotNet.SignTool (10)
src\Configuration.cs (8)
210
var wixPack = _wixPacks.SingleOrDefault(w => w.Moniker.Equals(file.
FileName
, StringComparison.OrdinalIgnoreCase));
293
var extension = Path.GetExtension(file.
FileName
);
302
SignedFileContentKey signedFileContentKey = new SignedFileContentKey(file.ContentHash, file.
FileName
);
315
extension = _fileExtensionSignInfo.OrderByDescending(o => o.Key.Length).FirstOrDefault(f => file.
FileName
.EndsWith(f.Key, StringComparison.OrdinalIgnoreCase)).Key ?? extension;
327
new SignedFileContentKey(parentContainer.ContentHash, parentContainer.
FileName
);
411
new ExplicitCertificateKey(file.
FileName
, peInfo.PublicKeyToken, peInfo.TargetFramework, _hashToCollisionIdMap[signedFileContentKey]),
414
new ExplicitCertificateKey(file.
FileName
, peInfo.PublicKeyToken, collisionPriorityId: _hashToCollisionIdMap[signedFileContentKey]),
448
matchedName = _fileSignInfo.TryGetValue(new ExplicitCertificateKey(file.
FileName
,
src\FileSignInfo.cs (2)
15
internal string FileName => File.
FileName
;
138
FileContentKey = new SignedFileContentKey(File.ContentHash, File.
FileName
);