.NET Standard 2.0 中是否提供服务发现?

Is Service Discovery available in .NET Standard 2.0?

使用 中的提示,我已经能够在将我的 .NET Framework 4.8 程序集转换为 .NET Standard 2.0 时包含一般 WCF 支持。但是,我的代码严重依赖服务发现。

我尝试了以下软件包:

System.ServiceModel.Duplex
System.ServiceModel.Federation
System.ServiceModel.Http
System.ServiceModel.NetTcp
System.ServiceModel.Primitives
System.ServiceModel.Security
System.ServiceModel.Syndication

...但其中 none 包含支持 namespaces/classes.

是否可以在我的 .NET Standard 2.0 程序集中包含服务发现支持?

伤心DiscoveryClient is .Net framework only

所以您不能将所有内容都转换为 .net standard/.net core。