在 Microsoft Enterprise Framework 中,FormatterData.GetRegistrations 方法去了哪里?

Within the Microsoft Enterprise Framework, where did the FormatterData.GetRegistrations method go?

我有一项不幸的任务是升级一些使用 Microsoft.Practices.EnterpriseLibrary.Logging 库的十年前的 C# 代码。我几乎已经完成编译,只剩下一个错误:

他们正在扩展 Microsoft.Practices.EnterpriseLibrary.Logging.Configuration 提供的 FormatterData 摘要 class。 MSDN includes the (minimal) docuemntation for this class. This includes the alleged method GetDetails。代码覆盖了这个方法。但是,我的图书馆副本没有这种方法。我已经下载了库的最新副本(版本标签:“6.0.0.0”)。我没有原作者正在使用的 dll 的副本。

我只能假设该方法已被删除,我可能需要下载该库的一些历史副本。但是,MSDN 文章(据我所知)并未指明这些方法是在何处添加或删除的。我需要使用哪个版本的库,在哪里可以找到它?

通过在 NuGet 中回滚 EnterpriseLibrary.Common 和 EnterpriseLibrary.Logging 的版本,我发现版本 5.0.505 是具有所需方法的最后一个版本。