1 write to FileSignInfo
Microsoft.DotNet.SignTool (1)
src\ZipPart.cs (1)
14FileSignInfo = signInfo;
10 references to FileSignInfo
Microsoft.DotNet.SignTool (10)
src\BatchSignUtil.cs (4)
247return zipData.NestedParts.Values.All(x => (!x.FileSignInfo.SignInfo.ShouldSign || 248trackedSet.Contains(x.FileSignInfo.FileContentKey)) && !toRepackSet.Contains(x.FileSignInfo.FullPath) 535VerifyAfterSign(zipPart.Value.FileSignInfo);
src\Configuration.cs (2)
241hasSignableParts = _zipDataMap[fileSignInfo.FileContentKey].NestedParts.Values.Any(b => b.FileSignInfo.SignInfo.ShouldSign || b.FileSignInfo.HasSignableParts);
src\ZipData.cs (4)
128using (var signedStream = File.OpenRead(signedPart.Value.FileSignInfo.FullPath)) 131log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {FileSignInfo.FullPath} -> {relativeName}."); 161log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {file}."); 162File.Copy(signedPart.Value.FileSignInfo.FullPath, file, true);