After applying transformation rules on the below target config file and target config file has the output printed in one line continuously but not one line after another. Any help would be greatly appreciated?
Below is my source config file:
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<system.serviceModel xdt:Transform="Replace">
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"></serviceHostingEnvironment>
<client>
<endpoint address="test" binding="basicHttpBinding" bindingConfiguration="test" contract="test" />
<endpoint address="test" binding="basicHttpBinding" bindingConfiguration="test" contract="test" name="test" />
<endpoint binding="test" bindingConfiguration="test" contract="Mango" name="test" />
</system.serviceModel>
</client>
</configuration>
My Target web.config looks like:
<configuration>
<system.serviceModel><serviceHostingEnvironment multipleSiteBindingsEnabled="true"></serviceHostingEnvironment><client><endpoint address="test" binding="basicHttpBinding" bindingConfiguration="test" contract="test" /><endpoint address="test" binding="basicHttpBinding"bindingConfiguration="test" contract="test" name="test" /><endpoint binding="test" bindingConfiguration="test" contract="Mango"name="test" /></system.serviceModel> </client></configuration>