I have a standalone application (Nancy standalone hosted app in C#) and it should be packed for service-fabric. The application is a front-end based app and there will be more than single instance. Each instance should discover the rest of them because it has to communicate directly with the rest of them (they are in the same cluster).
Is there a way to name those instances so they become accessible by name (using DNS approach - is that the best?), without relying on Service Fabric API ?
(I have found the way how the name the service, but I do not know how to access the individual service instance directly)