我只是想在我的集群中设置DNS服务,以便在两个微服务之间进行通信。我正在关注文章https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-dnsservice。我有一个服务结构项目,服务具有无状态web api模式。我在
中设置了ServiceDnsName属性,如下所示<DefaultServices>
<Service Name="ManageCustomer" ServiceDnsName="service1.application1">
<StatelessService ServiceTypeName="ManageCustomerType" InstanceCount="[ManageCustomer_InstanceCount]">
<SingletonPartition />
</StatelessService>
</Service>
</DefaultServices>
但是当我构建解决方案时,Visual Studio会从ApplicationManifest.xml文件中删除添加的属性。任何想法如何解决这个问题。有没有办法在ServiceManifest.xml文件中设置相同的内容。