2 writes to FullPath
Microsoft.DotNet.SignCheckLibrary (2)
Verification\MachOVerifier.cs (1)
40
svr.
FullPath
= path;
Verification\SignatureVerificationResult.cs (1)
213
FullPath
= Path.GetFullPath(path);
22 references to FullPath
Microsoft.DotNet.SignCheckLibrary (22)
Verification\ArchiveVerifier.cs (8)
36
string fullPath = svr.
FullPath
;
57
string fullPath = svr.
FullPath
;
83
svr.
FullPath
,
84
Path.GetDirectoryName(svr.
FullPath
) ?? SignCheckResources.NA,
90
Log.WriteMessage(LogVerbosity.Detailed, SignCheckResources.DiagSkippingArchiveExtraction, svr.
FullPath
);
101
foreach (ArchiveEntry archiveEntry in ReadArchiveEntries(svr.
FullPath
))
153
string parent = Path.GetDirectoryName(svr.
FullPath
) ?? SignCheckResources.NA;
154
svr = SignatureVerificationResult.UnsupportedFileTypeResult(svr.
FullPath
, parent, svr.VirtualPath);
Verification\ExeVerifier.cs (2)
30
Log.WriteMessage(LogVerbosity.Detailed, SignCheckResources.WixBundle, svr.
FullPath
);
38
Output o = unbinder.Unbind(svr.
FullPath
, OutputType.Bundle, svr.TempPath);
Verification\FileVerifier.cs (1)
196
svr.AddDetail(DetailKeys.File, SignCheckResources.DetailFullName, svr.
FullPath
);
Verification\LzmaVerifier.cs (1)
20
string fullPath = svr.
FullPath
;
Verification\MachOVerifier.cs (4)
63
(int signExitCode, string signOutput, string signError) = Utils.RunBashCommand($"codesign --verify --verbose {svr.
FullPath
}");
74
(int authExitCode, string authOutput, string authError) = Utils.RunBashCommand($"codesign -dvvv {svr.
FullPath
}");
137
(_, string output, string error) = Utils.RunBashCommand($"codesign -dvv --verbose=4 {svr.
FullPath
}");
154
Utils.RunBashCommand($"codesign -d --extract-certificates {svr.
FullPath
}", tempDir);
Verification\MsiVerifier.cs (2)
30
using (var installPackage = new InstallPackage(svr.
FullPath
, DatabaseOpenMode.Transact, sourceDir: null, workingDir: svr.TempPath))
70
using (var installDatabase = new Database(svr.
FullPath
, DatabaseOpenMode.ReadOnly))
Verification\PortableExecutableVerifier.cs (3)
40
PEHeader = new PortableExecutableHeader(svr.
FullPath
);
75
svr.IsStrongNameSigned = StrongNameHelper.IsSigned(svr.
FullPath
);
80
if (StrongNameHelper.GetStrongNameTokenFromAssembly(svr.
FullPath
, out string tokenStr) == 0)
Verification\XmlVerifier.cs (1)
26
svr.IsSigned = IsSigned(svr.
FullPath
, out xmlCertificate);