Migrating from .Net Framework to .Net Core 3.1 and need to convert a WCF tcp/mex client. My attempts to create the client result in: "No endpoints compatible with .Net core apps were found". The Visual Studio 2019 tool to generate a connected client is titled: "Microsoft WCF Web Service Reference Provider". This makes me ask if the tool only works with web http/wsdl endpoints and will not work with tcp/mex?
Another clue is that the generation results in a "Warning: cannot import wsdl binding". That makes sense since the 'definition language' is mex. (P.S. If I create the client using .Net Framework in Visual Studio 2017 against the same endpoint it works just fine so the endpoint is valid.)
Even if .Net Core will work with tcp/mex ultimately I need to decide if this is worth the effort or should I bite the bullet and convert to gRPC?