Use this page to detail your site's privacy policy.
-------------------------------------------------------------------------------- /src/samples/worker/Elsa.Samples.CustomAttributesChildWorker/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/samples/worker/Elsa.Samples.WhileLoopWorker/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/activities/Elsa.Activities.MassTransit/Options/MessageScheduleOptions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Elsa.Activities.MassTransit.Options 4 | { 5 | public class MessageScheduleOptions 6 | { 7 | public Uri SchedulerAddress { get; set; } = default!; 8 | } 9 | } -------------------------------------------------------------------------------- /src/clients/Elsa.Client/Models/WorkflowStatus.cs: -------------------------------------------------------------------------------- 1 | namespace Elsa.Client.Models 2 | { 3 | public enum WorkflowStatus 4 | { 5 | Idle, 6 | Running, 7 | Finished, 8 | Suspended, 9 | Faulted, 10 | Cancelled 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/core/Elsa.Abstractions/Metadata/IActivityPropertyDefaultValueProvider.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace Elsa.Metadata 4 | { 5 | public interface IActivityPropertyDefaultValueProvider 6 | { 7 | object GetDefaultValue(PropertyInfo property); 8 | } 9 | } -------------------------------------------------------------------------------- /src/core/Elsa.Abstractions/Metadata/IActivityPropertyOptionsResolver.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace Elsa.Metadata 4 | { 5 | public interface IActivityPropertyOptionsResolver 6 | { 7 | object? GetOptions(PropertyInfo activityPropertyInfo); 8 | } 9 | } -------------------------------------------------------------------------------- /src/core/Elsa.Abstractions/Services/Models/StartableWorkflowDefinition.cs: -------------------------------------------------------------------------------- 1 | namespace Elsa.Services.Models 2 | { 3 | public record StartableWorkflowDefinition(IWorkflowBlueprint WorkflowBlueprint, string? ActivityId, string? CorrelationId = default, string? ContextId = default); 4 | } -------------------------------------------------------------------------------- /src/samples/aspnet/Elsa.Samples.CustomTenantIdSource/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/samples/server/SampleClientApp.Web/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/samples/worker/Elsa.Samples.AzureServiceBusWorker/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/samples/worker/Elsa.Samples.MultiTenantChildWorker/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/samples/worker/Elsa.Samples.RunChildWorkflowWorker/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/shared/Elsa.Testing.Shared/Helpers/AssertableActivityState.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Elsa.Testing.Shared.Helpers 4 | { 5 | public class AssertableActivityState 6 | { 7 | public ListLearn about building Web apps with ASP.NET Core and integrating Elsa Dashboard on a sub path.
10 |