Rename extensions namespace
This commit is contained in:
parent
fdec3a64c0
commit
d41039b567
|
|
@ -2,7 +2,6 @@ using System.Threading;
|
|||
using System.Threading.Tasks;
|
||||
using Elsa.Activities.Http.Models;
|
||||
using Elsa.Activities.Http.Services;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using Elsa;
|
||||
using Elsa.Activities.Http;
|
||||
using Elsa.Activities.Http.Handlers;
|
||||
using Elsa.Activities.Http.Options;
|
||||
|
|
@ -6,7 +7,6 @@ using Elsa.Activities.Http.Parsers;
|
|||
using Elsa.Activities.Http.RequestHandlers.Handlers;
|
||||
using Elsa.Activities.Http.Services;
|
||||
using Elsa.Activities.Http.Triggers;
|
||||
using Elsa.Extensions;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc.Infrastructure;
|
||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ using System.Net;
|
|||
using System.Threading.Tasks;
|
||||
using Elsa.Activities.Http.Extensions;
|
||||
using Elsa.Activities.Http.Triggers;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
using Elsa.Triggers;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ using System.Threading.Tasks;
|
|||
using Elsa.Activities.Http.Models;
|
||||
using Elsa.Activities.Http.RequestHandlers.Results;
|
||||
using Elsa.Activities.Http.Services;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Persistence.Specifications;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using System.Threading.Tasks;
|
||||
using Elsa.ActivityResults;
|
||||
using Elsa.Attributes;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services.Models;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Builders;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services.Models;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System;
|
||||
using System.Linq.Expressions;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services.Models;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq.Expressions;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services.Models;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System.Threading.Tasks;
|
||||
using Elsa.Exceptions;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Messages;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
|
|
|
|||
|
|
@ -2,4 +2,5 @@
|
|||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=activities_005Ccontrolflow_005Cfor/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=activities_005Csignaling_005Cactivities_005Creceivesignal/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=activities_005Csignaling_005Creceivesignal/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=activities_005Csignaling_005Csignaled/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=activities_005Csignaling_005Csignaled/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=extensions/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using System;
|
||||
using Elsa.Caching;
|
||||
using Elsa.DistributedLock;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Persistence.InMemory;
|
||||
using Elsa.Serialization;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using AutoMapper;
|
|||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class AutoMapperServiceCollectionExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.Extensions.Caching.Memory;
|
||||
using Microsoft.Extensions.Primitives;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class CacheEntryExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ using Elsa.Builders;
|
|||
using Elsa.Consumers;
|
||||
using Elsa.Converters;
|
||||
using Elsa.Expressions;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.HostedServices;
|
||||
using Elsa.Mapping;
|
||||
using Elsa.Metadata;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Runtime.InteropServices;
|
||||
using System.Security;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class ExceptionExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ using System;
|
|||
using System.Linq.Expressions;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class LambdaExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using MediatR;
|
|||
using MediatR.Registration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class MessageHandlerServiceCollectionExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class StringExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using Rebus.Routing.TypeBased;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class TypeBaseRouterConfigurationBuilderExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using Elsa.Models;
|
|||
using Elsa.Persistence;
|
||||
using Elsa.Persistence.Specifications;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class WorkflowDefinitionStoreExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Linq;
|
||||
using Elsa.Models;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class WorkflowInstanceCollectionExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using Elsa.Models;
|
|||
using Elsa.Persistence;
|
||||
using Elsa.Persistence.Specifications;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class WorkflowInstanceStoreExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using Elsa.Models;
|
|||
using Elsa.Services;
|
||||
using Elsa.Services.Models;
|
||||
|
||||
namespace Elsa.Extensions
|
||||
namespace Elsa
|
||||
{
|
||||
public static class WorkflowRegistryExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ using Elsa.ActivityResults;
|
|||
using Elsa.Builders;
|
||||
using Elsa.Events;
|
||||
using Elsa.Exceptions;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services.Models;
|
||||
|
|
|
|||
|
|
@ -20,8 +20,4 @@
|
|||
<ProjectReference Include="..\ElsaDashboard.Backend\ElsaDashboard.Backend.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="wwwroot" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ using System;
|
|||
using System.Data;
|
||||
using System.Linq;
|
||||
using Elsa.Data;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence.YesSql.Data;
|
||||
using Elsa.Persistence.YesSql.Documents;
|
||||
using Elsa.Persistence.YesSql.Indexes;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ using System.Reflection;
|
|||
using System.Threading.Tasks;
|
||||
|
||||
using Elsa.Data;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence.YesSql.Data;
|
||||
using Elsa.Persistence.YesSql.Documents;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Services;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Persistence.Specifications;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using Elsa.Extensions;
|
||||
using Elsa.Scripting.JavaScript.Options;
|
||||
using Elsa.Scripting.JavaScript.Services;
|
||||
using System;
|
||||
using Elsa;
|
||||
using Elsa.Expressions;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using Elsa.Expressions;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Scripting.Liquid.Filters;
|
||||
using Elsa.Scripting.Liquid.Options;
|
||||
using Elsa.Scripting.Liquid.Services;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Persistence;
|
||||
using Elsa.Services;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Persistence;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
using System;
|
||||
using Elsa.Extensions;
|
||||
using Elsa;
|
||||
using Elsa.Models;
|
||||
using Elsa.Server.Api.Extensions;
|
||||
using Elsa.Server.Api.Mapping;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using Elsa.Extensions;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services;
|
||||
using Microsoft.Azure.ServiceBus.Primitives;
|
||||
using Rebus.Config;
|
||||
using Rebus.Logging;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using Elsa.Extensions;
|
||||
using Elsa.Services;
|
||||
using Elsa.Services;
|
||||
using Rebus.Config;
|
||||
using Rebus.Logging;
|
||||
using Rebus.Routing.TypeBased;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Elsa.Core.IntegrationTests.Helpers;
|
||||
using Elsa.Extensions;
|
||||
using Elsa.Models;
|
||||
using Elsa.Testing.Shared.Unit;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
|
|
|||
Loading…
Reference in a new issue