在Azure Service Fabric项目中构建期间,Visual Studio会覆盖ApplicationManifest.xml

时间:2017-05-17 07:50:48

标签: c# visual-studio-2015 azure-service-fabric

我只是想在我的集群中设置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文件中设置相同的内容。

0 个答案:

没有答案