1 write to FullPath
Microsoft.DotNet.SignCheckLibrary (1)
Verification\SignatureVerificationResult.cs (1)
204
FullPath
= Path.GetFullPath(path);
15 references to FullPath
Microsoft.DotNet.SignCheckLibrary (15)
Verification\ArchiveVerifier.cs (5)
36
string fullPath = svr.
FullPath
;
57
string fullPath = svr.
FullPath
;
89
foreach (ArchiveEntry archiveEntry in ReadArchiveEntries(svr.
FullPath
))
132
string parent = Path.GetDirectoryName(svr.
FullPath
) ?? SignCheckResources.NA;
133
svr = SignatureVerificationResult.UnsupportedFileTypeResult(svr.
FullPath
, parent, svr.VirtualPath);
Verification\ExeVerifier.cs (2)
33
Log.WriteMessage(LogVerbosity.Detailed, SignCheckResources.WixBundle, svr.
FullPath
);
41
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\MsiVerifier.cs (2)
30
using (var installPackage = new InstallPackage(svr.
FullPath
, DatabaseOpenMode.Transact, sourceDir: null, workingDir: svr.TempPath))
69
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);