7 references to ShouldSign
Microsoft.DotNet.SignTool (7)
src\BatchSignUtil.cs (4)
102if (fileSignInfo.SignInfo.StrongName != null && fileSignInfo.SignInfo.ShouldSign) 125var filesToSign = files.Where(fileInfo => fileInfo.SignInfo.ShouldSign).ToArray(); 152var enginesToSign = files.Where(fileInfo => fileInfo.SignInfo.ShouldSign && 301return zipData.NestedParts.Values.All(x => (!x.FileSignInfo.SignInfo.ShouldSign ||
src\Configuration.cs (2)
245hasSignableParts = _zipDataMap[fileSignInfo.FileContentKey].NestedParts.Values.Any(b => b.FileSignInfo.SignInfo.ShouldSign || b.FileSignInfo.HasSignableParts); 467if (signInfo.ShouldSign && peInfo != null)
src\FileSignInfo.cs (1)
104internal bool ShouldTrack => SignInfo.ShouldSign || ShouldRepack;