1 write to FullPath
Microsoft.DotNet.SignCheckLibrary (1)
Verification\SignatureVerificationResult.cs (1)
195FullPath = Path.GetFullPath(path);
14 references to FullPath
Microsoft.DotNet.SignCheckLibrary (14)
Verification\ArchiveVerifier.cs (1)
28using (ZipArchive zipArchive = ZipFile.OpenRead(svr.FullPath))
Verification\ExeVerifier.cs (2)
30Log.WriteMessage(LogVerbosity.Detailed, SignCheckResources.WixBundle, svr.FullPath); 38Output o = unbinder.Unbind(svr.FullPath, OutputType.Bundle, svr.TempPath);
Verification\FileVerifier.cs (1)
196svr.AddDetail(DetailKeys.File, SignCheckResources.DetailFullName, svr.FullPath);
Verification\LzmaVerifier.cs (1)
20string fullPath = svr.FullPath;
Verification\MsiVerifier.cs (2)
30using (var installPackage = new InstallPackage(svr.FullPath, DatabaseOpenMode.Transact, sourceDir: null, workingDir: svr.TempPath)) 69using (var installDatabase = new Database(svr.FullPath, DatabaseOpenMode.ReadOnly))
Verification\NupkgVerifier.cs (1)
25string fullPath = svr.FullPath;
Verification\PortableExecutableVerifier.cs (3)
37PEHeader = new PortableExecutableHeader(svr.FullPath); 59int hresult = StrongName.ClrStrongName.StrongNameSignatureVerificationEx(svr.FullPath, fForceVerification: true, pfWasVerified: out wasVerified); 70hresult = StrongName.GetStrongNameTokenFromAssembly(svr.FullPath, out publicToken);
Verification\VsixVerifier.cs (1)
27string fullPath = svr.FullPath;
Verification\XmlVerifier.cs (1)
26svr.IsSigned = IsSigned(svr.FullPath, out xmlCertificate);
Verification\ZipVerifier.cs (1)
18string fullPath = svr.FullPath;