Seems like just a missing partial for `/Sitemap` node @mattbrailsford ## Error  ## Sitemap.cshtml ```cshtml @inherits UmbracoViewPage @{ Layout = null; // New Context.Response.ContentType = "text/xml"; // Old //Response.ContentType = "text/xml"; } <xml> @(await Html.PartialAsync("TestPartial")) </xml> ```