1 write to FullPath
Microsoft.DotNet.SignCheckLibrary (1)
Verification\SignatureVerificationResult.cs (1)
195FullPath = Path.GetFullPath(path);
12 references to FullPath
Microsoft.DotNet.SignCheckLibrary (12)
Verification\ArchiveVerifier.cs (5)
36string fullPath = svr.FullPath; 57string fullPath = svr.FullPath; 89foreach (ArchiveEntry archiveEntry in ReadArchiveEntries(svr.FullPath)) 120string parent = Path.GetDirectoryName(svr.FullPath) ?? SignCheckResources.NA; 121svr = SignatureVerificationResult.UnsupportedFileTypeResult(svr.FullPath, parent, svr.VirtualPath);
Verification\ExeVerifier.cs (1)
61Log.WriteMessage(LogVerbosity.Normal, $"Unable to verify contents of '{svr.FullPath}' on .NET Core.");
Verification\FileVerifier.cs (1)
196svr.AddDetail(DetailKeys.File, SignCheckResources.DetailFullName, svr.FullPath);
Verification\LzmaVerifier.cs (1)
20string fullPath = svr.FullPath;
Verification\PortableExecutableVerifier.cs (3)
38PEHeader = new PortableExecutableHeader(svr.FullPath); 67svr.IsStrongNameSigned = StrongNameHelper.IsSigned(svr.FullPath); 72if (StrongNameHelper.GetStrongNameTokenFromAssembly(svr.FullPath, out string tokenStr) == 0)
Verification\XmlVerifier.cs (1)
26svr.IsSigned = IsSigned(svr.FullPath, out xmlCertificate);