29 references to FileName
Microsoft.DotNet.SignTool (29)
src\BatchSignUtil.cs (4)
105_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}'"); 698if (_itemsToSkipStrongNameCheck.Contains(file.FileName))
src\Configuration.cs (1)
283if (!WixPackInfo.IsWixPack(fileSignInfo.FileName))
src\FileSignInfo.cs (19)
20internal string DetachedSignatureFilePath => $"{FileName}.sig"; 74internal bool IsDeb() => IsDeb(FileName); 76internal bool IsRpm() => IsRpm(FileName); 78internal bool IsPEFile() => IsPEFile(FileName); 84internal bool IsVsix() => IsVsix(FileName); 86internal bool IsNupkg() => IsNupkg(FileName) && !IsSymbolsNupkg(); 88internal bool IsPkg() => IsPkg(FileName); 90internal bool IsAppBundle() => IsAppBundle(FileName); 92internal bool IsSymbolsNupkg() => IsSymbolsNupkg(FileName); 94internal bool IsZip() => IsZip(FileName); 96internal bool IsTarGZip() => IsTarGZip(FileName); 98internal bool IsWixInstaller() => IsWixInstaller(FileName); 100internal bool IsMPack() => IsMPack(FileName); 106&& (IsWixInstaller(FileName) 107|| Path.GetExtension(FileName).Equals(".exe", StringComparison.OrdinalIgnoreCase)); 111(Path.GetExtension(FileName).Equals(".exe", StringComparison.OrdinalIgnoreCase) || 112Path.GetExtension(FileName).Equals(".msi", StringComparison.OrdinalIgnoreCase)); 126internal bool IsPowerShellScript() => IsPowerShellScript(FileName); 149=> $"File '{FileName}'" +
src\RealSignTool.cs (1)
187_log.LogMessage(MessageImportance.High, $"Failed to locally strong name sign '{file.FileName}'");
src\ZipData.cs (4)
248string outputFileName = Path.Combine(outputDir, FileSignInfo.FileName); 543log.LogError($"Failed to create new DEB package: {FileSignInfo.FileName}"); 586throw new Exception($"Failed to create MD5 checksums file for: {FileSignInfo.FileName}"); 740throw new Exception($"Failed to create RPM package: {FileSignInfo.FileName}");