// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet.MD {
///
/// Version strings found in the meta data header
///
public static class MDHeaderRuntimeVersion {
///
/// MS CLR 1.0 version string (.NET Framework 1.0)
///
public const string MS_CLR_10 = "v1.0.3705";
///
/// MS CLR 1.0 version string (.NET Framework 1.0). This is an incorrect version that shouldn't be used.
///
public const string MS_CLR_10_X86RETAIL = "v1.x86ret";
///
/// MS CLR 1.0 version string (.NET Framework 1.0). This is an incorrect version that shouldn't be used.
///
public const string MS_CLR_10_RETAIL = "retail";
///
/// MS CLR 1.0 version string (.NET Framework 1.0). This is an incorrect version that shouldn't be used.
///
public const string MS_CLR_10_COMPLUS = "COMPLUS";
///
/// MS CLR 1.1 version string (.NET Framework 1.1)
///
public const string MS_CLR_11 = "v1.1.4322";
///
/// MS CLR 2.0 version string (.NET Framework 2.0-3.5)
///
public const string MS_CLR_20 = "v2.0.50727";
///
/// MS CLR 4.0 version string (.NET Framework 4.0-4.5)
///
public const string MS_CLR_40 = "v4.0.30319";
///
/// MS CLR 1.0 any version
///
public const string MS_CLR_10_PREFIX = "v1.0";
///
/// MS CLR 1.0 any version
///
public const string MS_CLR_10_PREFIX_X86RETAIL = "v1.x86";
///
/// MS CLR 1.1 any version
///
public const string MS_CLR_11_PREFIX = "v1.1";
///
/// MS CLR 2.0 any version
///
public const string MS_CLR_20_PREFIX = "v2.0";
///
/// MS CLR 4.0 any version
///
public const string MS_CLR_40_PREFIX = "v4.0";
///
/// ECMA 2002 version string
///
public const string ECMA_2002 = "Standard CLI 2002";
///
/// ECMA 2005 version string
///
public const string ECMA_2005 = "Standard CLI 2005";
///
/// Portable PDB v1.0
///
public const string PORTABLE_PDB_V1_0 = "PDB v1.0";
}
}