Align namespaces in WebAssets to Umbraco.Cms.Infrastructure

This commit is contained in:
Mole
2021-02-15 13:07:12 +01:00
parent f0362d4790
commit 7f58b3479b
20 changed files with 26 additions and 26 deletions

View File

@@ -4,7 +4,7 @@ using System.Text.RegularExpressions;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Hosting;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
/// <summary>
/// Creates a JavaScript block to initialize the back office
@@ -42,7 +42,6 @@ namespace Umbraco.Web.WebAssets
jarray.Append("\"");
jarray.Append(file);
jarray.Append("\"");
}
jarray.Append("]");

View File

@@ -4,8 +4,6 @@ using System.Linq;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Umbraco.Cms.Core;
using Umbraco.Cms.Core.Configuration;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Hosting;
using Umbraco.Cms.Core.Manifest;
@@ -13,7 +11,7 @@ using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.WebAssets;
using Umbraco.Extensions;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
public class BackOfficeWebAssets
{

View File

@@ -1,7 +1,7 @@
using System;
using Umbraco.Cms.Core.WebAssets;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
/// <summary>
/// Indicates that the property editor requires this asset be loaded when the back office is loaded

View File

@@ -8,11 +8,8 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>

View File

@@ -4,8 +4,9 @@ using System.Threading.Tasks;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Hosting;
using Umbraco.Cms.Core.WebAssets;
using Umbraco.Cms.Infrastructure.WebAssets;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Extensions
{
public static class RuntimeMinifierExtensions
{

View File

@@ -3,7 +3,7 @@ using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using Umbraco.Cms.Core.Events;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
/// <summary>
/// Ensures the server variables are included in the outgoing JS script

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Umbraco.Cms.Core.Events;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
/// <summary>
/// A notification for when server variables are parsing

View File

@@ -1,6 +1,6 @@
using Umbraco.Cms.Core.Composing;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
public sealed class WebAssetsComponent : IComponent
{

View File

@@ -2,7 +2,7 @@ using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;
using Umbraco.Extensions;
namespace Umbraco.Web.WebAssets
namespace Umbraco.Cms.Infrastructure.WebAssets
{
public sealed class WebAssetsComposer : ComponentComposer<WebAssetsComponent>
{