1 write to FileSignInfo
Microsoft.DotNet.SignTool (1)
src\ZipPart.cs (1)
14FileSignInfo = signInfo;
16 references to FileSignInfo
Microsoft.DotNet.SignTool (16)
src\BatchSignUtil.cs (4)
300return zipData.NestedParts.Values.All(x => (!x.FileSignInfo.SignInfo.ShouldSign || 301trackedSet.Contains(x.FileSignInfo.FileContentKey)) && !toRepackSet.Contains(x.FileSignInfo.FullPath) 673VerifyAfterSign(log, nestedPart.FileSignInfo);
src\Configuration.cs (2)
272hasSignableParts = _zipDataMap[fileSignInfo.FileContentKey].NestedParts.Values.Any(b => b.FileSignInfo.SignInfo.ShouldSign || b.FileSignInfo.HasSignableParts);
src\ZipData.cs (10)
225using (var signedStream = File.OpenRead(signedPart.Value.FileSignInfo.FullPath)) 228log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {FileSignInfo.FullPath} -> {relativeName}."); 268log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {file}."); 269File.Copy(signedPart.Value.FileSignInfo.FullPath, file, true); 387log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {FileSignInfo.FullPath} -> {relativePath} (perms: {Convert.ToString((uint)extractedFileMode, 8)})."); 388File.Copy(signedPart.Value.FileSignInfo.FullPath, path, overwrite: true); 500using FileStream signedStream = File.OpenRead(signedPart.Value.FileSignInfo.FullPath); 504log.LogMessage(MessageImportance.Low, $"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {FileSignInfo.FullPath} -> {relativeName} (perms: {Convert.ToString((uint)entry.Mode, 8)})."); 540string dataArchive = NestedParts.Values.Single().FileSignInfo.FullPath; 727File.Copy(signedPart.FileSignInfo.FullPath, Path.Combine(layout, signedPart.RelativeName), overwrite: true);