// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet.Pdb {
///
/// PDB file kind
///
public enum PdbFileKind {
///
/// Windows PDB
///
WindowsPDB,
///
/// Portable PDB
///
PortablePDB,
///
/// Embedded portable PDB
///
EmbeddedPortablePDB,
}
}