Changes namespace of UmbracoViewPage

This commit is contained in:
Shannon
2021-02-12 17:23:14 +11:00
parent af42af7425
commit 996c2b4277
12 changed files with 24 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<Umbraco.Core.Models.Blocks.BlockListModel>
@inherits Umbraco.Web.Common.Views.UmbracoViewPage<Umbraco.Core.Models.Blocks.BlockListModel>
@{
if (!Model.Any()) { return; }
}

View File

@@ -1,7 +1,7 @@
@using System.Web
@using System.Web
@using Microsoft.AspNetCore.Html
@using Newtonsoft.Json.Linq
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<dynamic>
@inherits Umbraco.Web.Common.Views.UmbracoViewPage<dynamic>
@*
Razor helpers located at the bottom of this file

View File

@@ -1,7 +1,7 @@
@using System.Web
@using System.Web
@using Microsoft.AspNetCore.Html
@using Newtonsoft.Json.Linq
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<dynamic>
@inherits Umbraco.Web.Common.Views.UmbracoViewPage<dynamic>
@if (Model != null && Model.sections != null)
{

View File

@@ -1,5 +1,5 @@
@using Umbraco.Core
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<dynamic>
@ using Umbraco.Core
@inherits UmbracoViewPage<dynamic>
@{
string embedValue = Convert.ToString(Model.value);

View File

@@ -1,4 +1,4 @@
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<dynamic>
@inherits UmbracoViewPage<dynamic>
@if (Model.value != null)
{