1 write to DirPath
Microsoft.DotNet.ApiDiff.Tests (1)
TempDirectory.cs (1)
23DirPath = path;
20 references to DirPath
Microsoft.DotNet.ApiDiff.Tests (20)
Diff.Disk.Tests.cs (18)
88inputFolderPath.DirPath, 94outputFolderPath.DirPath, 99VerifyDiskWrite(outputFolderPath.DirPath, DefaultTableOfContentsTitle, ExpectedTableOfContents, DefaultExpectedAssemblyMarkdowns); 246inputFolderPath.DirPath, 252outputFolderPath.DirPath, 257VerifyDiskWrite(outputFolderPath.DirPath, DefaultTableOfContentsTitle, expectedTableOfContents, expectedAssemblyMarkdowns); 269DirectoryInfo inputFolderPath = new(Path.Join(root.DirPath, "inputFolder")); 270DirectoryInfo outputFolderPath = new(Path.Join(root.DirPath, "outputFolder")); 367inputFolderPath.DirPath, 373outputFolderPath.DirPath, 378VerifyDiskWrite(outputFolderPath.DirPath, DefaultTableOfContentsTitle, ExpectedTableOfContents, expectedAssemblyMarkdowns); 392inputFolderPath.DirPath, 398outputFolderPath.DirPath, 403string tableOfContentsMarkdownFilePath = Path.Join(outputFolderPath.DirPath, $"{DefaultTableOfContentsTitle}.md"); 408string myAssemblyMarkdownFilePath = Path.Join(outputFolderPath.DirPath, $"{DefaultTableOfContentsTitle}_{DefaultAssemblyName}.md"); 423DirectoryInfo inputFolderPath = new(Path.Join(root.DirPath, "inputFolder")); 424DirectoryInfo outputFolderPath = new(Path.Join(root.DirPath, "outputFolder")); 551FileInfo file = new(Path.Join(root.DirPath, Path.GetRandomFileName()));
TempDirectory.cs (2)
35public string GenerateRandomFilePath() => Path.Combine(DirPath, Path.GetRandomFileName()); 39try { Directory.Delete(DirPath, recursive: true); }