Sitecore-Config-Builder
Sitecore-Config-Builder copied to clipboard
Wrong merging order in 8.2
Scenario:
- Install clean Sitecore 8.2 Update-2
- Put the attached Test.config file to zzz folder (rename
.config.txt
to.config
) - 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>
This should be fixed when adopting changes in Configuration Roles project.