 
	
In the web.config you can put parts of the config in separate files. This is useful when updating a web.config without overwriting installation specific settings.
In web.config:
<appSettings configSource="appSettings.config">In appSettings.config:
<?xml version="1.0"?>
<appSettings>
  <add key="PageInspector:ServerCodeMappingSupport" value="Disabled" />
  <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Skins" />
  <add key="Telerik.EnableEmbeddedSkins" value="false" />
  <add key="Telerik.Skin" value="Kis3" />
  <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled" />
  <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" />
 </appSettings>But the upgrade wizard cannot handle this and modifies the web.config like this:
<appSettings configSource="appSettings.config">
  <add key="Telerik.ScriptManager.TelerikCdn" value="Disabled" />
  <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" /></appSettings>Resulting in different errors.
It's easy te correct this, but it's a little annoying.. :-)
 
	
		You are welcome, Kees!
The priority wasn't high, but having in mind the impact, we decided to escalate and fix it :)
Regards,
 
Rumen
 Progress Telerik
    
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
 
	
