Это assembly с атрибутом BizTalkAssemblyAttribute(). Вот так, например (в autogenerated AssemblyInfo.cs )
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute()] :)
А вот как можно проверить, собран ли assembly с этим аттрибутом :
public bool IsBizTalkAssembly(Assembly assm)
{
Type type = Type.GetType("Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute");
return assm.IsDefined(type, true);
//foreach (Attribute attr in Attribute.GetCustomAttributes(assm))
//{
// if (attr.ToString() == "Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute")
// return true;
//}
//return false;
}