diff --git a/.gitignore b/.gitignore index a939b365f..17bffbeea 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ appsettings.*.json tempkey.jwk .vs Publish +LocalNuget /tests/e2e/videos/ /tests/e2e/screenshots/ diff --git a/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/AbpCliModule.cs b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/AbpCliModule.cs index 4c2bf7e80..4439a5c66 100644 --- a/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/AbpCliModule.cs +++ b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/AbpCliModule.cs @@ -15,6 +15,8 @@ namespace LINGYUN.Abp.Cli { Configure(options => { + options.Commands.Clear(); + options.Commands["help"] = typeof(HelpCommand); options.Commands["create"] = typeof(CreateCommand); }); } diff --git a/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/CommandSelector.cs b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/CommandSelector.cs new file mode 100644 index 000000000..8143ef04a --- /dev/null +++ b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/CommandSelector.cs @@ -0,0 +1,32 @@ +using Microsoft.Extensions.Options; +using System; +using System.Collections.Generic; +using Volo.Abp.Cli; +using Volo.Abp.Cli.Args; +using Volo.Abp.Cli.Commands; +using Volo.Abp.DependencyInjection; + +namespace LINGYUN.Abp.Cli.Commands +{ + [Dependency(ReplaceServices = true)] + public class CommandSelector : ICommandSelector, ITransientDependency + { + protected AbpCliOptions Options { get; } + + public CommandSelector(IOptions options) + { + Options = options.Value; + } + + public Type Select(CommandLineArgs commandLineArgs) + { + if (commandLineArgs.Command.IsNullOrWhiteSpace()) + { + return typeof(HelpCommand); + } + + return Options.Commands.GetOrDefault(commandLineArgs.Command) + ?? typeof(HelpCommand); + } + } +} diff --git a/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/HelpCommand.cs b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/HelpCommand.cs new file mode 100644 index 000000000..4bf6038c5 --- /dev/null +++ b/aspnet-core/modules/cli/LINGYUN.Abp.Cli/LINGYUN/Abp/Cli/Commands/HelpCommand.cs @@ -0,0 +1,98 @@ +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using Microsoft.Extensions.Options; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Volo.Abp.Cli; +using Volo.Abp.Cli.Args; +using Volo.Abp.Cli.Commands; +using Volo.Abp.DependencyInjection; + +namespace LINGYUN.Abp.Cli.Commands +{ + public class HelpCommand : IConsoleCommand, ITransientDependency + { + public ILogger Logger { get; set; } + protected AbpCliOptions AbpCliOptions { get; } + protected IServiceScopeFactory ServiceScopeFactory { get; } + + public HelpCommand(IOptions cliOptions, + IServiceScopeFactory serviceScopeFactory) + { + ServiceScopeFactory = serviceScopeFactory; + Logger = NullLogger.Instance; + AbpCliOptions = cliOptions.Value; + } + + public Task ExecuteAsync(CommandLineArgs commandLineArgs) + { + if (string.IsNullOrWhiteSpace(commandLineArgs.Target)) + { + Logger.LogInformation(GetUsageInfo()); + return Task.CompletedTask; + } + + if (!AbpCliOptions.Commands.ContainsKey(commandLineArgs.Target)) + { + Logger.LogWarning($"There is no command named {commandLineArgs.Target}."); + Logger.LogInformation(GetUsageInfo()); + return Task.CompletedTask; + } + + var commandType = AbpCliOptions.Commands[commandLineArgs.Target]; + + using (var scope = ServiceScopeFactory.CreateScope()) + { + var command = (IConsoleCommand)scope.ServiceProvider.GetRequiredService(commandType); + Logger.LogInformation(command.GetUsageInfo()); + } + + return Task.CompletedTask; + } + + public string GetUsageInfo() + { + var sb = new StringBuilder(); + + sb.AppendLine(""); + sb.AppendLine("Usage:"); + sb.AppendLine(""); + sb.AppendLine(" labp [options]"); + sb.AppendLine(""); + sb.AppendLine("Command List:"); + sb.AppendLine(""); + + foreach (var command in AbpCliOptions.Commands.ToArray()) + { + string shortDescription; + + using (var scope = ServiceScopeFactory.CreateScope()) + { + shortDescription = ((IConsoleCommand)scope.ServiceProvider + .GetRequiredService(command.Value)).GetShortDescription(); + } + + sb.Append(" > "); + sb.Append(command.Key); + sb.Append(string.IsNullOrWhiteSpace(shortDescription) ? "" : ":"); + sb.Append(" "); + sb.AppendLine(shortDescription); + } + + sb.AppendLine(""); + sb.AppendLine("To get a detailed help for a command:"); + sb.AppendLine(""); + sb.AppendLine(" labp help "); + sb.AppendLine(""); + + return sb.ToString(); + } + + public string GetShortDescription() + { + return "Show command line help. Write ` labp help `"; + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN.Abp.WorkflowCore.Components.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN.Abp.WorkflowCore.Components.csproj new file mode 100644 index 000000000..76233328a --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN.Abp.WorkflowCore.Components.csproj @@ -0,0 +1,20 @@ + + + + + + + netstandard2.0 + + + + + + + + + + + + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/AbpWorkflowCoreComponentsModule.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/AbpWorkflowCoreComponentsModule.cs new file mode 100644 index 000000000..cac71425a --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/AbpWorkflowCoreComponentsModule.cs @@ -0,0 +1,14 @@ +using Volo.Abp.Emailing; +using Volo.Abp.Modularity; +using Volo.Abp.Sms; + +namespace LINGYUN.Abp.WorkflowCore.Components +{ + [DependsOn( + typeof(AbpSmsModule), + typeof(AbpEmailingModule), + typeof(AbpWorkflowCoreModule))] + public class AbpWorkflowCoreComponentsModule : AbpModule + { + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/EmailStepBody.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/EmailStepBody.cs new file mode 100644 index 000000000..1e737fd34 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/EmailStepBody.cs @@ -0,0 +1,60 @@ +using JetBrains.Annotations; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using System; +using System.Globalization; +using System.Threading.Tasks; +using Volo.Abp.Emailing; +using Volo.Abp.Emailing.Templates; +using Volo.Abp.TextTemplating; +using WorkflowCore.Interface; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.Components.Primitives +{ + public class EmailStepBody : StepBodyAsyncBase + { + public ILogger Logger { protected get; set; } + + private readonly IEmailSender _emailSender; + private readonly ITemplateRenderer _templateRenderer; + + public EmailStepBody( + IEmailSender emailSender, + ITemplateRenderer templateRenderer) + { + _emailSender = emailSender; + _templateRenderer = templateRenderer; + + Logger = NullLogger.Instance; + } + + [NotNull] + public string Title { get; set; } + + [NotNull] + public string Receivers { get; set; } + + [CanBeNull] + public object Data { get; set; } + + [CanBeNull] + public string Template { get; set; } + + public override async Task RunAsync(IStepExecutionContext context) + { + Logger.LogInformation("Working on sending email step."); + + var templateContent = await _templateRenderer.RenderAsync( + Template.IsNullOrWhiteSpace() ? StandardEmailTemplates.Message : Template, + Data, + CultureInfo.CurrentCulture.Name); + + await _emailSender.SendAsync(Receivers, Title, templateContent); + + Logger.LogInformation("Email sent, forward to next step."); + + return ExecutionResult.Next(); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/SmsStepBody.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/SmsStepBody.cs new file mode 100644 index 000000000..4c10c3127 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/LINGYUN/Abp/WorkflowCore/Components/Primitives/SmsStepBody.cs @@ -0,0 +1,51 @@ +using JetBrains.Annotations; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using System; +using System.Threading.Tasks; +using Volo.Abp.Sms; +using WorkflowCore.Interface; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.Components.Primitives +{ + public class SmsStepBody : StepBodyAsyncBase + { + public ILogger Logger { protected get; set; } + + + private readonly ISmsSender _smsSender; + + public SmsStepBody(ISmsSender smsSender) + { + _smsSender = smsSender; + + Logger = NullLogger.Instance; + } + + [NotNull] + public string Message { get; set; } + + [NotNull] + public string PhoneNumber { get; set; } + + [CanBeNull] + public string Template { get; set; } + + public override async Task RunAsync(IStepExecutionContext context) + { + Logger.LogInformation("Working on sending sms message step."); + + var smsMessage = new SmsMessage(PhoneNumber, Message); + if (!Template.IsNullOrWhiteSpace()) + { + smsMessage.Properties.Add("TemplateCode", Template); + } + await _smsSender.SendAsync(smsMessage); + + Logger.LogInformation("Sms message sent, forward to next step."); + + return ExecutionResult.Next(); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/README.md b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/README.md new file mode 100644 index 000000000..8a8953148 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Components/README.md @@ -0,0 +1,3 @@ +# LINGYUN.Abp.WorkflowCore.Components + +预设的工作流组件 diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN.Abp.WorkflowCore.DistributedLock.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN.Abp.WorkflowCore.DistributedLock.csproj new file mode 100644 index 000000000..4d1174192 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN.Abp.WorkflowCore.DistributedLock.csproj @@ -0,0 +1,20 @@ + + + + + + + netstandard2.0 + + + + + + + + + + + + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpDistributedLockProvider.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpDistributedLockProvider.cs new file mode 100644 index 000000000..8bd57b471 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpDistributedLockProvider.cs @@ -0,0 +1,73 @@ +using Microsoft.Extensions.Caching.Memory; +using System; +using System.Threading; +using System.Threading.Tasks; +using Volo.Abp.DistributedLocking; +using WorkflowCore.Interface; + +namespace LINGYUN.Abp.WorkflowCore.DistributedLock +{ + public class AbpDistributedLockProvider : IDistributedLockProvider + { + private readonly IMemoryCache _lockCache; + private readonly IAbpDistributedLock _distributedLock; + + private readonly TimeSpan _lockTimeout = TimeSpan.FromMinutes(1); + + public AbpDistributedLockProvider( + IMemoryCache memoryCache, + IAbpDistributedLock abpDistributedLock) + { + _lockCache = memoryCache; + _distributedLock = abpDistributedLock; + } + + public virtual async Task AcquireLock(string Id, CancellationToken cancellationToken) + { + var handle = await _distributedLock.TryAcquireAsync(Id, _lockTimeout, cancellationToken); + if (handle == null) + { + return false; + } + + var cacheItem = new LockCacheItem(Id, handle); + // 预留一点时间 + _lockCache.Set(Id, cacheItem, TimeSpan.FromMinutes(1.5d)); + + return true; + } + + public virtual async Task ReleaseLock(string Id) + { + var cacheItem = _lockCache.Get(Id); + if (cacheItem == null) + { + await cacheItem.Handle.DisposeAsync(); + } + } + + public Task Start() + { + return Task.CompletedTask; + } + + public Task Stop() + { + return Task.CompletedTask; + } + + private class LockCacheItem + { + public string Id { get; set; } + public IAbpDistributedLockHandle Handle { get; set; } + public LockCacheItem() { } + public LockCacheItem( + string id, + IAbpDistributedLockHandle handle) + { + Id = id; + Handle = handle; + } + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpWorkflowCoreDistributedLockModule.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpWorkflowCoreDistributedLockModule.cs new file mode 100644 index 000000000..908258912 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.DistributedLock/LINGYUN/Abp/WorkflowCore/DistributedLock/AbpWorkflowCoreDistributedLockModule.cs @@ -0,0 +1,24 @@ +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.DistributedLocking; +using Volo.Abp.Modularity; +using WorkflowCore.Interface; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.DistributedLock +{ + [DependsOn(typeof(AbpWorkflowCoreModule))] + [DependsOn(typeof(AbpDistributedLockingModule))] + public class AbpWorkflowCoreDistributedLockModule : AbpModule + { + public override void PreConfigureServices(ServiceConfigurationContext context) + { + context.Services.AddSingleton(); + context.Services.AddSingleton(); + + PreConfigure(options => + { + options.UseDistributedLockManager(provider => provider.GetRequiredService()); + }); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN.Abp.WorkflowCore.Elasticsearch.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN.Abp.WorkflowCore.Elasticsearch.csproj index 21aa9a59f..9c65a909f 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN.Abp.WorkflowCore.Elasticsearch.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN.Abp.WorkflowCore.Elasticsearch.csproj @@ -1,5 +1,8 @@ + + + netstandard2.0 diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN/Abp/WorkflowCore/Elasticsearch/AbpWorkflowCoreElasticsearchOptions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN/Abp/WorkflowCore/Elasticsearch/AbpWorkflowCoreElasticsearchOptions.cs index 414be43b8..4873ae440 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN/Abp/WorkflowCore/Elasticsearch/AbpWorkflowCoreElasticsearchOptions.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Elasticsearch/LINGYUN/Abp/WorkflowCore/Elasticsearch/AbpWorkflowCoreElasticsearchOptions.cs @@ -3,12 +3,12 @@ public class AbpWorkflowCoreElasticsearchOptions { /// - /// Default value: "workflows". + /// Default value: "abp.workflows". /// public string IndexFormat { get; set; } public AbpWorkflowCoreElasticsearchOptions() { - IndexFormat = "workflows"; + IndexFormat = "abp.workflows"; } } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/Class1.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/Class1.cs new file mode 100644 index 000000000..a2ee1b84c --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/Class1.cs @@ -0,0 +1,9 @@ +using System; + +namespace LINGYUN.Abp.WorkflowCore.Emailing +{ + public class Class1 + { + + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/LINGYUN.Abp.WorkflowCore.Emailing.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/LINGYUN.Abp.WorkflowCore.Emailing.csproj new file mode 100644 index 000000000..e2c3cec75 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Emailing/LINGYUN.Abp.WorkflowCore.Emailing.csproj @@ -0,0 +1,15 @@ + + + + + + + netstandard2.0 + + + + + + + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN.Abp.WorkflowCore.LifeCycleEvent.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN.Abp.WorkflowCore.LifeCycleEvent.csproj index 0131c6f7e..4fe54a8a7 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN.Abp.WorkflowCore.LifeCycleEvent.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN.Abp.WorkflowCore.LifeCycleEvent.csproj @@ -1,12 +1,15 @@ + + + netstandard2.0 - + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/AbpEventBusProvider.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/AbpEventBusProvider.cs index 0729a3f10..b2acae32e 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/AbpEventBusProvider.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/AbpEventBusProvider.cs @@ -1,10 +1,8 @@ -using Microsoft.Extensions.Logging; -using Newtonsoft.Json; +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.EventBus.Distributed; -using Volo.Abp.Json; using WorkflowCore.Interface; using EventData = WorkflowCore.Models.LifeCycleEvents.LifeCycleEvent; @@ -16,25 +14,21 @@ namespace LINGYUN.Abp.WorkflowCore.LifeCycleEvent private Queue> _deferredSubscribers = new Queue>(); private readonly IDistributedEventBus _eventBus; - private readonly ILoggerFactory _loggerFactory; - private readonly JsonSerializerSettings _serializerSettings = new JsonSerializerSettings - { - TypeNameHandling = TypeNameHandling.All, - ReferenceLoopHandling = ReferenceLoopHandling.Error, + private readonly JsonSerializerSettings _serializerSettings = new JsonSerializerSettings + { + TypeNameHandling = TypeNameHandling.All }; public AbpEventBusProvider( - ILoggerFactory loggerFactory, IDistributedEventBus distributedEventBus) { - _loggerFactory = loggerFactory; _eventBus = distributedEventBus; } public async Task PublishNotification(EventData evt) { - var data = evt.SerializeObject(serializerSettings: _serializerSettings); + var data = JsonConvert.SerializeObject(evt, _serializerSettings); var wrapEvent = new LifeCycleEventWrap(data); await _eventBus.PublishAsync(wrapEvent); } @@ -47,7 +41,7 @@ namespace LINGYUN.Abp.WorkflowCore.LifeCycleEvent var action = _deferredSubscribers.Dequeue(); _eventBus.Subscribe((data) => { - var unWrapData = data.Data.DeserializeObject(_serializerSettings); + var unWrapData = JsonConvert.DeserializeObject(data.Data, _serializerSettings); action(unWrapData as EventData); return Task.CompletedTask; @@ -71,7 +65,7 @@ namespace LINGYUN.Abp.WorkflowCore.LifeCycleEvent { _eventBus.Subscribe((data) => { - var unWrapData = data.Data.DeserializeObject(_serializerSettings); + var unWrapData = JsonConvert.DeserializeObject(data.Data, _serializerSettings); action(unWrapData as EventData); return Task.CompletedTask; diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/LifeCycleEventWrap.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/LifeCycleEventWrap.cs index cc1cee4dc..6d7cb312d 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/LifeCycleEventWrap.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.LifeCycleEvent/LINGYUN/Abp/WorkflowCore/LifeCycleEvent/LifeCycleEventWrap.cs @@ -1,5 +1,8 @@ -namespace LINGYUN.Abp.WorkflowCore.LifeCycleEvent +using Volo.Abp.EventBus; + +namespace LINGYUN.Abp.WorkflowCore.LifeCycleEvent { + [EventName("abp.workflowcore.life_cycle_event")] public class LifeCycleEventWrap { public string Data { get; set; } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore.csproj index d6bccfbda..f600d0ffb 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore.csproj @@ -1,16 +1,19 @@ - - netstandard2.1 - - + + + + + net6.0 + + - + - - - + + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/AbpWorkflowCorePersistenceEntityFrameworkCoreModule.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/AbpWorkflowCorePersistenceEntityFrameworkCoreModule.cs index 73a2adb87..491851db2 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/AbpWorkflowCorePersistenceEntityFrameworkCoreModule.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/AbpWorkflowCorePersistenceEntityFrameworkCoreModule.cs @@ -12,11 +12,11 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore { context.Services.AddAbpDbContext(options => { - options.AddRepository(); - options.AddRepository(); - options.AddRepository(); - options.AddRepository(); - options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); }); } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventRepository.cs index 48a8035d5..340d12698 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventRepository.cs @@ -4,7 +4,7 @@ using Volo.Abp.EntityFrameworkCore; namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore { - public class EfCoreWorkflowEventRepository : EfCoreRepository, IWorkflowEventRepository + public class EfCoreWorkflowEventRepository : EfCoreRepository, IWorkflowEventRepository { public EfCoreWorkflowEventRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventSubscriptionRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventSubscriptionRepository.cs index 406a6f258..61976f860 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventSubscriptionRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowEventSubscriptionRepository.cs @@ -5,7 +5,7 @@ using Volo.Abp.EntityFrameworkCore; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class EfCoreWorkflowEventSubscriptionRepository : EfCoreRepository, IWorkflowEventSubscriptionRepository + public class EfCoreWorkflowEventSubscriptionRepository : EfCoreRepository, IWorkflowEventSubscriptionRepository { public EfCoreWorkflowEventSubscriptionRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowExecutionErrorRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowExecutionErrorRepository.cs index 84787e017..5bd71cbb6 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowExecutionErrorRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowExecutionErrorRepository.cs @@ -4,7 +4,7 @@ using Volo.Abp.EntityFrameworkCore; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class EfCoreWorkflowExecutionErrorRepository : EfCoreRepository, IWorkflowExecutionErrorRepository + public class EfCoreWorkflowExecutionErrorRepository : EfCoreRepository, IWorkflowExecutionErrorRepository { public EfCoreWorkflowExecutionErrorRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowRepository.cs index 9085f8189..8885f1375 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowRepository.cs @@ -11,14 +11,14 @@ using WorkflowCore.Models; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class EfCoreWorkflowRepository : EfCoreRepository, IWorkflowRepository + public class EfCoreWorkflowRepository : EfCoreRepository, IWorkflowRepository { public EfCoreWorkflowRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) { } - public virtual async Task> GetListAsync( + public virtual async Task> GetListAsync( WorkflowStatus? status, string type, DateTime? createdFrom, @@ -37,7 +37,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence .ToListAsync(); } - public override async Task> WithDetailsAsync() + public override async Task> WithDetailsAsync() { var quertable = await base.WithDetailsAsync(); return quertable diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowScheduledCommandRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowScheduledCommandRepository.cs index e6f7cb8e7..030a3ac0e 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowScheduledCommandRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/EfCoreWorkflowScheduledCommandRepository.cs @@ -1,14 +1,27 @@ using LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System.Threading; +using System.Threading.Tasks; using Volo.Abp.Domain.Repositories.EntityFrameworkCore; using Volo.Abp.EntityFrameworkCore; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class EfCoreWorkflowScheduledCommandRepository : EfCoreRepository, IWorkflowScheduledCommandRepository + public class EfCoreWorkflowScheduledCommandRepository : EfCoreRepository, IWorkflowScheduledCommandRepository { public EfCoreWorkflowScheduledCommandRepository(IDbContextProvider dbContextProvider) : base(dbContextProvider) { } + + public virtual async Task CheckExistsAsync( + string name, + string data, + CancellationToken cancellationToken = default) + { + return await (await GetDbSetAsync()) + .AnyAsync(x => x.CommandName.Equals(name) && x.Data.Equals(data), + GetCancellationToken(cancellationToken)); + } } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/IWorkflowDbContext.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/IWorkflowDbContext.cs index 19257a4a8..a877a5b3a 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/IWorkflowDbContext.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/IWorkflowDbContext.cs @@ -7,12 +7,12 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore [ConnectionStringName(WorkflowDbProperties.ConnectionStringName)] public interface IWorkflowDbContext : IEfCoreDbContext { - DbSet Workflows { get; set; } - DbSet WorkflowEvents { get; set; } - DbSet WorkflowEventSubscriptions { get; set; } - DbSet WorkflowExecutionErrors { get; set; } - DbSet WorkflowExecutionPointers { get; set; } - DbSet WorkflowExtensionAttributes { get; set; } - DbSet WorkflowScheduledCommands { get; set; } + DbSet Workflows { get; set; } + DbSet WorkflowEvents { get; set; } + DbSet WorkflowEventSubscriptions { get; set; } + DbSet WorkflowExecutionErrors { get; set; } + DbSet WorkflowExecutionPointers { get; set; } + DbSet WorkflowExtensionAttributes { get; set; } + DbSet WorkflowScheduledCommands { get; set; } } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContext.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContext.cs index cc883bed4..dbbb05b51 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContext.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContext.cs @@ -7,13 +7,13 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore [ConnectionStringName(WorkflowDbProperties.ConnectionStringName)] public class WorkflowDbContext : AbpDbContext, IWorkflowDbContext { - public virtual DbSet Workflows { get; set; } - public virtual DbSet WorkflowEvents { get; set; } - public virtual DbSet WorkflowEventSubscriptions { get; set; } - public virtual DbSet WorkflowExecutionErrors { get; set; } - public virtual DbSet WorkflowExecutionPointers { get; set; } - public virtual DbSet WorkflowExtensionAttributes { get; set; } - public virtual DbSet WorkflowScheduledCommands { get; set; } + public virtual DbSet Workflows { get; set; } + public virtual DbSet WorkflowEvents { get; set; } + public virtual DbSet WorkflowEventSubscriptions { get; set; } + public virtual DbSet WorkflowExecutionErrors { get; set; } + public virtual DbSet WorkflowExecutionPointers { get; set; } + public virtual DbSet WorkflowExtensionAttributes { get; set; } + public virtual DbSet WorkflowScheduledCommands { get; set; } public WorkflowDbContext(DbContextOptions options) : base(options) { diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContextModelBuilderExtensions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContextModelBuilderExtensions.cs index fb6a2bb94..2bf7e3f1e 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContextModelBuilderExtensions.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore/LINGYUN/Abp/WorkflowCore/Persistence/EntityFrameworkCore/WorkflowDbContextModelBuilderExtensions.cs @@ -11,7 +11,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore { Check.NotNull(builder, nameof(builder)); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "Workflow"); @@ -24,7 +24,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.HasIndex(p => p.NextExecution); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "ExecutionPointer"); @@ -37,7 +37,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.ConfigureByConvention(); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "ExtensionAttribute"); @@ -47,7 +47,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.ConfigureByConvention(); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "Event"); @@ -61,7 +61,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.HasIndex(x => x.IsProcessed); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "Subscription"); @@ -77,7 +77,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.HasIndex(x => x.EventKey); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "ExecutionError"); @@ -86,7 +86,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence.EntityFrameworkCore b.ConfigureByConvention(); }); - builder.Entity(b => + builder.Entity(b => { b.ToTable(WorkflowDbProperties.TablePrefix + "ScheduledCommand"); diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN.Abp.WorkflowCore.Persistence.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN.Abp.WorkflowCore.Persistence.csproj index a48c88143..6fee3e512 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN.Abp.WorkflowCore.Persistence.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN.Abp.WorkflowCore.Persistence.csproj @@ -1,16 +1,19 @@  - - netstandard2.0 - - + + + + + netstandard2.0 + + - + - - - + + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/AbpWorkflowPersistenceProvider.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/AbpWorkflowPersistenceProvider.cs index 51fdfd226..7de63fb84 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/AbpWorkflowPersistenceProvider.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/AbpWorkflowPersistenceProvider.cs @@ -1,4 +1,6 @@ -using System; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using System; using System.Collections.Generic; using System.Linq; using System.Threading; @@ -15,6 +17,8 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence { public class AbpWorkflowPersistenceProvider : IPersistenceProvider, IUnitOfWorkEnabled, ITransientDependency { + public ILogger Logger { protected get; set; } + private readonly ICurrentTenant _currentTenant; private readonly IGuidGenerator _guidGenerator; private readonly IWorkflowRepository _workflowRepository; @@ -46,6 +50,8 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence _executionErrorRepository = executionErrorRepository; _subscriptionRepository = subscriptionRepository; _scheduledCommandRepository = scheduledCommandRepository; + + Logger = NullLogger.Instance; } public virtual async Task ClearSubscriptionToken( @@ -68,7 +74,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence Event newEvent, CancellationToken cancellationToken = default) { - var we = newEvent.ToWorkflowEvent(_guidGenerator, _currentTenant); + var we = newEvent.ToPersistable(_guidGenerator, _currentTenant); await _workflowEventRepository.InsertAsync(we, cancellationToken: cancellationToken); @@ -81,7 +87,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence EventSubscription subscription, CancellationToken cancellationToken = default) { - var wes = subscription.ToWorkflowEventSubscription(_guidGenerator, _currentTenant); + var wes = subscription.ToPersistable(_guidGenerator, _currentTenant); await _subscriptionRepository.InsertAsync(wes, cancellationToken: cancellationToken); @@ -94,7 +100,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence WorkflowInstance workflow, CancellationToken cancellationToken = default) { - var wf = workflow.ToWorkflow(_guidGenerator, _currentTenant); + var wf = workflow.ToPersistable(_guidGenerator, _currentTenant); await _workflowRepository.InsertAsync(wf, cancellationToken: cancellationToken); @@ -269,7 +275,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence { if (errors.Any()) { - var workflowExecutionErrors = errors.Select(x => x.ToWorkflowExecutionError(_currentTenant)); + var workflowExecutionErrors = errors.Select(x => x.ToPersistable(_currentTenant)); await _executionErrorRepository.InsertManyAsync(workflowExecutionErrors, cancellationToken: cancellationToken); } @@ -285,13 +291,13 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence var wf = await _workflowRepository.FindAsync(workflowId, includeDetails: true, cancellationToken: cancellationToken); if (wf == null) { - wf = workflow.ToWorkflow(_guidGenerator, _currentTenant); + wf = workflow.ToPersistable(_guidGenerator, _currentTenant); await _workflowRepository.InsertAsync(wf, cancellationToken: cancellationToken); } else { - wf.Update(workflow, _guidGenerator, _currentTenant); + wf = workflow.ToPersistable(_guidGenerator, _currentTenant, wf); await _workflowRepository.UpdateAsync(wf, cancellationToken: cancellationToken); } @@ -302,24 +308,35 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence Func action, CancellationToken cancellationToken = default) { - var quertable = await _scheduledCommandRepository.GetQueryableAsync(); - var commands = await _asyncQueryableExecuter.ToListAsync( - quertable.Where(x => x.ExecuteTime < asOf.UtcDateTime.Ticks), - cancellationToken); + try + { + var quertable = await _scheduledCommandRepository.GetQueryableAsync(); + var commands = await _asyncQueryableExecuter.ToListAsync( + quertable.Where(x => x.ExecuteTime < asOf.UtcDateTime.Ticks), + cancellationToken); + + foreach (var command in commands) + { + await action(command.ToScheduledCommand()); + } - foreach (var command in commands) + await _scheduledCommandRepository.DeleteManyAsync(commands, cancellationToken: cancellationToken); + } + catch(Exception ex) { - await action(command.ToScheduledCommand()); + // TODO + Logger.LogWarning("Process Commands Error: {0}", ex.Message); } - - await _scheduledCommandRepository.DeleteManyAsync(commands, cancellationToken: cancellationToken); } public virtual async Task ScheduleCommand(ScheduledCommand command) { - var workflowCommand = command.ToWorkflowScheduledCommand(_currentTenant); + if (!await _scheduledCommandRepository.CheckExistsAsync(command.CommandName, command.Data)) + { + var workflowCommand = command.ToPersistable(_currentTenant); - await _scheduledCommandRepository.InsertAsync(workflowCommand); + await _scheduledCommandRepository.InsertAsync(workflowCommand); + } } public virtual async Task SetSubscriptionToken( diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/ExtensionMethods.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/ExtensionMethods.cs new file mode 100644 index 000000000..ccc2450a7 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/ExtensionMethods.cs @@ -0,0 +1,292 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using Volo.Abp.Guids; +using Volo.Abp.MultiTenancy; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.Persistence +{ + internal static class ExtensionMethods + { + private static JsonSerializerSettings SerializerSettings = new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.All }; + + internal static PersistedWorkflow ToPersistable( + this WorkflowInstance instance, + IGuidGenerator generator, + ICurrentTenant currentTenant, + PersistedWorkflow persistable = null) + { + if (persistable == null) + { + persistable = new PersistedWorkflow( + generator.Create(), + instance.CreateTime, + instance.WorkflowDefinitionId, + JsonConvert.SerializeObject(instance.Data, SerializerSettings), + instance.Version, + instance.Description, + instance.Reference, + instance.Status, + instance.NextExecution, + instance.CompleteTime, + currentTenant.Id); + } + else + { + persistable.Data = JsonConvert.SerializeObject(instance.Data, SerializerSettings); + persistable.Description = instance.Description; + persistable.Reference = instance.Reference; + persistable.NextExecution = instance.NextExecution; + persistable.Version = instance.Version; + persistable.WorkflowDefinitionId = instance.WorkflowDefinitionId; + persistable.Status = instance.Status; + persistable.CreationTime = instance.CreateTime; + persistable.CompleteTime = instance.CompleteTime; + } + + foreach (var ep in instance.ExecutionPointers) + { + var epId = ep.Id.IsNullOrWhiteSpace() ? Guid.Empty : Guid.Parse(ep.Id); + var persistedEP = persistable.FindPointer(epId); + + if (persistedEP == null) + { + persistedEP = new PersistedExecutionPointer( + generator.Create(), + persistable.Id, + ep.StepId, + ep.StepName, + ep.Active, + JsonConvert.SerializeObject(ep.PersistenceData, SerializerSettings), + ep.EventName, + ep.EventKey, + ep.EventPublished, + JsonConvert.SerializeObject(ep.EventData, SerializerSettings), + ep.RetryCount, + ep.Children.JoinAsString(";"), + JsonConvert.SerializeObject(ep.ContextItem, SerializerSettings), + ep.PredecessorId, + JsonConvert.SerializeObject(ep.Outcome, SerializerSettings), + ep.Scope.JoinAsString(";"), + ep.Status, + ep.SleepUntil, + ep.StartTime, + ep.EndTime, + currentTenant.Id); + + persistable.AddPointer(persistedEP); + } + else + { + persistedEP.StepId = ep.StepId; + persistedEP.Active = ep.Active; + persistedEP.SleepUntil = ep.SleepUntil; + persistedEP.PersistenceData = JsonConvert.SerializeObject(ep.PersistenceData, SerializerSettings); + persistedEP.StartTime = ep.StartTime; + persistedEP.EndTime = ep.EndTime; + persistedEP.StepName = ep.StepName; + persistedEP.RetryCount = ep.RetryCount; + persistedEP.PredecessorId = ep.PredecessorId; + persistedEP.ContextItem = JsonConvert.SerializeObject(ep.ContextItem, SerializerSettings); + persistedEP.Children = ep.Children.JoinAsString(";"); + persistedEP.EventName = ep.EventName; + persistedEP.EventKey = ep.EventKey; + persistedEP.EventPublished = ep.EventPublished; + persistedEP.EventData = JsonConvert.SerializeObject(ep.EventData, SerializerSettings); + persistedEP.Outcome = JsonConvert.SerializeObject(ep.Outcome, SerializerSettings); + persistedEP.Status = ep.Status; + persistedEP.Scope = ep.Scope.JoinAsString(";"); + } + + foreach (var attr in ep.ExtensionAttributes) + { + var persistedAttr = persistedEP.FindAttribute(attr.Key); + if (persistedAttr == null) + { + persistedEP.AddAttribute(attr.Key, JsonConvert.SerializeObject(attr.Value, SerializerSettings)); + } + else + { + persistedAttr.Key = attr.Key; + persistedAttr.Value = JsonConvert.SerializeObject(attr.Value, SerializerSettings); + } + } + } + + return persistable; + } + + internal static PersistedExecutionError ToPersistable( + this ExecutionError instance, + ICurrentTenant currentTenant) + { + var result = new PersistedExecutionError( + Guid.Parse(instance.WorkflowId), + Guid.Parse(instance.ExecutionPointerId), + instance.ErrorTime, + instance.Message, + currentTenant.Id); + + return result; + } + + internal static PersistedSubscription ToPersistable( + this EventSubscription instance, + IGuidGenerator generator, + ICurrentTenant currentTenant) + { + PersistedSubscription result = new PersistedSubscription( + generator.Create(), + Guid.Parse(instance.WorkflowId), + instance.StepId, + Guid.Parse(instance.ExecutionPointerId), + instance.EventName, + instance.EventKey, + DateTime.SpecifyKind(instance.SubscribeAsOf, DateTimeKind.Utc), + JsonConvert.SerializeObject(instance.SubscriptionData, SerializerSettings), + instance.ExternalToken, + instance.ExternalWorkerId, + instance.ExternalTokenExpiry, + currentTenant.Id); + return result; + } + + internal static PersistedEvent ToPersistable( + this Event instance, + IGuidGenerator generator, + ICurrentTenant currentTenant) + { + PersistedEvent result = new PersistedEvent( + generator.Create(), + instance.EventName, + instance.EventKey, + JsonConvert.SerializeObject(instance.EventData, SerializerSettings), + DateTime.SpecifyKind(instance.EventTime, DateTimeKind.Utc), + currentTenant.Id); + + return result; + } + + internal static PersistedScheduledCommand ToPersistable( + this ScheduledCommand instance, + ICurrentTenant currentTenant) + { + var result = new PersistedScheduledCommand( + instance.CommandName, + instance.Data, + instance.ExecuteTime, + currentTenant.Id); + + return result; + } + + internal static WorkflowInstance ToWorkflowInstance(this PersistedWorkflow instance) + { + WorkflowInstance result = new WorkflowInstance(); + result.Data = JsonConvert.DeserializeObject(instance.Data, SerializerSettings); + result.Description = instance.Description; + result.Reference = instance.Reference; + result.Id = instance.Id.ToString(); + result.NextExecution = instance.NextExecution; + result.Version = instance.Version; + result.WorkflowDefinitionId = instance.WorkflowDefinitionId; + result.Status = instance.Status; + result.CreateTime = DateTime.SpecifyKind(instance.CreationTime, DateTimeKind.Utc); + if (instance.CompleteTime.HasValue) + result.CompleteTime = DateTime.SpecifyKind(instance.CompleteTime.Value, DateTimeKind.Utc); + + result.ExecutionPointers = new ExecutionPointerCollection(instance.ExecutionPointers.Count + 8); + + foreach (var ep in instance.ExecutionPointers) + { + var pointer = new ExecutionPointer(); + + pointer.Id = ep.Id.ToString(); + pointer.StepId = ep.StepId; + pointer.Active = ep.Active; + + if (ep.SleepUntil.HasValue) + pointer.SleepUntil = DateTime.SpecifyKind(ep.SleepUntil.Value, DateTimeKind.Utc); + + pointer.PersistenceData = JsonConvert.DeserializeObject(ep.PersistenceData ?? string.Empty, SerializerSettings); + + if (ep.StartTime.HasValue) + pointer.StartTime = DateTime.SpecifyKind(ep.StartTime.Value, DateTimeKind.Utc); + + if (ep.EndTime.HasValue) + pointer.EndTime = DateTime.SpecifyKind(ep.EndTime.Value, DateTimeKind.Utc); + + pointer.StepName = ep.StepName; + + pointer.RetryCount = ep.RetryCount; + pointer.PredecessorId = ep.PredecessorId; + pointer.ContextItem = JsonConvert.DeserializeObject(ep.ContextItem ?? string.Empty, SerializerSettings); + + if (!string.IsNullOrEmpty(ep.Children)) + pointer.Children = ep.Children.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries).ToList(); + + pointer.EventName = ep.EventName; + pointer.EventKey = ep.EventKey; + pointer.EventPublished = ep.EventPublished; + pointer.EventData = JsonConvert.DeserializeObject(ep.EventData ?? string.Empty, SerializerSettings); + pointer.Outcome = JsonConvert.DeserializeObject(ep.Outcome ?? string.Empty, SerializerSettings); + pointer.Status = ep.Status; + + if (!string.IsNullOrEmpty(ep.Scope)) + pointer.Scope = new List(ep.Scope.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries)); + + foreach (var attr in ep.ExtensionAttributes) + { + pointer.ExtensionAttributes[attr.Key] = JsonConvert.DeserializeObject(attr.Value, SerializerSettings); + } + + result.ExecutionPointers.Add(pointer); + } + + return result; + } + + internal static EventSubscription ToEventSubscription(this PersistedSubscription instance) + { + EventSubscription result = new EventSubscription(); + result.Id = instance.Id.ToString(); + result.EventKey = instance.EventKey; + result.EventName = instance.EventName; + result.StepId = instance.StepId; + result.ExecutionPointerId = instance.ExecutionPointerId.ToString(); + result.WorkflowId = instance.WorkflowId.ToString(); + result.SubscribeAsOf = DateTime.SpecifyKind(instance.SubscribeAsOf, DateTimeKind.Utc); + result.SubscriptionData = JsonConvert.DeserializeObject(instance.SubscriptionData, SerializerSettings); + result.ExternalToken = instance.ExternalToken; + result.ExternalTokenExpiry = instance.ExternalTokenExpiry; + result.ExternalWorkerId = instance.ExternalWorkerId; + + return result; + } + + internal static Event ToEvent(this PersistedEvent instance) + { + Event result = new Event(); + result.Id = instance.Id.ToString(); + result.EventKey = instance.EventKey; + result.EventName = instance.EventName; + result.EventTime = DateTime.SpecifyKind(instance.CreationTime, DateTimeKind.Utc); + result.IsProcessed = instance.IsProcessed; + result.EventData = JsonConvert.DeserializeObject(instance.EventData, SerializerSettings); + + return result; + } + + internal static ScheduledCommand ToScheduledCommand(this PersistedScheduledCommand instance) + { + var result = new ScheduledCommand(); + result.CommandName = instance.CommandName; + result.Data = instance.Data; + result.ExecuteTime = instance.ExecuteTime; + + return result; + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventRepository.cs index 1e89d0689..519e53a0c 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventRepository.cs @@ -3,7 +3,7 @@ using Volo.Abp.Domain.Repositories; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public interface IWorkflowEventRepository : IRepository + public interface IWorkflowEventRepository : IRepository { } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventSubscriptionRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventSubscriptionRepository.cs index f363422b8..fee54e61f 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventSubscriptionRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowEventSubscriptionRepository.cs @@ -3,7 +3,7 @@ using Volo.Abp.Domain.Repositories; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public interface IWorkflowEventSubscriptionRepository : IRepository + public interface IWorkflowEventSubscriptionRepository : IRepository { } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowExecutionErrorRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowExecutionErrorRepository.cs index 65da21372..914bcc078 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowExecutionErrorRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowExecutionErrorRepository.cs @@ -2,7 +2,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence { - public interface IWorkflowExecutionErrorRepository : IRepository + public interface IWorkflowExecutionErrorRepository : IRepository { } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowRepository.cs index f3a5acbfa..1025baaba 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowRepository.cs @@ -7,9 +7,9 @@ using WorkflowCore.Models; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public interface IWorkflowRepository : IRepository + public interface IWorkflowRepository : IRepository { - Task> GetListAsync( + Task> GetListAsync( WorkflowStatus? status, string type, DateTime? createdFrom, diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowScheduledCommandRepository.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowScheduledCommandRepository.cs index 411d8d8eb..e63a2746b 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowScheduledCommandRepository.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/IWorkflowScheduledCommandRepository.cs @@ -1,8 +1,14 @@ -using Volo.Abp.Domain.Repositories; +using System.Threading; +using System.Threading.Tasks; +using Volo.Abp.Domain.Repositories; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public interface IWorkflowScheduledCommandRepository : IRepository + public interface IWorkflowScheduledCommandRepository : IRepository { + Task CheckExistsAsync( + string name, + string data, + CancellationToken cancellationToken = default); } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEvent.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedEvent.cs similarity index 86% rename from aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEvent.cs rename to aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedEvent.cs index fc79d69e5..e4060fb96 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEvent.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedEvent.cs @@ -5,7 +5,7 @@ using Volo.Abp.MultiTenancy; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class WorkflowEvent : Entity, IMultiTenant, IHasCreationTime + public class PersistedEvent : Entity, IMultiTenant, IHasCreationTime { public virtual Guid? TenantId { get; protected set; } /// @@ -28,8 +28,8 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence /// 建立时间 /// public virtual DateTime CreationTime { get; protected set; } - protected WorkflowEvent() { } - public WorkflowEvent( + protected PersistedEvent() { } + public PersistedEvent( Guid id, string name, string key, diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionError.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionError.cs similarity index 62% rename from aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionError.cs rename to aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionError.cs index 24a4433e6..3e7001682 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionError.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionError.cs @@ -4,20 +4,20 @@ using Volo.Abp.MultiTenancy; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class WorkflowExecutionError : Entity, IMultiTenant + public class PersistedExecutionError : Entity, IMultiTenant { public virtual Guid? TenantId { get; protected set; } public virtual Guid WorkflowId { get; protected set; } - public virtual Guid ExecutionPointerId { get; set; } + public virtual Guid ExecutionPointerId { get; protected set; } - public virtual DateTime ErrorTime { get; set; } + public virtual DateTime ErrorTime { get; protected set; } - public virtual string Message { get; set; } + public virtual string Message { get; protected set; } - protected WorkflowExecutionError() { } - public WorkflowExecutionError( + protected PersistedExecutionError() { } + public PersistedExecutionError( Guid workflowId, Guid executionPointerId, DateTime errorTime, diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionPointer.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionPointer.cs new file mode 100644 index 000000000..81bb014c5 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExecutionPointer.cs @@ -0,0 +1,123 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using Volo.Abp.Domain.Entities; +using Volo.Abp.MultiTenancy; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.Persistence +{ + public class PersistedExecutionPointer : Entity, IMultiTenant + { + public virtual Guid? TenantId { get; protected set; } + + public virtual Guid WorkflowId { get; protected set; } + + public virtual PersistedWorkflow Workflow { get; protected set; } + + public virtual int StepId { get; set; } + + public virtual bool Active { get; set; } + + public virtual DateTime? SleepUntil { get; set; } + + public virtual string PersistenceData { get; set; } + + public virtual DateTime? StartTime { get; set; } + + public virtual DateTime? EndTime { get; set; } + + public virtual string EventName { get; set; } + + public virtual string EventKey { get; set; } + + public virtual bool EventPublished { get; set; } + + public virtual string EventData { get; set; } + + public virtual string StepName { get; set; } + + public virtual int RetryCount { get; set; } + + public virtual string Children { get; set; } + + public virtual string ContextItem { get; set; } + + public virtual string PredecessorId { get; set; } + + public virtual string Outcome { get; set; } + + public virtual PointerStatus Status { get; set; } + + public virtual string Scope { get; set; } + + public virtual ICollection ExtensionAttributes { get; protected set; } + + protected PersistedExecutionPointer() + { + ExtensionAttributes = new Collection(); + } + + public PersistedExecutionPointer( + Guid id, + Guid workflowId, + int stepId, + string stepName, + bool active, + string persistenceData, + string eventName, + string eventKey, + bool eventPublished, + string eventData, + int retryCount, + string children, + string contextItem, + string predecessorId, + string outcome, + string scope, + PointerStatus status = PointerStatus.Legacy, + DateTime? sleepUntil = null, + DateTime? startTime = null, + DateTime? endTime = null, + Guid? tenantId = null) : base(id) + { + WorkflowId = workflowId; + StepId = stepId; + StepName = stepName; + Active = active; + PersistenceData = persistenceData; + EventName = eventName; + EventKey = eventKey; + EventPublished = eventPublished; + EventData = eventData; + RetryCount = retryCount; + Children = children; + ContextItem = contextItem; + PredecessorId = predecessorId; + Outcome = outcome; + Scope = scope; + Status = status; + SleepUntil = sleepUntil; + StartTime = startTime; + EndTime = endTime; + + TenantId = tenantId; + + ExtensionAttributes = new Collection(); + } + + public PersistedExtensionAttribute AddAttribute(string key, string value) + { + var attr = new PersistedExtensionAttribute(Id, key, value); + ExtensionAttributes.Add(attr); + + return attr; + } + + public PersistedExtensionAttribute FindAttribute(string key) + { + return ExtensionAttributes.FirstOrDefault(x => x.Key.Equals(key)); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensionAttribute.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExtensionAttribute.cs similarity index 58% rename from aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensionAttribute.cs rename to aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExtensionAttribute.cs index f332c675e..d7a6b4b83 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensionAttribute.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedExtensionAttribute.cs @@ -4,21 +4,21 @@ using Volo.Abp.MultiTenancy; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class WorkflowExtensionAttribute : Entity, IMultiTenant + public class PersistedExtensionAttribute : Entity, IMultiTenant { public virtual Guid? TenantId { get; protected set; } - public virtual Guid ExecutionPointerId { get; set; } + public virtual Guid ExecutionPointerId { get; protected set; } - public virtual WorkflowExecutionPointer ExecutionPointer { get; set; } + public virtual PersistedExecutionPointer ExecutionPointer { get; protected set; } public virtual string Key { get; set; } public virtual string Value { get; set; } - protected WorkflowExtensionAttribute() { } + protected PersistedExtensionAttribute() { } - public WorkflowExtensionAttribute( + public PersistedExtensionAttribute( Guid pointerId, string key, string value) diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowScheduledCommand.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedScheduledCommand.cs similarity index 76% rename from aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowScheduledCommand.cs rename to aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedScheduledCommand.cs index 0753b3c7f..0440d4fd5 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowScheduledCommand.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedScheduledCommand.cs @@ -4,7 +4,7 @@ using Volo.Abp.MultiTenancy; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class WorkflowScheduledCommand : Entity, IMultiTenant + public class PersistedScheduledCommand : Entity, IMultiTenant { public virtual Guid? TenantId { get; protected set; } @@ -13,8 +13,8 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence public virtual string Data { get; set; } public virtual long ExecuteTime { get; set; } - protected WorkflowScheduledCommand() { } - public WorkflowScheduledCommand( + protected PersistedScheduledCommand() { } + public PersistedScheduledCommand( string commandName, string data, long executeTime, diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEventSubscription.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedSubscription.cs similarity index 74% rename from aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEventSubscription.cs rename to aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedSubscription.cs index 5d5d050ce..5b7b70119 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowEventSubscription.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedSubscription.cs @@ -4,7 +4,7 @@ using Volo.Abp.MultiTenancy; namespace LINGYUN.Abp.WorkflowCore.Persistence { - public class WorkflowEventSubscription : Entity, IMultiTenant + public class PersistedSubscription : Entity, IMultiTenant { public virtual Guid? TenantId { get; protected set; } @@ -22,17 +22,17 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence public virtual string SubscriptionData { get; protected set; } - public virtual string ExternalToken { get; protected set; } + public virtual string ExternalToken { get; set; } - public virtual string ExternalWorkerId { get; protected set; } + public virtual string ExternalWorkerId { get; set; } - public virtual DateTime? ExternalTokenExpiry { get; protected set; } + public virtual DateTime? ExternalTokenExpiry { get; set; } - protected WorkflowEventSubscription() + protected PersistedSubscription() { } - public WorkflowEventSubscription( + public PersistedSubscription( Guid id, Guid workflowId, int stepId, @@ -60,10 +60,7 @@ namespace LINGYUN.Abp.WorkflowCore.Persistence TenantId = tenantId; } - public void SetSubscriptionToken( - string token, - string workerId, - DateTime? expiry) + public void SetSubscriptionToken(string token, string workerId, DateTime? expiry = null) { ExternalToken = token; ExternalWorkerId = workerId; diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedWorkflow.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedWorkflow.cs new file mode 100644 index 000000000..3c6331f0c --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/PersistedWorkflow.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using Volo.Abp.Domain.Entities.Auditing; +using Volo.Abp.MultiTenancy; +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore.Persistence +{ + public class PersistedWorkflow : AuditedAggregateRoot, IMultiTenant + { + public virtual Guid? TenantId { get; protected set; } + public virtual string WorkflowDefinitionId { get; set; } + public virtual int Version { get; set; } + public virtual string Description { get; set; } + public virtual string Reference { get; set; } + public virtual long? NextExecution { get; set; } + public virtual WorkflowStatus Status { get; set; } + public virtual string Data { get; set; } + public virtual DateTime? CompleteTime { get; set; } + public virtual ICollection ExecutionPointers { get; protected set; } + + protected PersistedWorkflow() + { + ExecutionPointers = new Collection(); + } + + public PersistedWorkflow( + Guid id, + DateTime creationTime, + string defintionId, + string data, + int version, + string description, + string reference, + WorkflowStatus status, + long? nextExecution = null, + DateTime? completeTime = null, + Guid? tenantId = null) : base(id) + { + Data = data; + CreationTime = creationTime; + WorkflowDefinitionId = defintionId; + Version = version; + Description = description; + Reference = reference; + NextExecution = nextExecution; + Status = status; + CompleteTime = completeTime; + TenantId = tenantId; + + ExecutionPointers = new Collection(); + } + + public void AddPointer(PersistedExecutionPointer pointer) + { + ExecutionPointers.Add(pointer); + } + + public PersistedExecutionPointer FindPointer(Guid id) + { + return ExecutionPointers.FirstOrDefault(point => point.Id.Equals(id)); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/Workflow.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/Workflow.cs deleted file mode 100644 index 278d5d738..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/Workflow.cs +++ /dev/null @@ -1,100 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Linq; -using Volo.Abp.Domain.Entities.Auditing; -using Volo.Abp.Guids; -using Volo.Abp.MultiTenancy; -using WorkflowCore.Models; - -namespace LINGYUN.Abp.WorkflowCore.Persistence -{ - public class Workflow : AuditedAggregateRoot, IMultiTenant - { - public virtual Guid? TenantId { get; protected set; } - public virtual string WorkflowDefinitionId { get; protected set; } - public virtual int Version { get; protected set; } - public virtual string Description { get; protected set; } - public virtual string Reference { get; protected set; } - public virtual long? NextExecution { get; protected set; } - public virtual WorkflowStatus Status { get; protected set; } - public virtual string Data { get; protected set; } - public virtual DateTime? CompleteTime { get; protected set; } - public virtual ICollection ExecutionPointers { get; protected set; } - - protected Workflow() - { - ExecutionPointers = new Collection(); - } - - public Workflow( - Guid id, - DateTime creationTime, - string defintionId, - string data, - int version, - string description, - string reference, - WorkflowStatus status, - long? nextExecution = null, - DateTime? completeTime = null, - Guid? tenantId = null) : base(id) - { - Data = data; - CreationTime = creationTime; - WorkflowDefinitionId = defintionId; - Version = version; - Description = description; - Reference = reference; - NextExecution = nextExecution; - Status = status; - CompleteTime = completeTime; - TenantId = tenantId; - - ExecutionPointers = new Collection(); - } - - public void AddPointer(WorkflowExecutionPointer pointer) - { - ExecutionPointers.Add(pointer); - } - - public WorkflowExecutionPointer FindPointer(Guid id) - { - return ExecutionPointers.FirstOrDefault(point => point.Id.Equals(id)); - } - - public void Update( - WorkflowInstance instance, - IGuidGenerator guidGenerator, - ICurrentTenant currentTenant) - { - Data = instance.Data.SerializeObject(); - CreationTime = instance.CreateTime; - WorkflowDefinitionId = instance.WorkflowDefinitionId; - Version = instance.Version; - Description = instance.Description; - Reference = instance.Reference; - NextExecution = instance.NextExecution; - Status = instance.Status; - CompleteTime = instance.CompleteTime; - - foreach (var pointer in instance.ExecutionPointers) - { - if (!Guid.TryParse(pointer.Id, out Guid pointerId)) - { - pointerId = guidGenerator.Create(); - } - - var currentPointer = FindPointer(pointerId); - if (currentPointer != null) - { - currentPointer.Update(pointer); - continue; - } - - AddPointer(pointer.ToWorkflowExecutionPointer(this, guidGenerator, currentTenant)); - } - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionPointer.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionPointer.cs deleted file mode 100644 index 0ed49aba8..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExecutionPointer.cs +++ /dev/null @@ -1,159 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Linq; -using Volo.Abp.Domain.Entities; -using Volo.Abp.MultiTenancy; -using WorkflowCore.Models; - -namespace LINGYUN.Abp.WorkflowCore.Persistence -{ - public class WorkflowExecutionPointer : Entity, IMultiTenant - { - public virtual Guid? TenantId { get; protected set; } - - public virtual Guid WorkflowId { get; protected set; } - - public virtual Workflow Workflow { get; protected set; } - - public virtual int StepId { get; protected set; } - - public virtual bool Active { get; protected set; } - - public virtual DateTime? SleepUntil { get; protected set; } - - public virtual string PersistenceData { get; protected set; } - - public virtual DateTime? StartTime { get; protected set; } - - public virtual DateTime? EndTime { get; protected set; } - - public virtual string EventName { get; protected set; } - - public virtual string EventKey { get; protected set; } - - public virtual bool EventPublished { get; protected set; } - - public virtual string EventData { get; protected set; } - - public virtual string StepName { get; protected set; } - - public virtual int RetryCount { get; protected set; } - - public virtual string Children { get; protected set; } - - public virtual string ContextItem { get; protected set; } - - public virtual string PredecessorId { get; protected set; } - - public virtual string Outcome { get; protected set; } - - public virtual PointerStatus Status { get; protected set; } - - public virtual string Scope { get; protected set; } - - public virtual ICollection ExtensionAttributes { get; protected set; } - - protected WorkflowExecutionPointer() - { - ExtensionAttributes = new Collection(); - } - - public WorkflowExecutionPointer( - Guid id, - Guid workflowId, - int stepId, - string stepName, - bool active, - string persistenceData, - string eventName, - string eventKey, - bool eventPublished, - string eventData, - int retryCount, - string children, - string contextItem, - string predecessorId, - string outcome, - string scope, - PointerStatus status = PointerStatus.Legacy, - DateTime? sleepUntil = null, - DateTime? startTime = null, - DateTime? endTime = null, - Guid? tenantId = null) : base(id) - { - WorkflowId = workflowId; - StepId = stepId; - StepName = stepName; - Active = active; - PersistenceData = persistenceData; - EventName = eventName; - EventKey = eventKey; - EventPublished = eventPublished; - EventData = eventData; - RetryCount = retryCount; - Children = children; - ContextItem = contextItem; - PredecessorId = predecessorId; - Outcome = outcome; - Scope = scope; - Status = status; - SleepUntil = sleepUntil; - StartTime = startTime; - EndTime = endTime; - - TenantId = tenantId; - - ExtensionAttributes = new Collection(); - } - - public void Update(ExecutionPointer pointer) - { - StepId = pointer.StepId; - StepName = pointer.StepName; - Active = pointer.Active; - PersistenceData = pointer.PersistenceData.SerializeObject(); - EventName = pointer.EventName; - EventKey = pointer.EventKey; - EventPublished = pointer.EventPublished; - EventData = pointer.EventData.SerializeObject(); - RetryCount = pointer.RetryCount; - Children = pointer.Children.JoinAsString(";"); - ContextItem = pointer.ContextItem.SerializeObject(); - PredecessorId = pointer.PredecessorId; - Outcome = pointer.Outcome.SerializeObject(); - Scope = pointer.Scope.JoinAsString(";"); - Status = pointer.Status; - SleepUntil = pointer.SleepUntil; - StartTime = pointer.StartTime; - EndTime = pointer.EndTime; - - foreach (var attribute in pointer.ExtensionAttributes) - { - var findAttr = FindAttribute(attribute.Key); - if (findAttr == null) - { - AddAttribute(attribute.Key, attribute.Value.SerializeObject()); - } - else - { - findAttr.Key = attribute.Key; - findAttr.Value = attribute.Value.SerializeObject(); - } - } - } - - public WorkflowExtensionAttribute AddAttribute(string key, string value) - { - var attr = new WorkflowExtensionAttribute(Id, key, value); - ExtensionAttributes.Add(attr); - - return attr; - } - - public WorkflowExtensionAttribute FindAttribute(string key) - { - return ExtensionAttributes.FirstOrDefault(x => x.Key.Equals(key)); - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensions.cs deleted file mode 100644 index 51f9531a1..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/LINGYUN/Abp/WorkflowCore/Persistence/WorkflowExtensions.cs +++ /dev/null @@ -1,113 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using WorkflowCore.Models; - -namespace LINGYUN.Abp.WorkflowCore.Persistence -{ - public static class WorkflowExtensions - { - public static Event ToEvent(this WorkflowEvent workflowEvent) - { - return new Event - { - Id = workflowEvent.Id.ToString(), - EventName = workflowEvent.EventName, - EventKey = workflowEvent.EventKey, - EventTime = workflowEvent.CreationTime.ToUtcDateTime(), - IsProcessed = workflowEvent.IsProcessed, - EventData = workflowEvent.EventData.DeserializeObject() - }; - } - - public static EventSubscription ToEventSubscription(this WorkflowEventSubscription workflowEventSubscription) - { - return new EventSubscription - { - Id = workflowEventSubscription.Id.ToString(), - StepId = workflowEventSubscription.StepId, - SubscribeAsOf = workflowEventSubscription.SubscribeAsOf.ToUtcDateTime(), - SubscriptionData = workflowEventSubscription.SubscriptionData.DeserializeObject(), - EventKey = workflowEventSubscription.EventKey, - EventName = workflowEventSubscription.EventName, - ExecutionPointerId = workflowEventSubscription.ExecutionPointerId.ToString(), - ExternalWorkerId = workflowEventSubscription.ExternalWorkerId, - ExternalToken = workflowEventSubscription.ExternalToken, - ExternalTokenExpiry = workflowEventSubscription.ExternalTokenExpiry.ToNullableUtcDateTime(), - WorkflowId = workflowEventSubscription.WorkflowId.ToString() - }; - } - - public static WorkflowInstance ToWorkflowInstance(this Workflow workflow) - { - return new WorkflowInstance - { - Id = workflow.Id.ToString(), - WorkflowDefinitionId = workflow.WorkflowDefinitionId, - CompleteTime = workflow.CompleteTime.ToNullableUtcDateTime(), - CreateTime = workflow.CreationTime.ToUtcDateTime(), - Data = workflow.Data.DeserializeObject(), - Status = workflow.Status, - Description = workflow.Description, - NextExecution = workflow.NextExecution, - Reference = workflow.Reference, - Version = workflow.Version, - ExecutionPointers = new ExecutionPointerCollection( - workflow.ExecutionPointers - .Select(pointer => pointer.ToExecutionPointer()) - .ToList()) - }; - } - - public static ExecutionPointer ToExecutionPointer(this WorkflowExecutionPointer pointer) - { - return new ExecutionPointer - { - Id = pointer.Id.ToString(), - EventData = pointer.EventData.DeserializeObject(), - EventKey = pointer.StepName, - EventName = pointer.EventName, - EventPublished = pointer.EventPublished, - ExtensionAttributes = pointer.ExtensionAttributes.ToExtensionAttributes(), - Active = pointer.Active, - Children = pointer.Children.Split(';').ToList(), - ContextItem = pointer.ContextItem.DeserializeObject(), - Scope = pointer.Scope.Split(';').ToList(), - Outcome = pointer.Outcome.DeserializeObject(), - PersistenceData = pointer.PersistenceData.DeserializeObject(), - PredecessorId = pointer.PredecessorId, - RetryCount = pointer.RetryCount, - Status = pointer.Status, - StepId = pointer.StepId, - StepName = pointer.StepName, - EndTime = pointer.EndTime.ToNullableUtcDateTime(), - StartTime = pointer.StartTime.ToNullableUtcDateTime(), - SleepUntil = pointer.SleepUntil.ToNullableUtcDateTime(), - }; - } - - public static ScheduledCommand ToScheduledCommand( - this WorkflowScheduledCommand command) - { - return new ScheduledCommand - { - CommandName = command.CommandName, - Data = command.Data, - ExecuteTime = command.ExecuteTime - }; - } - - public static Dictionary ToExtensionAttributes( - this ICollection attributes) - { - var attrDic = new Dictionary(); - - foreach (var attr in attributes) - { - attrDic.Add(attr.Key, attr.Value.DeserializeObject()); - } - - return attrDic; - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/WorkflowCore/Models/WorkflowExtensions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/WorkflowCore/Models/WorkflowExtensions.cs deleted file mode 100644 index bb629884c..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.Persistence/WorkflowCore/Models/WorkflowExtensions.cs +++ /dev/null @@ -1,139 +0,0 @@ -using LINGYUN.Abp.WorkflowCore.Persistence; -using System; -using System.Collections.Generic; -using Volo.Abp.Guids; -using Volo.Abp.MultiTenancy; - -namespace WorkflowCore.Models -{ - public static class WorkflowExtensions - { - public static Workflow ToWorkflow( - this WorkflowInstance instance, - IGuidGenerator generator, - ICurrentTenant currentTenant) - { - var workflow = new Workflow( - generator.Create(), - instance.CreateTime, - instance.WorkflowDefinitionId, - instance.Data.SerializeObject(handlingString: true), - instance.Version, - instance.Description, - instance.Reference, - instance.Status, - instance.NextExecution, - instance.CompleteTime, - currentTenant.Id); - - foreach (var pointer in instance.ExecutionPointers) - { - var toPointer = pointer.ToWorkflowExecutionPointer(workflow, generator, currentTenant); - workflow.AddPointer(toPointer); - } - - return workflow; - } - - public static WorkflowExecutionPointer ToWorkflowExecutionPointer( - this ExecutionPointer executionPointer, - Workflow workflow, - IGuidGenerator generator, - ICurrentTenant currentTenant) - { - var pointer = new WorkflowExecutionPointer( - generator.Create(), - workflow.Id, - executionPointer.StepId, - executionPointer.StepName, - executionPointer.Active, - executionPointer.PersistenceData.SerializeObject(handlingString: true), - executionPointer.EventName, - executionPointer.EventKey, - executionPointer.EventPublished, - executionPointer.EventData.SerializeObject(handlingString: true), - executionPointer.RetryCount, - executionPointer.Children.JoinAsString(";"), - executionPointer.ContextItem.SerializeObject(handlingString: true), - executionPointer.PredecessorId, - executionPointer.Outcome.SerializeObject(handlingString: true), - executionPointer.Scope.JoinAsString(";"), - executionPointer.Status, - executionPointer.SleepUntil, - executionPointer.StartTime, - executionPointer.EndTime, - currentTenant.Id); - - foreach (var attribute in executionPointer.ExtensionAttributes) - { - pointer.AddAttribute(attribute.Key, attribute.Value.SerializeObject(handlingString: true)); - } - - executionPointer.Id = pointer.Id.ToString(); - - return pointer; - } - - public static WorkflowEvent ToWorkflowEvent( - this Event @event, - IGuidGenerator generator, - ICurrentTenant currentTenant) - { - var we = new WorkflowEvent( - generator.Create(), - @event.EventName, - @event.EventKey, - @event.EventData.SerializeObject(handlingString: true), - @event.EventTime, - currentTenant.Id) - { - IsProcessed = @event.IsProcessed - }; - - return we; - } - - public static WorkflowEventSubscription ToWorkflowEventSubscription( - this EventSubscription subscription, - IGuidGenerator generator, - ICurrentTenant currentTenant) - { - return new WorkflowEventSubscription( - generator.Create(), - Guid.Parse(subscription.WorkflowId), - subscription.StepId, - Guid.Parse(subscription.ExecutionPointerId), - subscription.EventName, - subscription.EventKey, - subscription.SubscribeAsOf, - subscription.SubscriptionData.SerializeObject(handlingString: true), - subscription.ExternalToken, - subscription.ExternalWorkerId, - subscription.ExternalTokenExpiry, - currentTenant.Id); - } - - public static WorkflowExecutionError ToWorkflowExecutionError( - this ExecutionError executionError, - ICurrentTenant currentTenant) - { - return new WorkflowExecutionError( - Guid.Parse(executionError.WorkflowId), - Guid.Parse(executionError.ExecutionPointerId), - executionError.ErrorTime, - executionError.Message, - currentTenant.Id); - } - - public static WorkflowScheduledCommand ToWorkflowScheduledCommand( - this ScheduledCommand command, - ICurrentTenant currentTenant) - { - return new WorkflowScheduledCommand( - command.CommandName, - command.Data, - command.ExecuteTime, - currentTenant.Id); - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN.Abp.WorkflowCore.RabbitMQ.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN.Abp.WorkflowCore.RabbitMQ.csproj index a32c88430..a76f0363e 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN.Abp.WorkflowCore.RabbitMQ.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN.Abp.WorkflowCore.RabbitMQ.csproj @@ -1,12 +1,15 @@  + + + netstandard2.0 - + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN/Abp/WorkflowCore/RabbitMQ/WorkflowQueueConfiguration.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN/Abp/WorkflowCore/RabbitMQ/WorkflowQueueConfiguration.cs index 8d5d2590c..ae4aa41df 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN/Abp/WorkflowCore/RabbitMQ/WorkflowQueueConfiguration.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore.RabbitMQ/LINGYUN/Abp/WorkflowCore/RabbitMQ/WorkflowQueueConfiguration.cs @@ -8,9 +8,8 @@ namespace LINGYUN.Abp.WorkflowCore.RabbitMQ string queueName, bool durable = true, bool exclusive = false, - bool autoDelete = false, - string deadLetterQueueName = null) - : base(queueName, durable, exclusive, autoDelete, deadLetterQueueName) + bool autoDelete = false) + : base(queueName, durable, exclusive, autoDelete) { } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xml b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xml new file mode 100644 index 000000000..1715698cc --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xsd b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xsd new file mode 100644 index 000000000..11da52550 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/FodyWeavers.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN.Abp.WorkflowCore.csproj b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN.Abp.WorkflowCore.csproj index 70ea8acbc..c8fb66894 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN.Abp.WorkflowCore.csproj +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN.Abp.WorkflowCore.csproj @@ -1,13 +1,17 @@  - - netstandard2.0 - 8.0 - - + + + + + netstandard2.0 + 9.0 + + - + + diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreConventionalRegistrar.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreConventionalRegistrar.cs index decbbae34..53860dad5 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreConventionalRegistrar.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreConventionalRegistrar.cs @@ -1,11 +1,24 @@ -using System; -using System.Collections.Generic; -using System.Text; +using Microsoft.Extensions.DependencyInjection; +using System; using Volo.Abp.DependencyInjection; namespace LINGYUN.Abp.WorkflowCore { public class AbpWorkflowCoreConventionalRegistrar : DefaultConventionalRegistrar { + protected override bool IsConventionalRegistrationDisabled(Type type) + { + return !IsWorkflowComponent(type) || base.IsConventionalRegistrationDisabled(type); + } + + private static bool IsWorkflowComponent(Type type) + { + return type.IsWorkflow() || type.IsStepBody(); + } + + protected override ServiceLifetime? GetDefaultLifeTimeOrNull(Type type) + { + return ServiceLifetime.Transient; + } } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreModule.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreModule.cs index 918acdf62..842085fb4 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreModule.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreModule.cs @@ -1,19 +1,28 @@ using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Options; using System; using System.Collections.Generic; +using System.Linq; +using System.Reflection; using Volo.Abp; using Volo.Abp.Modularity; +using Volo.Abp.Threading; +using Volo.Abp.Timing; using WorkflowCore.Interface; -using WorkflowCore.Services; namespace LINGYUN.Abp.WorkflowCore { + [DependsOn( + typeof(AbpTimingModule), + typeof(AbpThreadingModule))] public class AbpWorkflowCoreModule : AbpModule { private readonly static IList _definitionWorkflows = new List(); public override void PreConfigureServices(ServiceConfigurationContext context) { + context.Services.AddConventionalRegistrar(new AbpWorkflowCoreConventionalRegistrar()); + AutoAddDefinitionWorkflows(context.Services); } @@ -24,34 +33,42 @@ namespace LINGYUN.Abp.WorkflowCore context.Services.ExecutePreConfiguredActions(options); }); context.Services.AddWorkflowDSL(); - //context.Services.AddHostedService((provider) => provider.GetRequiredService()); } public override void OnApplicationInitialization(ApplicationInitializationContext context) { - var workflowRegistry = context.ServiceProvider.GetRequiredService(); + var workflowCoreOptions = context.ServiceProvider.GetRequiredService>().Value; - foreach (var definitionWorkflow in _definitionWorkflows) + if (workflowCoreOptions.IsEnabled) { - var workflow = context.ServiceProvider.GetRequiredService(definitionWorkflow); - workflowRegistry.RegisterWorkflow(workflow as WorkflowBase); - } + var workflowRegistry = context.ServiceProvider.GetRequiredService(); + + foreach (var definitionWorkflow in _definitionWorkflows) + { + var workflow = context.ServiceProvider.GetRequiredService(definitionWorkflow); + WorkflowRegisterHelper.RegisterWorkflow(workflowRegistry, workflow); + } - var workflowHost = context.ServiceProvider.GetRequiredService(); - workflowHost.Start(); + var workflowHost = context.ServiceProvider.GetRequiredService(); + workflowHost.Start(); + } } public override void OnApplicationShutdown(ApplicationShutdownContext context) { - var workflowHost = context.ServiceProvider.GetRequiredService(); - workflowHost.Stop(); + var workflowCoreOptions = context.ServiceProvider.GetRequiredService>().Value; + if (workflowCoreOptions.IsEnabled) + { + var workflowHost = context.ServiceProvider.GetRequiredService(); + workflowHost.Stop(); + } } private static void AutoAddDefinitionWorkflows(IServiceCollection services) { services.OnRegistred(context => { - if (typeof(WorkflowBase).IsAssignableFrom(context.ImplementationType)) + if (context.ImplementationType.IsWorkflow()) { _definitionWorkflows.Add(context.ImplementationType); } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreOptions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreOptions.cs index eea4fe0cf..ff2e7a6fc 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreOptions.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/AbpWorkflowCoreOptions.cs @@ -1,10 +1,11 @@ -using Volo.Abp.Collections; -using WorkflowCore.Interface; - -namespace LINGYUN.Abp.WorkflowCore +namespace LINGYUN.Abp.WorkflowCore { public class AbpWorkflowCoreOptions { - public ITypeList DefinitionProviders { get; } + public bool IsEnabled { get; set; } + public AbpWorkflowCoreOptions() + { + IsEnabled = true; + } } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/IWorkflowManager.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/IWorkflowManager.cs deleted file mode 100644 index 6f0b5b2ff..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/IWorkflowManager.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace LINGYUN.Abp.WorkflowCore -{ - public interface IWorkflowManager - { - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/NullStepBody.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/NullStepBody.cs deleted file mode 100644 index 6561894df..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/NullStepBody.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Volo.Abp.DependencyInjection; -using WorkflowCore.Interface; -using WorkflowCore.Models; - -namespace LINGYUN.Abp.WorkflowCore -{ - public class NullStepBody : StepBody, ITransientDependency - { - public override ExecutionResult Run(IStepExecutionContext context) - { - return ExecutionResult.Next(); - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyAsyncBase.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyAsyncBase.cs new file mode 100644 index 000000000..be01a966f --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyAsyncBase.cs @@ -0,0 +1,8 @@ +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore +{ + public abstract class StepBodyAsyncBase : StepBodyAsync + { + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyBase.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyBase.cs new file mode 100644 index 000000000..87d9b942d --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/StepBodyBase.cs @@ -0,0 +1,8 @@ +using WorkflowCore.Models; + +namespace LINGYUN.Abp.WorkflowCore +{ + public abstract class StepBodyBase : StepBody + { + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowBase.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowBase.cs index 836245a4e..f8ace0327 100644 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowBase.cs +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowBase.cs @@ -1,9 +1,8 @@ -using Volo.Abp.DependencyInjection; -using WorkflowCore.Interface; +using WorkflowCore.Interface; namespace LINGYUN.Abp.WorkflowCore { - public abstract class WorkflowBase : IWorkflow, ITransientDependency + public abstract class WorkflowBase : IWorkflow { public abstract string Id { get; } @@ -11,4 +10,14 @@ namespace LINGYUN.Abp.WorkflowCore public abstract void Build(IWorkflowBuilder builder); } + + public abstract class WorkflowBase : IWorkflow + where TData: new() + { + public abstract string Id { get; } + + public abstract int Version { get; } + + public abstract void Build(IWorkflowBuilder builder); + } } diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowRegisterHelper.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowRegisterHelper.cs new file mode 100644 index 000000000..8cf7d21b9 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/LINGYUN/Abp/WorkflowCore/WorkflowRegisterHelper.cs @@ -0,0 +1,33 @@ +using JetBrains.Annotations; +using System.Linq; +using System.Reflection; +using Volo.Abp; +using WorkflowCore.Interface; + +namespace LINGYUN.Abp.WorkflowCore +{ + public static class WorkflowRegisterHelper + { + public readonly static MethodInfo RegisterGenericWorkflowMethod = + typeof(IWorkflowRegistry) + .GetMethods(BindingFlags.Public | BindingFlags.Instance) + .First(m => m.Name == nameof(IWorkflowRegistry.RegisterWorkflow) && m.IsGenericMethodDefinition); + + public static void RegisterWorkflow( + [NotNull] IWorkflowRegistry registry, + [NotNull] object workflow) + { + Check.NotNull(registry, nameof(registry)); + Check.NotNull(workflow, nameof(workflow)); + + var workflowDataType = workflow.GetType() + .GetInterfaces() + .First(x => x.IsGenericType) + .GetGenericArguments()[0]; + + RegisterGenericWorkflowMethod + .MakeGenericMethod(workflowDataType) + .Invoke(registry, new object[] { workflow }); + } + } +} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/ObjectSerializerExtensions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/ObjectSerializerExtensions.cs deleted file mode 100644 index ef91e3f51..000000000 --- a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/ObjectSerializerExtensions.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Newtonsoft.Json; - -namespace System -{ - public static class ObjectSerializerExtensions - { - private readonly static JsonSerializerSettings SerializerSettings = new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.All }; - - public static string SerializeObject(this object obj, bool handlingString = false, JsonSerializerSettings serializerSettings = null) - { - if (obj is string objStr && !handlingString) - { - return objStr; - } - return JsonConvert.SerializeObject(obj, serializerSettings ?? SerializerSettings); - } - - public static object DeserializeObject(this string str, JsonSerializerSettings serializerSettings = null) - { - return JsonConvert.DeserializeObject(str ?? string.Empty, serializerSettings ?? SerializerSettings); - } - } -} diff --git a/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/WorkflowTypeExtensions.cs b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/WorkflowTypeExtensions.cs new file mode 100644 index 000000000..ae2e0a512 --- /dev/null +++ b/aspnet-core/modules/workflow/LINGYUN.Abp.WorkflowCore/System/WorkflowTypeExtensions.cs @@ -0,0 +1,18 @@ +using System.Linq; +using WorkflowCore.Interface; + +namespace System +{ + public static class WorkflowTypeExtensions + { + public static bool IsWorkflow(this Type type) + { + return type.GetInterfaces().Any(x => x.IsGenericType && x.GetGenericTypeDefinition() == typeof(IWorkflow<>)); + } + + public static bool IsStepBody(this Type type) + { + return typeof(IStepBody).IsAssignableFrom(type); + } + } +} diff --git a/aspnet-core/tests/LINGYUN.Abp.WorkflowCore.Tests/LINGYUN.Abp.WorkflowCore.Tests.csproj b/aspnet-core/tests/LINGYUN.Abp.WorkflowCore.Tests/LINGYUN.Abp.WorkflowCore.Tests.csproj index 80fbadbe1..248440a29 100644 --- a/aspnet-core/tests/LINGYUN.Abp.WorkflowCore.Tests/LINGYUN.Abp.WorkflowCore.Tests.csproj +++ b/aspnet-core/tests/LINGYUN.Abp.WorkflowCore.Tests/LINGYUN.Abp.WorkflowCore.Tests.csproj @@ -1,7 +1,7 @@  - net5.0 + net6.0 false diff --git a/build/build-aspnetcore-build.ps1 b/build/build-aspnetcore-build.ps1 index 22c750fbc..d155a9485 100644 --- a/build/build-aspnetcore-build.ps1 +++ b/build/build-aspnetcore-build.ps1 @@ -2,19 +2,6 @@ # Build all solutions foreach ($service in $serviceArray) { - $copyFromConfig = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($rootFolder + $service.ConfigPath + $service.ConfigFile) - if (Test-Path $copyFromConfig) - { - $copyToConfig = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($service.Path + $service.ConfigFile) - $configExists = Test-Path $copyToConfig - if ($configExists -eq $false) { - Write-host "" - Write-host "Coping appsettings.Development.json ..." -ForegroundColor red -BackgroundColor yellow - Write-host "" - Copy-Item $copyFromConfig $copyToConfig - } - } - Set-Location $service.Path dotnet build --no-cache } diff --git a/build/build-aspnetcore-common.ps1 b/build/build-aspnetcore-common.ps1 index 9806c260e..492d6cff0 100644 --- a/build/build-aspnetcore-common.ps1 +++ b/build/build-aspnetcore-common.ps1 @@ -5,12 +5,13 @@ $rootFolder = (Get-Item -Path "./" -Verbose).FullName # List of solutions used only in development mode [PsObject[]]$serviceArray = @() -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/account/AuthServer.Host/"; Service = "identityserver"; ConfigPath = "/../aspnet-core/configuration/account/AuthServer.Host/"; ConfigFile = "appsettings.Development.json" } -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/"; Service = "admin"; ConfigPath = "/../aspnet-core/configuration/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/"; ConfigFile = "appsettings.Development.json" } -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/identity-server/LINGYUN.Abp.IdentityServer4.HttpApi.Host/"; Service = "identityserver4-admin"; ConfigPath = "/../aspnet-core/configuration/identity-server/LINGYUN.Abp.IdentityServer4.HttpApi.Host/"; ConfigFile = "appsettings.Development.json" } -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/"; Service = "messages"; ConfigPath = "/../aspnet-core/configuration/messages/LINGYUN.Abp.MessageService.HttpApi.Host/"; ConfigFile = "appsettings.Development.json" } -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/platform/LINGYUN.Platform.HttpApi.Host/"; Service = "platform"; ConfigPath = "/../aspnet-core/configuration/platform/LINGYUN.Platform.HttpApi.Host/"; ConfigFile = "appsettings.Development.json" } -$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/localization/LINGYUN.Abp.LocalizationManagement.HttpApi.Host/"; Service = "localization"; ConfigPath = "/../aspnet-core/configuration/localization/LINGYUN.Abp.LocalizationManagement.HttpApi.Host/"; ConfigFile = "appsettings.Development.json" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.BackendAdmin.HttpApi.Host/"; Service = "backend-admin-api" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.IdentityServer/"; Service = "identity" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/"; Service = "identity-api" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.LocalizationManagement.HttpApi.Host/"; Service = "localization-api" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.PlatformManagement.HttpApi.Host/"; Service = "platform-api" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../aspnet-core/services/LY.MicroService.RealtimeMessage.HttpApi.Host/"; Service = "realtime-message-api" } +$serviceArray += [PsObject]@{ Path = $rootFolder + "/../gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.ApiGateway/"; Service = "internal-apigateway" } Write-host "" Write-host ":::::::::::::: !!! You are in development mode !!! ::::::::::::::" -ForegroundColor red -BackgroundColor yellow diff --git a/build/build-aspnetcore-release.ps1 b/build/build-aspnetcore-release.ps1 index 933039d9f..fa10cdb59 100644 --- a/build/build-aspnetcore-release.ps1 +++ b/build/build-aspnetcore-release.ps1 @@ -3,7 +3,7 @@ # Build all solutions foreach ($service in $serviceArray) { Set-Location $service.Path - $publishPath = $service.Path + "/../../Publish/" + $service.Service + $publishPath = $rootFolder + "/aspnet-core/services/Publish/" + $service.Service dotnet publish -c Release -o $publishPath --no-cache --no-restore Copy-Item (Join-Path $service.Path "Dockerfile") -Destination $publishPath -Recurse } diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 1ada24840..e62240780 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -60,7 +60,7 @@ services: internat-apigateway: build: - context: ./gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.ApiGateway + context: ./aspnet-core/services/Publish/internal-apigateway volumes: - /var/opt/abp/logs/internat-apigateway:/app/Logs - /var/opt/abp/data/internat-apigateway/Modules:/app/Modules diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.deps.json deleted file mode 100644 index 4ab1814af..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.deps.json +++ /dev/null @@ -1,1445 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "LINGYUN.Abp.AspNetCore.HttpOverrides/5.0.0-rc1": { - "dependencies": { - "ConfigureAwait.Fody": "3.3.1", - "Fody": "6.5.3", - "Volo.Abp.AspNetCore": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.AspNetCore.HttpOverrides.dll": {} - } - }, - "ConfigureAwait.Fody/3.3.1": { - "dependencies": { - "Fody": "6.5.3" - }, - "runtime": { - "lib/netstandard2.0/ConfigureAwait.dll": { - "assemblyVersion": "3.3.1.0", - "fileVersion": "3.3.1.0" - } - } - }, - "Fody/6.5.3": {}, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.AspNetCore.Authorization/6.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Metadata": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - } - }, - "Microsoft.AspNetCore.Metadata/6.0.0": {}, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": {}, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "NUglify/1.16.0": { - "runtime": { - "lib/net5.0/NUglify.dll": { - "assemblyVersion": "1.16.0.0", - "fileVersion": "1.16.0.0" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "TimeZoneConverter/3.5.0": { - "runtime": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Volo.Abp.AspNetCore/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing": "5.0.0-rc.1", - "Volo.Abp.Authorization": "5.0.0-rc.1", - "Volo.Abp.ExceptionHandling": "5.0.0-rc.1", - "Volo.Abp.Http": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1", - "Volo.Abp.Validation": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/net6.0/Volo.Abp.AspNetCore.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing.Contracts": "5.0.0-rc.1", - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Threading": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Authorization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Authorization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Authorization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Authorization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Microsoft.AspNetCore.Authorization": "6.0.0", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Volo.Abp.Localization": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Http/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Http.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.Minify": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Http.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Http.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Minify/5.0.0-rc.1": { - "dependencies": { - "NUglify": "1.16.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Minify.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "dependencies": { - "TimeZoneConverter": "3.5.0", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Composite": "6.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - } - } - }, - "libraries": { - "LINGYUN.Abp.AspNetCore.HttpOverrides/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ConfigureAwait.Fody/3.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==", - "path": "configureawait.fody/3.3.1", - "hashPath": "configureawait.fody.3.3.1.nupkg.sha512" - }, - "Fody/6.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sRkrGVPJWG5vVKF/3kExAwZhFMUzK/Zksgcv113ehyuYuTDMuqBC4lr6y0qqZ6ga5nT1uueebDzrsRZsNIrqLg==", - "path": "fody/6.5.3", - "hashPath": "fody.6.5.3.nupkg.sha512" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HPEhmNwINXzGVWirzmvVxx5/GkoaQJC7vKNIbhOUTzgnRHEf2zO6S2s4lMw3TPFWBGcAlfn6Ta0cVB9f15QC8w==", - "path": "microsoft.aspnetcore.authorization/6.0.0", - "hashPath": "microsoft.aspnetcore.authorization.6.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-giBCvjANLIOqC+DJ84zCkCQnE4ebRTrgVyBe5e0gG3/F8GYzdqSSdtMSAvbOkBQsf0F8dySBPSM59vX6ksOeQg==", - "path": "microsoft.aspnetcore.metadata/6.0.0", - "hashPath": "microsoft.aspnetcore.metadata.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==", - "path": "microsoft.extensions.fileproviders.composite/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9uQbDTqX1MidhoZFUSK1JItt74IapEadFDOIWAlBIKxr3O/ZEWLWkLYGlgUeP1Dkyog6/CB7h1EAU3xADYZ/lA==", - "path": "microsoft.extensions.fileproviders.embedded/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.embedded.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "NUglify/1.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MDFoxNq4G4g6ShsP15TV8D6uURYcP2bSL0PdnL0tAWWmrDBvoOxPCp9QYBDIQH9sgutOLuvJAK0CR94ohKm0YA==", - "path": "nuglify/1.16.0", - "hashPath": "nuglify.1.16.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "TimeZoneConverter/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", - "path": "timezoneconverter/3.5.0", - "hashPath": "timezoneconverter.3.5.0.nupkg.sha512" - }, - "Volo.Abp.AspNetCore/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8qLuPYGaf6pVneDGUpr8aditJFLIYyTsxjScTGmr/g7k0CLbZDXv74HKf6pomU5lSb8JkhzY7UAQDtGsLI3AwQ==", - "path": "volo.abp.aspnetcore/5.0.0-rc.1", - "hashPath": "volo.abp.aspnetcore.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3ae97grhTO5dw+S5J3wLkGXv8ZS6qb+XUYX7hJfwJaNQEu/7UprSebD/Nf5SIuzQSCbVe0n16L6MqpCC5AbaZA==", - "path": "volo.abp.auditing/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BwZABnpFls70WjPXwKrOG4wUWxcOxeDlTyg9/dNW7qBQudF/Xm7n9jOaXmjBkD4xfjaSQ3EfCrNEv7t2j94Gnw==", - "path": "volo.abp.auditing.contracts/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.contracts.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Authorization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ihZluDrCAgAlX1ja3Z0ndKbsou/BYlQguyx3/0pebAZFt/Hdke/GrR5Gt4UBg9eNDMClTotc8tMhjNlzSN+5vw==", - "path": "volo.abp.authorization/5.0.0-rc.1", - "hashPath": "volo.abp.authorization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Authorization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-04oIuwsr9jIL5jlI2ElM272h1qsJ4O3Tai37IMdZPiU3qTQB0Y3/ef4UIpQMZkTif26mFiff+Kh1PF/G2rHQLQ==", - "path": "volo.abp.authorization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.authorization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDZO/i/CFr0UMhTGJccxDlO5XzXLRZ4ozqzawfsVr0aVo8E1SE2egT9Y00lbw41Zn0un2UVML+7fV+G6AA98CA==", - "path": "volo.abp.data/5.0.0-rc.1", - "hashPath": "volo.abp.data.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LfA9qfj+oHHu1Cc3yEhVAmc7QFNFcfPkiQ0eJpFMKm64AVDId1DiKsui/fal0uoWagBtwKQAHgffoDXksCR8XQ==", - "path": "volo.abp.eventbus.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.eventbus.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3aN/8zsthQ9T7AEkiBkSFt6qxLbgTksGDDawtX+oBQqan6Ibxg62YvUpp9TL9FrWjPnBsxJ4vpz3nExceMXcxQ==", - "path": "volo.abp.exceptionhandling/5.0.0-rc.1", - "hashPath": "volo.abp.exceptionhandling.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Http/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dmA+nmda9z0LZFz+djxP+wTDin/SDD5ZRqzZHs0kNtournd9xmxNroSQMba+LsDc1iRBNqHNPTbdPn8EPg7B5A==", - "path": "volo.abp.http/5.0.0-rc.1", - "hashPath": "volo.abp.http.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Http.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-El6YA4X/bLRxDdm6vUjEnR9MjSA6vroECKQRxPUOIU1Y7gp9o01djG7jyesTNXdvol0ym8znLKqqUp6EhxZjzQ==", - "path": "volo.abp.http.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.http.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vZF/jXZNTq7ap3gNQmYdZDuGNgEqAhQSH2U7Q34i6TWEHzxv9LQU9yfRLUx/bY+35/c1GB1UbFnuX5P7APVpug==", - "path": "volo.abp.json/5.0.0-rc.1", - "hashPath": "volo.abp.json.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0rMvOEocbT28NdNc3YT3/PfLFkb2PxZZY0zNff+YRsCF5lA5UhyUwocwXtv/rkteGF2dyK5REiZwSjt4Lyemw==", - "path": "volo.abp.localization/5.0.0-rc.1", - "hashPath": "volo.abp.localization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-31kEjzeNPCIwC9klKmLtohpt6PhT63rm+jVJ2BJqyuj/GgpXyGkA4n0WkXGS+6C8gzfkkfnzL2UCxpUC9Z36Cw==", - "path": "volo.abp.localization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.localization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Minify/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0aiBJFPt9HqhswBfJS7QnLNe3SzSfdB7SgflHbsdC1/ZEEpWW0IKJG3P8WRTGm7SAm9mmcJRqD9IEjsZ25P/g==", - "path": "volo.abp.minify/5.0.0-rc.1", - "hashPath": "volo.abp.minify.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrTiVNi8b43GT9nqToAWaBKiXRXuBSVjb+vIiIe9AC4yWTrjiTP8prjz2W/ASzex69N30j3vw2Tl9xESc9e3ww==", - "path": "volo.abp.multitenancy/5.0.0-rc.1", - "hashPath": "volo.abp.multitenancy.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LD/IEsViNO4g11ArmxIF8hssJcHz2Vcev1qCyOwU0wOhsGWUinavQiTZTN4/uhFWrbMQ5N5pCXyfBGyiVwfnVA==", - "path": "volo.abp.objectextending/5.0.0-rc.1", - "hashPath": "volo.abp.objectextending.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6FkTRjRnz5s5rhJjw1wsIR0EsceRelhGZtPpDEssF8eh6ICIFukxaNLeYk6nDOaay5MdDXgY0Dh+J/BBa/F2Q==", - "path": "volo.abp.security/5.0.0-rc.1", - "hashPath": "volo.abp.security.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bEaafwhMyBC7K4K4AnWEVACUtyMnGzBCagFnDpSNtfVXR87u+mx2qE/9ipGp+rBIkBw4E7qLzHzLztzr0+0QWA==", - "path": "volo.abp.settings/5.0.0-rc.1", - "hashPath": "volo.abp.settings.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NuHLda1qJxG8P3Lx23Z9jc5kIKVR699cV5y2F3VQkGhABHMrKFxVLDUXQjvF1T+TnnS2f9WZdatwvSLZ4DEO8g==", - "path": "volo.abp.threading/5.0.0-rc.1", - "hashPath": "volo.abp.threading.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+CdoyzfbnkdoZlbx64GxwuYFaCoLAQxMx9iP5ESPlftH0PyVsYmHnfgMeZeUhBWeM2L/9nbrSteFNx8sYl52A==", - "path": "volo.abp.timing/5.0.0-rc.1", - "hashPath": "volo.abp.timing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JPqwBlJIKBEjGApTU8AM2RvURy7PL8vId+jTTRrGJ/TDuEpE1fKhn/XRk6iBrCzddaUhJK0xg6l4+GVw9AKXSg==", - "path": "volo.abp.uow/5.0.0-rc.1", - "hashPath": "volo.abp.uow.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zx6YTlEPHQ4n5hiLEP31m5heEQaIbSABc+GM+HNKsc8EqkC4jT0Q6dZ24qinwrG+TGXZQ1SzmBniHod8pXYrxg==", - "path": "volo.abp.validation/5.0.0-rc.1", - "hashPath": "volo.abp.validation.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEcj2XMKtOQJeoFLibXCKhPBFgUEgyhBs28+5sP1HH89uVYs0o1zTbowgWculKIk7dYv8rYvPJzwaoikFBdJyg==", - "path": "volo.abp.validation.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.validation.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PE3GfvFpwFbVXWrtrdBgi0XAlDMP/Lk9Vxmbe5jbnj+HtGJibPX38pGQLfZWsZ+bDXqLDt2Di0mdgqZxmo7Mgg==", - "path": "volo.abp.virtualfilesystem/5.0.0-rc.1", - "hashPath": "volo.abp.virtualfilesystem.5.0.0-rc.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.dll deleted file mode 100644 index 320f6cab9..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.AspNetCore.HttpOverrides.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.deps.json deleted file mode 100644 index c92b7f473..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.deps.json +++ /dev/null @@ -1,1417 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "LINGYUN.Abp.Localization.CultureMap/5.0.0-rc1": { - "dependencies": { - "Volo.Abp.AspNetCore": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.Localization.CultureMap.dll": {} - } - }, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.AspNetCore.Authorization/6.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Metadata": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - } - }, - "Microsoft.AspNetCore.Metadata/6.0.0": {}, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": {}, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "NUglify/1.16.0": { - "runtime": { - "lib/net5.0/NUglify.dll": { - "assemblyVersion": "1.16.0.0", - "fileVersion": "1.16.0.0" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "TimeZoneConverter/3.5.0": { - "runtime": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Volo.Abp.AspNetCore/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing": "5.0.0-rc.1", - "Volo.Abp.Authorization": "5.0.0-rc.1", - "Volo.Abp.ExceptionHandling": "5.0.0-rc.1", - "Volo.Abp.Http": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1", - "Volo.Abp.Validation": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/net6.0/Volo.Abp.AspNetCore.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing.Contracts": "5.0.0-rc.1", - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Threading": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Authorization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Authorization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Authorization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Authorization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Microsoft.AspNetCore.Authorization": "6.0.0", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Volo.Abp.Localization": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Http/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Http.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.Minify": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Http.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Http.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Minify/5.0.0-rc.1": { - "dependencies": { - "NUglify": "1.16.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Minify.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "dependencies": { - "TimeZoneConverter": "3.5.0", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Composite": "6.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - } - } - }, - "libraries": { - "LINGYUN.Abp.Localization.CultureMap/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HPEhmNwINXzGVWirzmvVxx5/GkoaQJC7vKNIbhOUTzgnRHEf2zO6S2s4lMw3TPFWBGcAlfn6Ta0cVB9f15QC8w==", - "path": "microsoft.aspnetcore.authorization/6.0.0", - "hashPath": "microsoft.aspnetcore.authorization.6.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-giBCvjANLIOqC+DJ84zCkCQnE4ebRTrgVyBe5e0gG3/F8GYzdqSSdtMSAvbOkBQsf0F8dySBPSM59vX6ksOeQg==", - "path": "microsoft.aspnetcore.metadata/6.0.0", - "hashPath": "microsoft.aspnetcore.metadata.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==", - "path": "microsoft.extensions.fileproviders.composite/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9uQbDTqX1MidhoZFUSK1JItt74IapEadFDOIWAlBIKxr3O/ZEWLWkLYGlgUeP1Dkyog6/CB7h1EAU3xADYZ/lA==", - "path": "microsoft.extensions.fileproviders.embedded/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.embedded.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "NUglify/1.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MDFoxNq4G4g6ShsP15TV8D6uURYcP2bSL0PdnL0tAWWmrDBvoOxPCp9QYBDIQH9sgutOLuvJAK0CR94ohKm0YA==", - "path": "nuglify/1.16.0", - "hashPath": "nuglify.1.16.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "TimeZoneConverter/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", - "path": "timezoneconverter/3.5.0", - "hashPath": "timezoneconverter.3.5.0.nupkg.sha512" - }, - "Volo.Abp.AspNetCore/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8qLuPYGaf6pVneDGUpr8aditJFLIYyTsxjScTGmr/g7k0CLbZDXv74HKf6pomU5lSb8JkhzY7UAQDtGsLI3AwQ==", - "path": "volo.abp.aspnetcore/5.0.0-rc.1", - "hashPath": "volo.abp.aspnetcore.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3ae97grhTO5dw+S5J3wLkGXv8ZS6qb+XUYX7hJfwJaNQEu/7UprSebD/Nf5SIuzQSCbVe0n16L6MqpCC5AbaZA==", - "path": "volo.abp.auditing/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BwZABnpFls70WjPXwKrOG4wUWxcOxeDlTyg9/dNW7qBQudF/Xm7n9jOaXmjBkD4xfjaSQ3EfCrNEv7t2j94Gnw==", - "path": "volo.abp.auditing.contracts/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.contracts.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Authorization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ihZluDrCAgAlX1ja3Z0ndKbsou/BYlQguyx3/0pebAZFt/Hdke/GrR5Gt4UBg9eNDMClTotc8tMhjNlzSN+5vw==", - "path": "volo.abp.authorization/5.0.0-rc.1", - "hashPath": "volo.abp.authorization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Authorization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-04oIuwsr9jIL5jlI2ElM272h1qsJ4O3Tai37IMdZPiU3qTQB0Y3/ef4UIpQMZkTif26mFiff+Kh1PF/G2rHQLQ==", - "path": "volo.abp.authorization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.authorization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDZO/i/CFr0UMhTGJccxDlO5XzXLRZ4ozqzawfsVr0aVo8E1SE2egT9Y00lbw41Zn0un2UVML+7fV+G6AA98CA==", - "path": "volo.abp.data/5.0.0-rc.1", - "hashPath": "volo.abp.data.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LfA9qfj+oHHu1Cc3yEhVAmc7QFNFcfPkiQ0eJpFMKm64AVDId1DiKsui/fal0uoWagBtwKQAHgffoDXksCR8XQ==", - "path": "volo.abp.eventbus.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.eventbus.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3aN/8zsthQ9T7AEkiBkSFt6qxLbgTksGDDawtX+oBQqan6Ibxg62YvUpp9TL9FrWjPnBsxJ4vpz3nExceMXcxQ==", - "path": "volo.abp.exceptionhandling/5.0.0-rc.1", - "hashPath": "volo.abp.exceptionhandling.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Http/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dmA+nmda9z0LZFz+djxP+wTDin/SDD5ZRqzZHs0kNtournd9xmxNroSQMba+LsDc1iRBNqHNPTbdPn8EPg7B5A==", - "path": "volo.abp.http/5.0.0-rc.1", - "hashPath": "volo.abp.http.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Http.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-El6YA4X/bLRxDdm6vUjEnR9MjSA6vroECKQRxPUOIU1Y7gp9o01djG7jyesTNXdvol0ym8znLKqqUp6EhxZjzQ==", - "path": "volo.abp.http.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.http.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vZF/jXZNTq7ap3gNQmYdZDuGNgEqAhQSH2U7Q34i6TWEHzxv9LQU9yfRLUx/bY+35/c1GB1UbFnuX5P7APVpug==", - "path": "volo.abp.json/5.0.0-rc.1", - "hashPath": "volo.abp.json.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0rMvOEocbT28NdNc3YT3/PfLFkb2PxZZY0zNff+YRsCF5lA5UhyUwocwXtv/rkteGF2dyK5REiZwSjt4Lyemw==", - "path": "volo.abp.localization/5.0.0-rc.1", - "hashPath": "volo.abp.localization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-31kEjzeNPCIwC9klKmLtohpt6PhT63rm+jVJ2BJqyuj/GgpXyGkA4n0WkXGS+6C8gzfkkfnzL2UCxpUC9Z36Cw==", - "path": "volo.abp.localization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.localization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Minify/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0aiBJFPt9HqhswBfJS7QnLNe3SzSfdB7SgflHbsdC1/ZEEpWW0IKJG3P8WRTGm7SAm9mmcJRqD9IEjsZ25P/g==", - "path": "volo.abp.minify/5.0.0-rc.1", - "hashPath": "volo.abp.minify.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrTiVNi8b43GT9nqToAWaBKiXRXuBSVjb+vIiIe9AC4yWTrjiTP8prjz2W/ASzex69N30j3vw2Tl9xESc9e3ww==", - "path": "volo.abp.multitenancy/5.0.0-rc.1", - "hashPath": "volo.abp.multitenancy.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LD/IEsViNO4g11ArmxIF8hssJcHz2Vcev1qCyOwU0wOhsGWUinavQiTZTN4/uhFWrbMQ5N5pCXyfBGyiVwfnVA==", - "path": "volo.abp.objectextending/5.0.0-rc.1", - "hashPath": "volo.abp.objectextending.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6FkTRjRnz5s5rhJjw1wsIR0EsceRelhGZtPpDEssF8eh6ICIFukxaNLeYk6nDOaay5MdDXgY0Dh+J/BBa/F2Q==", - "path": "volo.abp.security/5.0.0-rc.1", - "hashPath": "volo.abp.security.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bEaafwhMyBC7K4K4AnWEVACUtyMnGzBCagFnDpSNtfVXR87u+mx2qE/9ipGp+rBIkBw4E7qLzHzLztzr0+0QWA==", - "path": "volo.abp.settings/5.0.0-rc.1", - "hashPath": "volo.abp.settings.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NuHLda1qJxG8P3Lx23Z9jc5kIKVR699cV5y2F3VQkGhABHMrKFxVLDUXQjvF1T+TnnS2f9WZdatwvSLZ4DEO8g==", - "path": "volo.abp.threading/5.0.0-rc.1", - "hashPath": "volo.abp.threading.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+CdoyzfbnkdoZlbx64GxwuYFaCoLAQxMx9iP5ESPlftH0PyVsYmHnfgMeZeUhBWeM2L/9nbrSteFNx8sYl52A==", - "path": "volo.abp.timing/5.0.0-rc.1", - "hashPath": "volo.abp.timing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JPqwBlJIKBEjGApTU8AM2RvURy7PL8vId+jTTRrGJ/TDuEpE1fKhn/XRk6iBrCzddaUhJK0xg6l4+GVw9AKXSg==", - "path": "volo.abp.uow/5.0.0-rc.1", - "hashPath": "volo.abp.uow.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zx6YTlEPHQ4n5hiLEP31m5heEQaIbSABc+GM+HNKsc8EqkC4jT0Q6dZ24qinwrG+TGXZQ1SzmBniHod8pXYrxg==", - "path": "volo.abp.validation/5.0.0-rc.1", - "hashPath": "volo.abp.validation.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEcj2XMKtOQJeoFLibXCKhPBFgUEgyhBs28+5sP1HH89uVYs0o1zTbowgWculKIk7dYv8rYvPJzwaoikFBdJyg==", - "path": "volo.abp.validation.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.validation.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PE3GfvFpwFbVXWrtrdBgi0XAlDMP/Lk9Vxmbe5jbnj+HtGJibPX38pGQLfZWsZ+bDXqLDt2Di0mdgqZxmo7Mgg==", - "path": "volo.abp.virtualfilesystem/5.0.0-rc.1", - "hashPath": "volo.abp.virtualfilesystem.5.0.0-rc.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.dll deleted file mode 100644 index 71b5eeeb3..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/LINGYUN.Abp.Localization.CultureMap.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.AspNetCore.HttpOverrides.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.AspNetCore.HttpOverrides.dll deleted file mode 100644 index 97ed07c55..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.AspNetCore.HttpOverrides.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.Localization.CultureMap.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.Localization.CultureMap.dll deleted file mode 100644 index 07004b34b..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/net6.0/ref/LINGYUN.Abp.Localization.CultureMap.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.deps.json deleted file mode 100644 index ad3116e20..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.deps.json +++ /dev/null @@ -1,1750 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "LINGYUN.Abp.AuditLogging.Elasticsearch/5.0.0-rc1": { - "dependencies": { - "ConfigureAwait.Fody": "3.3.1", - "Fody": "6.5.3", - "LINGYUN.Abp.AuditLogging": "5.0.0-rc1", - "LINGYUN.Abp.Elasticsearch": "5.0.0-rc1", - "NETStandard.Library": "2.0.3", - "Volo.Abp.Json": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.AuditLogging.Elasticsearch.dll": {} - } - }, - "ConfigureAwait.Fody/3.3.1": { - "dependencies": { - "Fody": "6.5.3" - }, - "runtime": { - "lib/netstandard2.0/ConfigureAwait.dll": { - "assemblyVersion": "3.3.1.0", - "fileVersion": "3.3.1.0" - } - } - }, - "Elasticsearch.Net/7.15.1": { - "dependencies": { - "Microsoft.CSharp": "4.6.0", - "System.Buffers": "4.5.1", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Memory": "4.5.4", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Elasticsearch.Net.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.15.1.0" - } - } - }, - "Fody/6.5.3": {}, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.CSharp/4.6.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CSharp.dll": { - "assemblyVersion": "4.0.4.0", - "fileVersion": "4.700.19.46214" - } - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Memory": "4.5.4", - "System.Text.Json": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "NEST/7.15.1": { - "dependencies": { - "Elasticsearch.Net": "7.15.1" - }, - "runtime": { - "lib/netstandard2.0/Nest.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.15.1.0" - } - } - }, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "System.Buffers/4.5.1": { - "runtime": { - "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "4.2.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "dependencies": { - "System.Reflection.Emit": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Memory/4.5.4": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.4.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "TimeZoneConverter/3.5.0": { - "runtime": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing.Contracts": "5.0.0-rc.1", - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Threading": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Volo.Abp.Localization": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Guids/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Guids.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "dependencies": { - "TimeZoneConverter": "3.5.0", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Composite": "6.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "LINGYUN.Abp.AuditLogging/5.0.0-rc1": { - "dependencies": { - "Volo.Abp.Auditing": "5.0.0-rc.1", - "Volo.Abp.ExceptionHandling": "5.0.0-rc.1", - "Volo.Abp.Guids": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.AuditLogging.dll": {} - } - }, - "LINGYUN.Abp.Elasticsearch/5.0.0-rc1": { - "dependencies": { - "NEST": "7.15.1", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.Elasticsearch.dll": {} - } - } - } - }, - "libraries": { - "LINGYUN.Abp.AuditLogging.Elasticsearch/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ConfigureAwait.Fody/3.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==", - "path": "configureawait.fody/3.3.1", - "hashPath": "configureawait.fody.3.3.1.nupkg.sha512" - }, - "Elasticsearch.Net/7.15.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kfRStGlDbZmPWyjyR6+nltUC8kskXcuTSO5L9T9FU/eQ1J3HocxPZ3zrioHbNe850zN1vn5stE9A230wMfBwDw==", - "path": "elasticsearch.net/7.15.1", - "hashPath": "elasticsearch.net.7.15.1.nupkg.sha512" - }, - "Fody/6.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sRkrGVPJWG5vVKF/3kExAwZhFMUzK/Zksgcv113ehyuYuTDMuqBC4lr6y0qqZ6ga5nT1uueebDzrsRZsNIrqLg==", - "path": "fody/6.5.3", - "hashPath": "fody.6.5.3.nupkg.sha512" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", - "path": "microsoft.csharp/4.6.0", - "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==", - "path": "microsoft.extensions.fileproviders.composite/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9uQbDTqX1MidhoZFUSK1JItt74IapEadFDOIWAlBIKxr3O/ZEWLWkLYGlgUeP1Dkyog6/CB7h1EAU3xADYZ/lA==", - "path": "microsoft.extensions.fileproviders.embedded/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.embedded.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "NEST/7.15.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sGS9UhF2EL/xu8TqY0JVTGgHU93XWLC6r4+rehQ1xHniItv3Bkz9tbyK35PQQNLLGebefF7fXkYMz+CsrkW2Vg==", - "path": "nest/7.15.1", - "hashPath": "nest.7.15.1.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "TimeZoneConverter/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", - "path": "timezoneconverter/3.5.0", - "hashPath": "timezoneconverter.3.5.0.nupkg.sha512" - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3ae97grhTO5dw+S5J3wLkGXv8ZS6qb+XUYX7hJfwJaNQEu/7UprSebD/Nf5SIuzQSCbVe0n16L6MqpCC5AbaZA==", - "path": "volo.abp.auditing/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BwZABnpFls70WjPXwKrOG4wUWxcOxeDlTyg9/dNW7qBQudF/Xm7n9jOaXmjBkD4xfjaSQ3EfCrNEv7t2j94Gnw==", - "path": "volo.abp.auditing.contracts/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.contracts.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDZO/i/CFr0UMhTGJccxDlO5XzXLRZ4ozqzawfsVr0aVo8E1SE2egT9Y00lbw41Zn0un2UVML+7fV+G6AA98CA==", - "path": "volo.abp.data/5.0.0-rc.1", - "hashPath": "volo.abp.data.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LfA9qfj+oHHu1Cc3yEhVAmc7QFNFcfPkiQ0eJpFMKm64AVDId1DiKsui/fal0uoWagBtwKQAHgffoDXksCR8XQ==", - "path": "volo.abp.eventbus.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.eventbus.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3aN/8zsthQ9T7AEkiBkSFt6qxLbgTksGDDawtX+oBQqan6Ibxg62YvUpp9TL9FrWjPnBsxJ4vpz3nExceMXcxQ==", - "path": "volo.abp.exceptionhandling/5.0.0-rc.1", - "hashPath": "volo.abp.exceptionhandling.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Guids/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pbUfPOMpy3HuxPZNWqZZEtlo5VJiEG54C0aWT9/WCCjwTDvymuWVfW1BSqgRe5au1+Rw0wz6HaPptansB5hluQ==", - "path": "volo.abp.guids/5.0.0-rc.1", - "hashPath": "volo.abp.guids.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vZF/jXZNTq7ap3gNQmYdZDuGNgEqAhQSH2U7Q34i6TWEHzxv9LQU9yfRLUx/bY+35/c1GB1UbFnuX5P7APVpug==", - "path": "volo.abp.json/5.0.0-rc.1", - "hashPath": "volo.abp.json.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0rMvOEocbT28NdNc3YT3/PfLFkb2PxZZY0zNff+YRsCF5lA5UhyUwocwXtv/rkteGF2dyK5REiZwSjt4Lyemw==", - "path": "volo.abp.localization/5.0.0-rc.1", - "hashPath": "volo.abp.localization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-31kEjzeNPCIwC9klKmLtohpt6PhT63rm+jVJ2BJqyuj/GgpXyGkA4n0WkXGS+6C8gzfkkfnzL2UCxpUC9Z36Cw==", - "path": "volo.abp.localization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.localization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrTiVNi8b43GT9nqToAWaBKiXRXuBSVjb+vIiIe9AC4yWTrjiTP8prjz2W/ASzex69N30j3vw2Tl9xESc9e3ww==", - "path": "volo.abp.multitenancy/5.0.0-rc.1", - "hashPath": "volo.abp.multitenancy.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LD/IEsViNO4g11ArmxIF8hssJcHz2Vcev1qCyOwU0wOhsGWUinavQiTZTN4/uhFWrbMQ5N5pCXyfBGyiVwfnVA==", - "path": "volo.abp.objectextending/5.0.0-rc.1", - "hashPath": "volo.abp.objectextending.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6FkTRjRnz5s5rhJjw1wsIR0EsceRelhGZtPpDEssF8eh6ICIFukxaNLeYk6nDOaay5MdDXgY0Dh+J/BBa/F2Q==", - "path": "volo.abp.security/5.0.0-rc.1", - "hashPath": "volo.abp.security.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bEaafwhMyBC7K4K4AnWEVACUtyMnGzBCagFnDpSNtfVXR87u+mx2qE/9ipGp+rBIkBw4E7qLzHzLztzr0+0QWA==", - "path": "volo.abp.settings/5.0.0-rc.1", - "hashPath": "volo.abp.settings.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NuHLda1qJxG8P3Lx23Z9jc5kIKVR699cV5y2F3VQkGhABHMrKFxVLDUXQjvF1T+TnnS2f9WZdatwvSLZ4DEO8g==", - "path": "volo.abp.threading/5.0.0-rc.1", - "hashPath": "volo.abp.threading.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+CdoyzfbnkdoZlbx64GxwuYFaCoLAQxMx9iP5ESPlftH0PyVsYmHnfgMeZeUhBWeM2L/9nbrSteFNx8sYl52A==", - "path": "volo.abp.timing/5.0.0-rc.1", - "hashPath": "volo.abp.timing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JPqwBlJIKBEjGApTU8AM2RvURy7PL8vId+jTTRrGJ/TDuEpE1fKhn/XRk6iBrCzddaUhJK0xg6l4+GVw9AKXSg==", - "path": "volo.abp.uow/5.0.0-rc.1", - "hashPath": "volo.abp.uow.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEcj2XMKtOQJeoFLibXCKhPBFgUEgyhBs28+5sP1HH89uVYs0o1zTbowgWculKIk7dYv8rYvPJzwaoikFBdJyg==", - "path": "volo.abp.validation.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.validation.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PE3GfvFpwFbVXWrtrdBgi0XAlDMP/Lk9Vxmbe5jbnj+HtGJibPX38pGQLfZWsZ+bDXqLDt2Di0mdgqZxmo7Mgg==", - "path": "volo.abp.virtualfilesystem/5.0.0-rc.1", - "hashPath": "volo.abp.virtualfilesystem.5.0.0-rc.1.nupkg.sha512" - }, - "LINGYUN.Abp.AuditLogging/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "LINGYUN.Abp.Elasticsearch/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.dll deleted file mode 100644 index 813f696cb..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.Elasticsearch.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.deps.json deleted file mode 100644 index 978ddcdf7..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.deps.json +++ /dev/null @@ -1,1665 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "LINGYUN.Abp.AuditLogging/5.0.0-rc1": { - "dependencies": { - "ConfigureAwait.Fody": "3.3.1", - "Fody": "6.5.3", - "NETStandard.Library": "2.0.3", - "Volo.Abp.Auditing": "5.0.0-rc.1", - "Volo.Abp.ExceptionHandling": "5.0.0-rc.1", - "Volo.Abp.Guids": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.AuditLogging.dll": {} - } - }, - "ConfigureAwait.Fody/3.3.1": { - "dependencies": { - "Fody": "6.5.3" - }, - "runtime": { - "lib/netstandard2.0/ConfigureAwait.dll": { - "assemblyVersion": "3.3.1.0", - "fileVersion": "3.3.1.0" - } - } - }, - "Fody/6.5.3": {}, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Memory": "4.5.4", - "System.Text.Json": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "System.Buffers/4.5.1": { - "runtime": { - "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "4.2.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "dependencies": { - "System.Reflection.Emit": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Memory/4.5.4": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.4.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "TimeZoneConverter/3.5.0": { - "runtime": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "assemblyVersion": "3.5.0.0", - "fileVersion": "3.5.0.0" - } - } - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Auditing.Contracts": "5.0.0-rc.1", - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.Json": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1", - "Volo.Abp.Threading": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Uow": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Volo.Abp.Localization": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Guids/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Guids.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "Volo.Abp.ObjectExtending": "5.0.0-rc.1", - "Volo.Abp.Timing": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1", - "Volo.Abp.VirtualFileSystem": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Data": "5.0.0-rc.1", - "Volo.Abp.EventBus.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.Validation.Abstractions": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Localization.Abstractions": "5.0.0-rc.1", - "Volo.Abp.MultiTenancy": "5.0.0-rc.1", - "Volo.Abp.Security": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "dependencies": { - "TimeZoneConverter": "3.5.0", - "Volo.Abp.Localization": "5.0.0-rc.1", - "Volo.Abp.Settings": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "dependencies": { - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Composite": "6.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - } - } - }, - "libraries": { - "LINGYUN.Abp.AuditLogging/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ConfigureAwait.Fody/3.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==", - "path": "configureawait.fody/3.3.1", - "hashPath": "configureawait.fody.3.3.1.nupkg.sha512" - }, - "Fody/6.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sRkrGVPJWG5vVKF/3kExAwZhFMUzK/Zksgcv113ehyuYuTDMuqBC4lr6y0qqZ6ga5nT1uueebDzrsRZsNIrqLg==", - "path": "fody/6.5.3", - "hashPath": "fody.6.5.3.nupkg.sha512" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Composite/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==", - "path": "microsoft.extensions.fileproviders.composite/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Embedded/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9uQbDTqX1MidhoZFUSK1JItt74IapEadFDOIWAlBIKxr3O/ZEWLWkLYGlgUeP1Dkyog6/CB7h1EAU3xADYZ/lA==", - "path": "microsoft.extensions.fileproviders.embedded/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.embedded.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "TimeZoneConverter/3.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziTcQ5rVxRdtWJEnEqhKBukZGuUQregbf5G7QRrFKj6CwBLss5tSz0dlSHy9gzi5M5ES0PNQ0K2ACP/0XVT5Ow==", - "path": "timezoneconverter/3.5.0", - "hashPath": "timezoneconverter.3.5.0.nupkg.sha512" - }, - "Volo.Abp.Auditing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3ae97grhTO5dw+S5J3wLkGXv8ZS6qb+XUYX7hJfwJaNQEu/7UprSebD/Nf5SIuzQSCbVe0n16L6MqpCC5AbaZA==", - "path": "volo.abp.auditing/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Auditing.Contracts/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BwZABnpFls70WjPXwKrOG4wUWxcOxeDlTyg9/dNW7qBQudF/Xm7n9jOaXmjBkD4xfjaSQ3EfCrNEv7t2j94Gnw==", - "path": "volo.abp.auditing.contracts/5.0.0-rc.1", - "hashPath": "volo.abp.auditing.contracts.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Data/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDZO/i/CFr0UMhTGJccxDlO5XzXLRZ4ozqzawfsVr0aVo8E1SE2egT9Y00lbw41Zn0un2UVML+7fV+G6AA98CA==", - "path": "volo.abp.data/5.0.0-rc.1", - "hashPath": "volo.abp.data.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.EventBus.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LfA9qfj+oHHu1Cc3yEhVAmc7QFNFcfPkiQ0eJpFMKm64AVDId1DiKsui/fal0uoWagBtwKQAHgffoDXksCR8XQ==", - "path": "volo.abp.eventbus.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.eventbus.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ExceptionHandling/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3aN/8zsthQ9T7AEkiBkSFt6qxLbgTksGDDawtX+oBQqan6Ibxg62YvUpp9TL9FrWjPnBsxJ4vpz3nExceMXcxQ==", - "path": "volo.abp.exceptionhandling/5.0.0-rc.1", - "hashPath": "volo.abp.exceptionhandling.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Guids/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pbUfPOMpy3HuxPZNWqZZEtlo5VJiEG54C0aWT9/WCCjwTDvymuWVfW1BSqgRe5au1+Rw0wz6HaPptansB5hluQ==", - "path": "volo.abp.guids/5.0.0-rc.1", - "hashPath": "volo.abp.guids.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Json/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vZF/jXZNTq7ap3gNQmYdZDuGNgEqAhQSH2U7Q34i6TWEHzxv9LQU9yfRLUx/bY+35/c1GB1UbFnuX5P7APVpug==", - "path": "volo.abp.json/5.0.0-rc.1", - "hashPath": "volo.abp.json.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R0rMvOEocbT28NdNc3YT3/PfLFkb2PxZZY0zNff+YRsCF5lA5UhyUwocwXtv/rkteGF2dyK5REiZwSjt4Lyemw==", - "path": "volo.abp.localization/5.0.0-rc.1", - "hashPath": "volo.abp.localization.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Localization.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-31kEjzeNPCIwC9klKmLtohpt6PhT63rm+jVJ2BJqyuj/GgpXyGkA4n0WkXGS+6C8gzfkkfnzL2UCxpUC9Z36Cw==", - "path": "volo.abp.localization.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.localization.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.MultiTenancy/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrTiVNi8b43GT9nqToAWaBKiXRXuBSVjb+vIiIe9AC4yWTrjiTP8prjz2W/ASzex69N30j3vw2Tl9xESc9e3ww==", - "path": "volo.abp.multitenancy/5.0.0-rc.1", - "hashPath": "volo.abp.multitenancy.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.ObjectExtending/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LD/IEsViNO4g11ArmxIF8hssJcHz2Vcev1qCyOwU0wOhsGWUinavQiTZTN4/uhFWrbMQ5N5pCXyfBGyiVwfnVA==", - "path": "volo.abp.objectextending/5.0.0-rc.1", - "hashPath": "volo.abp.objectextending.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Security/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6FkTRjRnz5s5rhJjw1wsIR0EsceRelhGZtPpDEssF8eh6ICIFukxaNLeYk6nDOaay5MdDXgY0Dh+J/BBa/F2Q==", - "path": "volo.abp.security/5.0.0-rc.1", - "hashPath": "volo.abp.security.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Settings/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bEaafwhMyBC7K4K4AnWEVACUtyMnGzBCagFnDpSNtfVXR87u+mx2qE/9ipGp+rBIkBw4E7qLzHzLztzr0+0QWA==", - "path": "volo.abp.settings/5.0.0-rc.1", - "hashPath": "volo.abp.settings.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Threading/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NuHLda1qJxG8P3Lx23Z9jc5kIKVR699cV5y2F3VQkGhABHMrKFxVLDUXQjvF1T+TnnS2f9WZdatwvSLZ4DEO8g==", - "path": "volo.abp.threading/5.0.0-rc.1", - "hashPath": "volo.abp.threading.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Timing/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+CdoyzfbnkdoZlbx64GxwuYFaCoLAQxMx9iP5ESPlftH0PyVsYmHnfgMeZeUhBWeM2L/9nbrSteFNx8sYl52A==", - "path": "volo.abp.timing/5.0.0-rc.1", - "hashPath": "volo.abp.timing.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Uow/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JPqwBlJIKBEjGApTU8AM2RvURy7PL8vId+jTTRrGJ/TDuEpE1fKhn/XRk6iBrCzddaUhJK0xg6l4+GVw9AKXSg==", - "path": "volo.abp.uow/5.0.0-rc.1", - "hashPath": "volo.abp.uow.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.Validation.Abstractions/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eEcj2XMKtOQJeoFLibXCKhPBFgUEgyhBs28+5sP1HH89uVYs0o1zTbowgWculKIk7dYv8rYvPJzwaoikFBdJyg==", - "path": "volo.abp.validation.abstractions/5.0.0-rc.1", - "hashPath": "volo.abp.validation.abstractions.5.0.0-rc.1.nupkg.sha512" - }, - "Volo.Abp.VirtualFileSystem/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PE3GfvFpwFbVXWrtrdBgi0XAlDMP/Lk9Vxmbe5jbnj+HtGJibPX38pGQLfZWsZ+bDXqLDt2Di0mdgqZxmo7Mgg==", - "path": "volo.abp.virtualfilesystem/5.0.0-rc.1", - "hashPath": "volo.abp.virtualfilesystem.5.0.0-rc.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.dll deleted file mode 100644 index 11c6010ae..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.AuditLogging.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.deps.json deleted file mode 100644 index 4293f8341..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.deps.json +++ /dev/null @@ -1,1306 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "LINGYUN.Abp.Elasticsearch/5.0.0-rc1": { - "dependencies": { - "ConfigureAwait.Fody": "3.3.1", - "Fody": "6.5.3", - "NEST": "7.15.1", - "NETStandard.Library": "2.0.3", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.Elasticsearch.dll": {} - } - }, - "ConfigureAwait.Fody/3.3.1": { - "dependencies": { - "Fody": "6.5.3" - }, - "runtime": { - "lib/netstandard2.0/ConfigureAwait.dll": { - "assemblyVersion": "3.3.1.0", - "fileVersion": "3.3.1.0" - } - } - }, - "Elasticsearch.Net/7.15.1": { - "dependencies": { - "Microsoft.CSharp": "4.6.0", - "System.Buffers": "4.5.1", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Memory": "4.5.4", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Elasticsearch.Net.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.15.1.0" - } - } - }, - "Fody/6.5.3": {}, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.CSharp/4.6.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CSharp.dll": { - "assemblyVersion": "4.0.4.0", - "fileVersion": "4.700.19.46214" - } - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Memory": "4.5.4", - "System.Text.Json": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "NEST/7.15.1": { - "dependencies": { - "Elasticsearch.Net": "7.15.1" - }, - "runtime": { - "lib/netstandard2.0/Nest.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.15.1.0" - } - } - }, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "System.Buffers/4.5.1": { - "runtime": { - "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "4.2.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "dependencies": { - "System.Reflection.Emit": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Memory/4.5.4": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.4.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - } - } - }, - "libraries": { - "LINGYUN.Abp.Elasticsearch/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ConfigureAwait.Fody/3.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==", - "path": "configureawait.fody/3.3.1", - "hashPath": "configureawait.fody.3.3.1.nupkg.sha512" - }, - "Elasticsearch.Net/7.15.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kfRStGlDbZmPWyjyR6+nltUC8kskXcuTSO5L9T9FU/eQ1J3HocxPZ3zrioHbNe850zN1vn5stE9A230wMfBwDw==", - "path": "elasticsearch.net/7.15.1", - "hashPath": "elasticsearch.net.7.15.1.nupkg.sha512" - }, - "Fody/6.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sRkrGVPJWG5vVKF/3kExAwZhFMUzK/Zksgcv113ehyuYuTDMuqBC4lr6y0qqZ6ga5nT1uueebDzrsRZsNIrqLg==", - "path": "fody/6.5.3", - "hashPath": "fody.6.5.3.nupkg.sha512" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kxn3M2rnAGy5N5DgcIwcE8QTePWU/XiYcQVzn9HqTls2NKluVzVSmVWRjK7OUPWbljCXuZxHyhEz9kPRIQeXow==", - "path": "microsoft.csharp/4.6.0", - "hashPath": "microsoft.csharp.4.6.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "NEST/7.15.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sGS9UhF2EL/xu8TqY0JVTGgHU93XWLC6r4+rehQ1xHniItv3Bkz9tbyK35PQQNLLGebefF7fXkYMz+CsrkW2Vg==", - "path": "nest/7.15.1", - "hashPath": "nest.7.15.1.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.dll deleted file mode 100644 index 0ddd3ea70..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Elasticsearch.dll and /dev/null differ diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.deps.json b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.deps.json deleted file mode 100644 index 14e74143f..000000000 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.deps.json +++ /dev/null @@ -1,1265 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "LINGYUN.Abp.Serilog.Enrichers.Application/5.0.0-rc1": { - "dependencies": { - "ConfigureAwait.Fody": "3.3.1", - "Fody": "6.5.3", - "NETStandard.Library": "2.0.3", - "Serilog": "2.10.0", - "Volo.Abp.Core": "5.0.0-rc.1" - }, - "runtime": { - "LINGYUN.Abp.Serilog.Enrichers.Application.dll": {} - } - }, - "ConfigureAwait.Fody/3.3.1": { - "dependencies": { - "Fody": "6.5.3" - }, - "runtime": { - "lib/netstandard2.0/ConfigureAwait.dll": { - "assemblyVersion": "3.3.1.0", - "fileVersion": "3.3.1.0" - } - } - }, - "Fody/6.5.3": {}, - "JetBrains.Annotations/2021.2.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2021.2.0.0", - "fileVersion": "2021.2.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "dependencies": { - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Memory": "4.5.4", - "System.Text.Json": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Localization/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52608" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Nito.AsyncEx.Context/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.1.0", - "Nito.Collections.Deque": "1.1.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "dependencies": { - "Nito.Disposables": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" - } - } - }, - "Nito.Collections.Deque/1.1.0": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Nito.Disposables/2.2.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "Serilog/2.10.0": { - "runtime": { - "lib/netstandard2.0/Serilog.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.10.0.0" - } - } - }, - "System.Buffers/4.5.1": { - "runtime": { - "lib/netstandard2.0/System.Buffers.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "4.2.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "dependencies": { - "System.Reflection.Emit": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Memory/4.5.4": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Numerics.Vectors.dll": { - "assemblyVersion": "4.1.4.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Json/6.0.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Numerics.Vectors": "4.5.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.2.0.1", - "fileVersion": "4.6.28619.1" - } - } - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "dependencies": { - "JetBrains.Annotations": "2021.2.0", - "Microsoft.Extensions.Configuration.CommandLine": "6.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "6.0.0", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", - "Microsoft.Extensions.Localization": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Nito.AsyncEx.Context": "5.1.0", - "Nito.AsyncEx.Coordination": "5.1.0", - "System.Collections.Immutable": "6.0.0", - "System.Linq.Dynamic.Core": "1.2.12", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - } - } - }, - "libraries": { - "LINGYUN.Abp.Serilog.Enrichers.Application/5.0.0-rc1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "ConfigureAwait.Fody/3.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==", - "path": "configureawait.fody/3.3.1", - "hashPath": "configureawait.fody.3.3.1.nupkg.sha512" - }, - "Fody/6.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sRkrGVPJWG5vVKF/3kExAwZhFMUzK/Zksgcv113ehyuYuTDMuqBC4lr6y0qqZ6ga5nT1uueebDzrsRZsNIrqLg==", - "path": "fody/6.5.3", - "hashPath": "fody.6.5.3.nupkg.sha512" - }, - "JetBrains.Annotations/2021.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==", - "path": "jetbrains.annotations/2021.2.0", - "hashPath": "jetbrains.annotations.2021.2.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "path": "microsoft.extensions.configuration/6.0.0", - "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==", - "path": "microsoft.extensions.configuration.commandline/6.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DjYkzqvhiHCq38LW71PcIxXk6nhtV6VySP9yDcSO0goPl7YCU1VG1f2Wbgy58lkA10pWkjHCblZPUyboCB93ZA==", - "path": "microsoft.extensions.configuration.environmentvariables/6.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lB0Hb2V4+RUHy+LjEcqEr4EcV4RWc9EnjAV2GdtWQEdljQX+R4hGREftI7sInU9okP93pDrJiaj6QUJ6ZsslOA==", - "path": "microsoft.extensions.configuration.usersecrets/6.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", - "path": "microsoft.extensions.hosting.abstractions/6.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WS/BXvYSh0yGAXvKYvqGLzmhe4raIxmsLwd3pqg0T/zmTMy44PFiTbJm41F2GcPsv3zAV34jcs5aPjjE8td8bA==", - "path": "microsoft.extensions.localization/6.0.0", - "hashPath": "microsoft.extensions.localization.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==", - "path": "microsoft.extensions.localization.abstractions/6.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sc1t2bHjP/EWOcwhVc0QH9F9NBW79tybSeLRsTUqSAiJwZgUaxWOqjGUqEIMeKlDYMK5kPiSSMtlu8eDsEOOvA==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EE7M37c5E/kvulzEkpUR6v1AnK34b2wysOLJHSjl78p/3hL7grte0XCPRqCfLZDwq98AD9GHMTCRfZy7TEeHhw==", - "path": "nito.asyncex.context/5.1.0", - "hashPath": "nito.asyncex.context.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv+oA+cSxidjOImiKcz2FJgMIDxiK0A6xormKmsUklUBjTNqQpjtdJsACMgTQG56PkTHdbMi5QijPTTUsmcCeg==", - "path": "nito.asyncex.coordination/5.1.0", - "hashPath": "nito.asyncex.coordination.5.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tU3Ib4zs8ivM+uS8n7F7ReWZlA3mODyLqwPE+v+WJI94hZ8xLXl+a9npfj/IcmeXo9a6fGKLWkswKQHOeTWqwA==", - "path": "nito.asyncex.tasks/5.1.0", - "hashPath": "nito.asyncex.tasks.5.1.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RXHe531Oaw2IathDr0Q2kbid0iuudBxtgZsfBZ2eUPuFI8I1P7HMiuUeaIefqYykcDYFTDQsFAPAljduIjihLA==", - "path": "nito.collections.deque/1.1.0", - "hashPath": "nito.collections.deque.1.1.0.nupkg.sha512" - }, - "Nito.Disposables/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QcL+uBwUCEoK8GKp/WzjdCiG8/3G1WLlVNJgLJUNG7bIIVAcEV+Mro4s53VT4Nd8xMSplv0gy+Priw44vRvLaA==", - "path": "nito.disposables/2.2.0", - "hashPath": "nito.disposables.2.2.0.nupkg.sha512" - }, - "Serilog/2.10.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", - "path": "serilog/2.10.0", - "hashPath": "serilog.2.10.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T9CICnaEcaRTxE7BJDCR+V9rTaquRnnHDMFasQIXw504xEnGHP+6KwBDcSjwRAQ9rMSdk2siUSgFbyMidT0pSQ==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uYqVPQtjamvbGOot0opknAQPQ/XGbSViGifYu5QplHCU90TIcemZVSX+jrUGaVGHaiw0F3OyrOSu0NpsbSf2ng==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "path": "system.text.json/6.0.0", - "hashPath": "system.text.json.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "Volo.Abp.Core/5.0.0-rc.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xT2P72bMZoldayZ7s+6petYWNMD+g5rWimCk4bBtvfQWnm6IqFK70VU6adofZFWaxiJm2JSz0WjovpSGGLcsbA==", - "path": "volo.abp.core/5.0.0-rc.1", - "hashPath": "volo.abp.core.5.0.0-rc.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.dll b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.dll deleted file mode 100644 index de5d806cb..000000000 Binary files a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/LocalNuget/netstandard2.0/LINGYUN.Abp.Serilog.Enrichers.Application.dll and /dev/null differ