1 write to Path
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\DebugDirectory\CodeViewDebugDirectoryData.cs (1)
29Path = path;
12 references to Path
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
PDB\PortablePdbTests.cs (2)
203Assert.Equal("d.pdb", codeViewData.Path); 264Assert.Equal("d.pdb", codeViewData.Path);
Microsoft.CodeAnalysis.Features (1)
Emit\CompilationOutputFilesWithImplicitPdbPath.cs (1)
69pdbPath = peReader.ReadCodeViewDebugDirectoryData(codeViewEntry).Path;
Microsoft.CodeAnalysis.Rebuild (1)
CompilationFactory.cs (1)
136pdbFilePath = codeView.Path ?? throw new InvalidOperationException(RebuildResources.Could_not_get_PDB_file_path);
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
PDB\PortablePdbTests.vb (2)
110Assert.Equal("d.pdb", codeViewData.Path) 164Assert.Equal("d.pdb", codeViewData.Path)
Microsoft.VisualStudio.LanguageServices (2)
PdbSourceDocument\AbstractSourceLinkService.cs (2)
43Path.GetFileName(codeViewEntry.Path), 49codeViewEntry.Path);
Microsoft.VisualStudio.LanguageServices.DevKit (2)
src\VisualStudio\Core\Def\PdbSourceDocument\AbstractSourceLinkService.cs (2)
43Path.GetFileName(codeViewEntry.Path), 49codeViewEntry.Path);
Roslyn.Test.PdbUtilities (1)
Reader\PdbValidation.cs (1)
578Assert.Equal(pdbPath, codeViewData.Path);
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\PEReader.cs (1)
794string collocatedPdbPath = PathUtilities.CombinePathWithRelativePath(peImageDirectory, PathUtilities.GetFileName(data.Path));