Removed the DIA classes and the cod associated with it. Introduced a PdbReaderFactory that decides with PdbReader to use (full or portable). Introduced a PdbReader interface that abstracts the differences between full pdb (Uses ISymUnmanaged classes to read the pdb) and portable pdb (uses Reflection MetadataReader).
This commit is contained in:
parent
811db45cf3
commit
85884c5e9a
54 changed files with 998 additions and 2555 deletions
|
@ -0,0 +1,13 @@
|
|||
namespace TestAppWithFullPdbs
|
||||
{
|
||||
public class ClassForFullPdbs
|
||||
{
|
||||
public void TestMethodForFullPdbs()
|
||||
{
|
||||
}
|
||||
|
||||
public void AnotherTestMethodForFullPdbs()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue