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