diff --git a/src/Umbraco.Infrastructure/Compose/NestedContentPropertyComposer.cs b/src/Umbraco.Infrastructure/Compose/NestedContentPropertyComposer.cs
index 5268476148..c8cddd6d08 100644
--- a/src/Umbraco.Infrastructure/Compose/NestedContentPropertyComposer.cs
+++ b/src/Umbraco.Infrastructure/Compose/NestedContentPropertyComposer.cs
@@ -1,5 +1,4 @@
using Umbraco.Cms.Core.Composing;
-using Umbraco.Core;
namespace Umbraco.Cms.Core.Compose
{
diff --git a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs
index 531cad03b5..f42e88b7df 100644
--- a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs
+++ b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs
@@ -15,6 +15,7 @@ using Umbraco.Cms.Core.Mail;
using Umbraco.Cms.Core.Manifest;
using Umbraco.Cms.Core.Media;
using Umbraco.Cms.Core.Models.PublishedContent;
+using Umbraco.Cms.Core.Packaging;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.PropertyEditors.ValueConverters;
using Umbraco.Cms.Core.PublishedCache;
@@ -39,8 +40,6 @@ using Umbraco.Cms.Infrastructure.Persistence;
using Umbraco.Cms.Infrastructure.Runtime;
using Umbraco.Cms.Infrastructure.Search;
using Umbraco.Cms.Infrastructure.Serialization;
-using Umbraco.Core;
-using Umbraco.Core.Packaging;
using Umbraco.Extensions;
namespace Umbraco.Cms.Infrastructure.DependencyInjection
diff --git a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.Services.cs b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.Services.cs
index 31564b71c4..eb45b28280 100644
--- a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.Services.cs
+++ b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.Services.cs
@@ -14,7 +14,6 @@ using Umbraco.Cms.Core.Routing;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Infrastructure.Services;
using Umbraco.Cms.Infrastructure.Services.Implement;
-using Umbraco.Core.Packaging;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
diff --git a/src/Umbraco.Infrastructure/Packaging/PackageDataInstallation.cs b/src/Umbraco.Infrastructure/Packaging/PackageDataInstallation.cs
index f47096499a..25a184d356 100644
--- a/src/Umbraco.Infrastructure/Packaging/PackageDataInstallation.cs
+++ b/src/Umbraco.Infrastructure/Packaging/PackageDataInstallation.cs
@@ -10,9 +10,9 @@ using Microsoft.Extensions.Options;
using Umbraco.Cms.Core.Collections;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Models;
+using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Models.Entities;
using Umbraco.Cms.Core.Models.Packaging;
-using Umbraco.Cms.Core.Packaging;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.Scoping;
using Umbraco.Cms.Core.Serialization;
@@ -20,7 +20,7 @@ using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Strings;
using Umbraco.Extensions;
-namespace Umbraco.Core.Packaging
+namespace Umbraco.Cms.Core.Packaging
{
public class PackageDataInstallation
{
@@ -483,11 +483,11 @@ namespace Umbraco.Core.Packaging
case IMediaType m:
if (parent is null)
{
- return new Media(name, parentId, m) { Key = key, Level = level, SortOrder = sortOrder, } as T;
+ return new Models.Media(name, parentId, m) { Key = key, Level = level, SortOrder = sortOrder, } as T;
}
else
{
- return new Media(name, (IMedia)parent, m) { Key = key, Level = level, SortOrder = sortOrder, } as T;
+ return new Models.Media(name, (IMedia)parent, m) { Key = key, Level = level, SortOrder = sortOrder, } as T;
}
default:
diff --git a/src/Umbraco.Infrastructure/Packaging/PackageInstallation.cs b/src/Umbraco.Infrastructure/Packaging/PackageInstallation.cs
index 3b3ccf2f0d..1c7de01bb6 100644
--- a/src/Umbraco.Infrastructure/Packaging/PackageInstallation.cs
+++ b/src/Umbraco.Infrastructure/Packaging/PackageInstallation.cs
@@ -5,10 +5,9 @@ using System.Linq;
using System.Xml.Linq;
using Umbraco.Cms.Core.Hosting;
using Umbraco.Cms.Core.Models.Packaging;
-using Umbraco.Cms.Core.Packaging;
using Umbraco.Extensions;
-namespace Umbraco.Core.Packaging
+namespace Umbraco.Cms.Core.Packaging
{
public class PackageInstallation : IPackageInstallation
{
diff --git a/src/Umbraco.Infrastructure/PropertyEditors/ConfigurationEditorOfTConfiguration.cs b/src/Umbraco.Infrastructure/PropertyEditors/ConfigurationEditorOfTConfiguration.cs
index f3abcf7ce6..53a3c63510 100644
--- a/src/Umbraco.Infrastructure/PropertyEditors/ConfigurationEditorOfTConfiguration.cs
+++ b/src/Umbraco.Infrastructure/PropertyEditors/ConfigurationEditorOfTConfiguration.cs
@@ -9,7 +9,6 @@ using Newtonsoft.Json.Linq;
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.Serialization;
-using Umbraco.Core;
using Umbraco.Extensions;
namespace Umbraco.Cms.Core.PropertyEditors
diff --git a/src/Umbraco.Infrastructure/WebAssets/Resources.Designer.cs b/src/Umbraco.Infrastructure/WebAssets/Resources.Designer.cs
index df35c0e8a1..e2bc499c30 100644
--- a/src/Umbraco.Infrastructure/WebAssets/Resources.Designer.cs
+++ b/src/Umbraco.Infrastructure/WebAssets/Resources.Designer.cs
@@ -8,8 +8,10 @@
//
//------------------------------------------------------------------------------
-namespace Umbraco.Cms.Infrastructure.WebAssets
-{
+namespace Umbraco.Cms.Infrastructure.WebAssets {
+ using System;
+
+
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
@@ -17,19 +19,19 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
-
+
private static global::System.Resources.ResourceManager resourceMan;
-
+
private static global::System.Globalization.CultureInfo resourceCulture;
-
+
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
-
+
///
/// Returns the cached ResourceManager instance used by this class.
///
@@ -37,13 +39,13 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Umbraco.Infrastructure.WebAssets.Resources", typeof(Resources).Assembly);
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Umbraco.Cms.Infrastructure.WebAssets.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
-
+
///
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
@@ -57,9 +59,10 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
resourceCulture = value;
}
}
-
+
///
/// Looks up a localized string similar to [
+ ///
/// 'lib/jquery/jquery.min.js',
/// 'lib/jquery-ui/jquery-ui.min.js',
/// 'lib/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js',
@@ -76,14 +79,14 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
/// 'lib/angular-cookies/angular-cookies.js',
/// 'lib/angular-aria/angular-aria.min.js',
/// 'lib/angular-touch/angular-touch.js',
- /// 'lib/angula [rest of string was truncated]";.
+ /// 'lib/ [rest of string was truncated]";.
///
internal static string JsInitialize {
get {
return ResourceManager.GetString("JsInitialize", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to LazyLoad.js("##JsInitialize##", function () {
/// //we need to set the legacy UmbClientMgr path
@@ -104,21 +107,21 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
return ResourceManager.GetString("Main", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to [
- /// '../lib/jquery/jquery.min.js',
- /// '../lib/angular/angular.js',
- /// '../lib/underscore/underscore-min.js',
- /// '../lib/umbraco/Extensions.js',
- /// '../js/app.js',
- /// '../js/umbraco.resources.js',
- /// '../js/umbraco.services.js',
- /// '../js/umbraco.interceptors.js',
- /// '../ServerVariables',
- /// '../lib/signalr/jquery.signalR.js',
- /// '../BackOffice/signalr/hubs',
- /// '../js/umbraco.preview.js'
+ /// 'lib/jquery/jquery.min.js',
+ /// 'lib/angular/angular.js',
+ /// 'lib/underscore/underscore-min.js',
+ /// 'lib/umbraco/Extensions.js',
+ /// 'js/utilities.js',
+ /// 'js/app.js',
+ /// 'js/umbraco.resources.js',
+ /// 'js/umbraco.services.js',
+ /// 'js/umbraco.interceptors.js',
+ /// 'ServerVariables',
+ /// 'lib/signalr/signalr.min.js',
+ /// 'js/umbraco.preview.js'
///]
///.
///
@@ -127,7 +130,7 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
return ResourceManager.GetString("PreviewInitialize", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to // TODO: This would be nicer as an angular module so it can be injected into stuff... that'd be heaps nicer, but
///// how to do that when this is not a regular JS file, it is a server side JS file and RequireJS seems to only want
@@ -144,7 +147,7 @@ namespace Umbraco.Cms.Infrastructure.WebAssets
return ResourceManager.GetString("ServerVariables", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to [
/// 'lib/tinymce/tinymce.min.js',
diff --git a/src/Umbraco.ModelsBuilder.Embedded/PublishedElementExtensions.cs b/src/Umbraco.ModelsBuilder.Embedded/PublishedElementExtensions.cs
index 29ca0c86e2..63606e38d4 100644
--- a/src/Umbraco.ModelsBuilder.Embedded/PublishedElementExtensions.cs
+++ b/src/Umbraco.ModelsBuilder.Embedded/PublishedElementExtensions.cs
@@ -3,11 +3,10 @@ using System.Linq.Expressions;
using System.Reflection;
using Umbraco.Cms.Core.Models.PublishedContent;
using Umbraco.Cms.ModelsBuilder.Embedded;
-using Umbraco.Extensions;
// same namespace as original Umbraco.Web PublishedElementExtensions
// ReSharper disable once CheckNamespace
-namespace Umbraco.Core
+namespace Umbraco.Extensions
{
///
/// Provides extension methods to models.
diff --git a/src/Umbraco.Tests.Integration/Umbraco.Core/Packaging/PackageDataInstallationTests.cs b/src/Umbraco.Tests.Integration/Umbraco.Core/Packaging/PackageDataInstallationTests.cs
index 8d99c05690..ecd4c8681c 100644
--- a/src/Umbraco.Tests.Integration/Umbraco.Core/Packaging/PackageDataInstallationTests.cs
+++ b/src/Umbraco.Tests.Integration/Umbraco.Core/Packaging/PackageDataInstallationTests.cs
@@ -12,6 +12,7 @@ using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Models.Packaging;
+using Umbraco.Cms.Core.Packaging;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.Scoping;
using Umbraco.Cms.Core.Services;
@@ -20,7 +21,6 @@ using Umbraco.Cms.Infrastructure.Persistence.Dtos;
using Umbraco.Cms.Infrastructure.Serialization;
using Umbraco.Cms.Tests.Common.Testing;
using Umbraco.Cms.Tests.Integration.Testing;
-using Umbraco.Core.Packaging;
using Umbraco.Extensions;
using Umbraco.Tests.Services.Importing;
using Constants = Umbraco.Cms.Core.Constants;
diff --git a/src/Umbraco.Tests.UnitTests/TestHelpers/TestHelper.cs b/src/Umbraco.Tests.UnitTests/TestHelpers/TestHelper.cs
index fd27817475..81276ba562 100644
--- a/src/Umbraco.Tests.UnitTests/TestHelpers/TestHelper.cs
+++ b/src/Umbraco.Tests.UnitTests/TestHelpers/TestHelper.cs
@@ -38,7 +38,6 @@ using Umbraco.Cms.Infrastructure.Persistence.Mappers;
using Umbraco.Cms.Infrastructure.Persistence.SqlSyntax;
using Umbraco.Cms.Tests.Common;
using Umbraco.Cms.Web.Common.AspNetCore;
-using Umbraco.Core;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
using File = System.IO.File;
diff --git a/src/Umbraco.Tests.UnitTests/Umbraco.Web.Common/AngularIntegration/JsInitializationTests.cs b/src/Umbraco.Tests.UnitTests/Umbraco.Web.Common/AngularIntegration/JsInitializationTests.cs
index 29833c064d..f47e631cc8 100644
--- a/src/Umbraco.Tests.UnitTests/Umbraco.Web.Common/AngularIntegration/JsInitializationTests.cs
+++ b/src/Umbraco.Tests.UnitTests/Umbraco.Web.Common/AngularIntegration/JsInitializationTests.cs
@@ -2,7 +2,6 @@
// See LICENSE for more details.
using NUnit.Framework;
-using Umbraco.Cms.Core.WebAssets;
using Umbraco.Cms.Infrastructure.WebAssets;
using Umbraco.Extensions;
diff --git a/src/Umbraco.Web.BackOffice/Controllers/BackOfficeServerVariables.cs b/src/Umbraco.Web.BackOffice/Controllers/BackOfficeServerVariables.cs
index 76328bee5a..14be214c70 100644
--- a/src/Umbraco.Web.BackOffice/Controllers/BackOfficeServerVariables.cs
+++ b/src/Umbraco.Web.BackOffice/Controllers/BackOfficeServerVariables.cs
@@ -24,7 +24,6 @@ using Umbraco.Cms.Web.BackOffice.Routing;
using Umbraco.Cms.Web.BackOffice.Security;
using Umbraco.Cms.Web.BackOffice.Trees;
using Umbraco.Cms.Web.Common.Attributes;
-using Umbraco.Core;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
diff --git a/src/Umbraco.Web.BackOffice/Controllers/ContentTypeController.cs b/src/Umbraco.Web.BackOffice/Controllers/ContentTypeController.cs
index e32cb46b57..4dcd53f744 100644
--- a/src/Umbraco.Web.BackOffice/Controllers/ContentTypeController.cs
+++ b/src/Umbraco.Web.BackOffice/Controllers/ContentTypeController.cs
@@ -17,6 +17,7 @@ using Umbraco.Cms.Core.Hosting;
using Umbraco.Cms.Core.Mapping;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Models.ContentEditing;
+using Umbraco.Cms.Core.Packaging;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.Security;
using Umbraco.Cms.Core.Services;
@@ -24,7 +25,6 @@ using Umbraco.Cms.Core.Strings;
using Umbraco.Cms.Web.Common.ActionsResults;
using Umbraco.Cms.Web.Common.Attributes;
using Umbraco.Cms.Web.Common.Authorization;
-using Umbraco.Core.Packaging;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
using ContentType = Umbraco.Cms.Core.Models.ContentType;
diff --git a/src/Umbraco.Web.BackOffice/Controllers/UsersController.cs b/src/Umbraco.Web.BackOffice/Controllers/UsersController.cs
index fbe422acb6..90b5797804 100644
--- a/src/Umbraco.Web.BackOffice/Controllers/UsersController.cs
+++ b/src/Umbraco.Web.BackOffice/Controllers/UsersController.cs
@@ -39,7 +39,6 @@ using Umbraco.Cms.Web.BackOffice.Security;
using Umbraco.Cms.Web.Common.ActionsResults;
using Umbraco.Cms.Web.Common.Attributes;
using Umbraco.Cms.Web.Common.Authorization;
-using Umbraco.Core;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
diff --git a/src/Umbraco.Web.BackOffice/Trees/ContentTreeController.cs b/src/Umbraco.Web.BackOffice/Trees/ContentTreeController.cs
index 19018f8add..3525c8c48b 100644
--- a/src/Umbraco.Web.BackOffice/Trees/ContentTreeController.cs
+++ b/src/Umbraco.Web.BackOffice/Trees/ContentTreeController.cs
@@ -20,7 +20,6 @@ using Umbraco.Cms.Infrastructure;
using Umbraco.Cms.Infrastructure.Search;
using Umbraco.Cms.Web.Common.Attributes;
using Umbraco.Cms.Web.Common.Authorization;
-using Umbraco.Core;
using Umbraco.Extensions;
using Constants = Umbraco.Cms.Core.Constants;
diff --git a/src/Umbraco.Web.UI.NetCore/Views/Partials/grid/editors/embed.cshtml b/src/Umbraco.Web.UI.NetCore/Views/Partials/grid/editors/embed.cshtml
index c28b375fc8..dbd9438fa7 100644
--- a/src/Umbraco.Web.UI.NetCore/Views/Partials/grid/editors/embed.cshtml
+++ b/src/Umbraco.Web.UI.NetCore/Views/Partials/grid/editors/embed.cshtml
@@ -1,5 +1,4 @@
-@using Umbraco.Core
-@using Umbraco.Cms.Core
+@using Umbraco.Cms.Core
@inherits Umbraco.Cms.Web.Common.AspNetCore.UmbracoViewPage
@{