Sitecore-Config-Builder icon indicating copy to clipboard operation
Sitecore-Config-Builder copied to clipboard

Wrong merging order in 8.2

Open AlenPelin opened this issue 7 years ago • 1 comments

Scenario:

  1. Install clean Sitecore 8.2 Update-2
  2. Put the attached Test.config file to zzz folder (rename .config.txt to .config)
  3. Compare showconfig.aspx output with showconfig.xml generated by the tool

Expected Result: It should not be any difference.

Actual Result: There is difference in elements order:

Sitecore 8.2 Update-2

<renderingControls>
<control template="sublayout" propertyMap="AssemblyName=assembly, ClassName=class, MethodName=method" type="test, test" patch:source="Test.config"/>
<control template="sublayout" type="Sitecore.Web.UI.SublayoutRenderingType, Sitecore.Kernel" propertyMap="Path=path"/>
...
</renderingControls>

Sitecore ConfigBuilder:

<renderingControls>
<control template="method rendering" type="Sitecore.Web.UI.WebControls.Method, Sitecore.Kernel" propertyMap="AssemblyName=assembly, ClassName=class, MethodName=method"/>
<control type="test, test" template="sublayout" propertyMap="Path=path" patch:source="Test.config"/>
...
</renderingControls>

AlenPelin avatar Mar 10 '17 03:03 AlenPelin

This should be fixed when adopting changes in Configuration Roles project.

AlenPelin avatar Mar 10 '17 03:03 AlenPelin