28 references to FileName
Microsoft.DotNet.SignTool (28)
src\BatchSignUtil.cs (5)
107_log.LogMessage($"Removing strong name signing from: '{fileSignInfo.FileName}'"); 173string engineFileName = $"{Path.Combine(workingDirectory, $"{engineContainer}", file.FileName)}{SignToolConstants.MsiEngineExtension}"; 284_log.LogMessage($"Repacking container: '{file.FileName}'"); 289_log.LogMessage($"Packing wix container: '{file.FileName}'"); 660if (_itemsToSkipStrongNameCheck.Contains(file.FileName))
src\Configuration.cs (1)
272if (!WixPackInfo.IsWixPack(fileSignInfo.FileName))
src\FileSignInfo.cs (18)
74internal bool IsDeb() => IsDeb(FileName); 76internal bool IsPEFile() => IsPEFile(FileName); 82internal bool IsVsix() => IsVsix(FileName); 84internal bool IsNupkg() => IsNupkg(FileName) && !IsSymbolsNupkg(); 86internal bool IsPkg() => IsPkg(FileName); 88internal bool IsAppBundle() => IsAppBundle(FileName); 90internal bool IsSymbolsNupkg() => IsSymbolsNupkg(FileName); 92internal bool IsZip() => IsZip(FileName); 94internal bool IsTarGZip() => IsTarGZip(FileName); 96internal bool IsZipContainer() => IsZipContainer(FileName); 98internal bool IsWix() => IsWix(FileName); 104&& (IsWix(FileName) 105|| Path.GetExtension(FileName).Equals(".exe", StringComparison.OrdinalIgnoreCase)); 109(Path.GetExtension(FileName).Equals(".exe", StringComparison.OrdinalIgnoreCase) || 110Path.GetExtension(FileName).Equals(".msi", StringComparison.OrdinalIgnoreCase)); 114internal bool IsPackage() => IsPackage(FileName); 116internal bool IsPowerShellScript() => IsPowerShellScript(FileName); 139=> $"File '{FileName}'" +
src\RealSignTool.cs (1)
145_log.LogMessage(MessageImportance.High, $"Failed to locally strong name sign '{file.FileName}'");
src\ZipData.cs (3)
231string outputFileName = Path.Combine(outputDir, FileSignInfo.FileName); 524log.LogError($"Failed to create new DEB package: {FileSignInfo.FileName}"); 567throw new Exception($"Failed to create MD5 checksums file for: {FileSignInfo.FileName}");