21 references to TempPath
Microsoft.DotNet.SignCheckLibrary (21)
Verification\ArchiveVerifier.cs (1)
30
string tempPath = svr.
TempPath
;
Verification\ExeVerifier.cs (5)
35
Log.WriteMessage(LogVerbosity.Diagnostic, SignCheckResources.DiagExtractingFileContents, svr.
TempPath
);
38
Output o = unbinder.Unbind(svr.FullPath, OutputType.Bundle, svr.
TempPath
);
40
if (Directory.Exists(svr.
TempPath
))
42
foreach (string file in Directory.EnumerateFiles(svr.
TempPath
, "*.*", SearchOption.AllDirectories))
50
Directory.Delete(svr.
TempPath
, recursive: true);
Verification\LzmaVerifier.cs (1)
25
string tempPath = svr.
TempPath
;
Verification\MsiVerifier.cs (7)
27
CreateDirectory(svr.
TempPath
);
30
using (var installPackage = new InstallPackage(svr.FullPath, DatabaseOpenMode.Transact, sourceDir: null, workingDir: svr.
TempPath
))
41
string targetPath = Path.Combine(svr.
TempPath
, name);
50
Log.WriteMessage(LogVerbosity.Diagnostic, SignCheckResources.DiagExtractingFileContents, svr.
TempPath
);
77
string binaryFilePath = Path.Combine(svr.
TempPath
, binaryFile);
78
StructuredStorage.SaveStream(record, svr.
TempPath
);
91
DeleteDirectory(svr.
TempPath
);
Verification\MspVerifier.cs (3)
25
StructuredStorage.OpenAndExtractStorages(path, svr.
TempPath
);
27
foreach (string file in Directory.EnumerateFiles(svr.
TempPath
))
32
DeleteDirectory(svr.
TempPath
);
Verification\MsuVerifier.cs (4)
29
Log.WriteMessage(LogVerbosity.Diagnostic, SignCheckResources.DiagExtractingFileContents, svr.
TempPath
);
31
cabInfo.Unpack(svr.
TempPath
);
33
foreach (string cabFile in Directory.EnumerateFiles(svr.
TempPath
))
44
DeleteDirectory(svr.
TempPath
);