diff --git a/code/src/Shared/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj b/code/src/Shared/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj
new file mode 100644
index 00000000..4dbf839f
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj
@@ -0,0 +1,17 @@
+
+
+
+ netcoreapp5
+ Win.Abp.Snowflakes
+ Win.Abp.Snowflakes
+ $(AssetTargetFallback);portable-net45+win8+wp8+wpa81;
+ false
+ false
+ false
+
+
+
+
+
+
+
diff --git a/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs
new file mode 100644
index 00000000..4f1b3cfe
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs
@@ -0,0 +1,11 @@
+using Volo.Abp.Modularity;
+
+namespace Win.Abp.Snowflakes
+{
+ public class AbpSnowflakeGeneratorModule:AbpModule
+ {
+
+ }
+
+
+}
diff --git a/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs
new file mode 100644
index 00000000..05147e85
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs
@@ -0,0 +1,22 @@
+namespace Win.Abp.Snowflakes
+{
+ public class AbpSnowflakeIdGeneratorOptions
+ {
+ // 数据中心ID(0~31)
+ public long? DefaultDatacenterId { get; set; }
+
+ // 工作机器ID(0~31)
+ public long? DefaultWorkerId { get; set; }
+
+
+ public long GetDefaultDatacenterId()
+ {
+ return DefaultDatacenterId ?? 0L;
+ }
+
+ public long GetDefaultWorkerId()
+ {
+ return DefaultWorkerId ?? 0L;
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs
new file mode 100644
index 00000000..a515fdb5
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs
@@ -0,0 +1,15 @@
+namespace Win.Abp.Snowflakes
+{
+ public interface ISnowflakeIdGenerator
+ {
+ ///
+ /// Creates a new Snowflake Id.
+ ///
+ ///
+ long Create();
+
+ string AnalyzeId(long id);
+
+ // long Create(long datacenterId, long workerId);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs
new file mode 100644
index 00000000..8da3f3e9
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs
@@ -0,0 +1,181 @@
+using System;
+using System.Text;
+using Microsoft.Extensions.Options;
+using Volo.Abp.DependencyInjection;
+
+namespace Win.Abp.Snowflakes
+{
+ public class SnowflakeIdGenerator : ISnowflakeIdGenerator, ITransientDependency
+ {
+ // 开始时间截((new DateTime(2020, 1, 1, 0, 0, 0, DateTimeKind.Utc)-Jan1st1970).TotalMilliseconds)
+ private static readonly DateTime Jan1st1970 = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
+
+ private const long Twepoch = 1577836800000L;
+
+ // 机器id所占的位数
+ private const int WorkerIdBits = 5;
+
+ // 数据标识id所占的位数
+ private const int DatacenterIdBits = 5;
+
+ // 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数)
+ private const long MaxWorkerId = -1L ^ (-1L << WorkerIdBits);
+
+ // 支持的最大数据标识id,结果是31
+ private const long MaxDatacenterId = -1L ^ (-1L << DatacenterIdBits);
+
+ // 序列在id中占的位数
+ private const int SequenceBits = 12;
+
+ // 数据标识id向左移17位(12+5)
+ private const int DatacenterIdShift = SequenceBits + WorkerIdBits;
+
+ // 机器ID向左移12位
+ private const int WorkerIdShift = SequenceBits;
+
+
+ // 时间截向左移22位(5+5+12)
+ private const int TimestampLeftShift = SequenceBits + WorkerIdBits + DatacenterIdBits;
+
+ // 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095)
+ private const long SequenceMask = -1L ^ (-1L << SequenceBits);
+
+ // 数据中心ID(0~31)
+ private long DatacenterId { get; set; }
+
+ // 工作机器ID(0~31)
+ private long WorkerId { get; set; }
+
+ // 毫秒内序列(0~4095)
+ private long Sequence { get; set; }
+
+ // 上次生成ID的时间截
+ private long LastTimestamp { get; set; }
+
+
+ public AbpSnowflakeIdGeneratorOptions Options { get; }
+
+ protected SnowflakeIdGenerator(){}
+
+ public SnowflakeIdGenerator(IOptions options)
+ {
+ Options = options.Value;
+ this.DatacenterId = options.Value.GetDefaultDatacenterId();
+ this.WorkerId = options.Value.GetDefaultWorkerId();
+
+ }
+
+ ///
+ /// 获得下一个ID
+ ///
+
+ ///
+ public long Create()
+ {
+ return Create(Options.GetDefaultDatacenterId(), Options.GetDefaultWorkerId());
+ }
+
+ public long Create(long datacenterId, long workerId)
+ {
+
+ if (datacenterId > MaxDatacenterId || datacenterId < 0)
+ {
+ throw new Exception($"datacenter Id can't be greater than {MaxDatacenterId} or less than 0");
+ }
+ if (workerId > MaxWorkerId || workerId < 0)
+ {
+ throw new Exception($"worker Id can't be greater than {MaxWorkerId} or less than 0");
+ }
+
+ this.DatacenterId = datacenterId;
+ this.WorkerId = workerId;
+
+ lock (this)
+ {
+ var timestamp = GetCurrentTimestamp();
+ if (timestamp > LastTimestamp) //时间戳改变,毫秒内序列重置
+ {
+ Sequence = 0L;
+ }
+ else if (timestamp == LastTimestamp) //如果是同一时间生成的,则进行毫秒内序列
+ {
+ Sequence = (Sequence + 1) & SequenceMask;
+ if (Sequence == 0) //毫秒内序列溢出
+ {
+ timestamp = GetNextTimestamp(LastTimestamp); //阻塞到下一个毫秒,获得新的时间戳
+ }
+ }
+ else //当前时间小于上一次ID生成的时间戳,证明系统时钟被回拨,此时需要做回拨处理
+ {
+ Sequence = (Sequence + 1) & SequenceMask;
+ if (Sequence > 0)
+ {
+ timestamp = LastTimestamp; //停留在最后一次时间戳上,等待系统时间追上后即完全度过了时钟回拨问题。
+ }
+ else //毫秒内序列溢出
+ {
+ timestamp = LastTimestamp + 1; //直接进位到下一个毫秒
+ }
+ //throw new Exception(string.Format("Clock moved backwards. Refusing to generate id for {0} milliseconds", lastTimestamp - timestamp));
+ }
+
+ LastTimestamp = timestamp; //上次生成ID的时间截
+
+ //移位并通过或运算拼到一起组成64位的ID
+ var id = ((timestamp - Twepoch) << TimestampLeftShift)
+ | (this.DatacenterId << DatacenterIdShift)
+ | (this.WorkerId << WorkerIdShift)
+ | Sequence;
+ return id;
+ }
+ }
+
+ ///
+ /// 解析雪花ID
+ ///
+ ///
+ public string AnalyzeId(long id)
+ {
+ var sb = new StringBuilder();
+
+ var timestamp = (id >> TimestampLeftShift);
+ var time = Jan1st1970.AddMilliseconds(timestamp + Twepoch);
+ sb.Append(time.ToLocalTime().ToString("yyyy-MM-dd HH:mm:ss:fff"));
+
+ var datacenterId = (id ^ (timestamp << TimestampLeftShift)) >> DatacenterIdShift;
+ sb.Append("_" + datacenterId);
+
+ var workerId = (id ^ ((timestamp << TimestampLeftShift) | (datacenterId << DatacenterIdShift))) >> WorkerIdShift;
+ sb.Append("_" + workerId);
+
+ var sequence = id & SequenceMask;
+ sb.Append("_" + sequence);
+
+ return sb.ToString();
+ }
+
+ ///
+ /// 阻塞到下一个毫秒,直到获得新的时间戳
+ ///
+ /// 上次生成ID的时间截
+ /// 当前时间戳
+ private static long GetNextTimestamp(long lastTimestamp)
+ {
+ long timestamp = GetCurrentTimestamp();
+ while (timestamp <= lastTimestamp)
+ {
+ timestamp = GetCurrentTimestamp();
+ }
+ return timestamp;
+ }
+
+ ///
+ /// 获取当前时间戳
+ ///
+ ///
+ private static long GetCurrentTimestamp()
+ {
+ return (long)(DateTime.UtcNow - Jan1st1970).TotalMilliseconds;
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json
new file mode 100644
index 00000000..611c11ff
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json
@@ -0,0 +1,940 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.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/1.7.1": {},
+ "System.ComponentModel.Annotations/4.7.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.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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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.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.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"
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.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-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.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.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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.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.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"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..32b78039
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..2c0ecd45
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..2ded0aec
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.deps.json b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.deps.json
new file mode 100644
index 00000000..611c11ff
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.deps.json
@@ -0,0 +1,940 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.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/1.7.1": {},
+ "System.ComponentModel.Annotations/4.7.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.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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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.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.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"
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.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-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.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.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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.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.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"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..16a99607
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..7c786df9
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..3b7b54fe
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..3b1554c7
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")]
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..37000be2
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace =
+build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\Shared\Win.Abp.Snowflakes\
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..c1d35ee9
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..507cad31
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.BuildWithSkipAnalyzers b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 00000000..e69de29b
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..5d6b3243
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+f07d2ca3dd6442e8b55ef6ad5afa72e0a111088e
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..af9388ae
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
@@ -0,0 +1,48 @@
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache
new file mode 100644
index 00000000..d5e121ec
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..32b78039
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..2c0ecd45
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..942af20c
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..942af20c
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..bcabfb21
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,10 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
+build_property.RootNamespace =
+build_property.ProjectDir = C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..cf64310d
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..f5e894ae
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..ef019e4a
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+41375255bdfa3a4e775b2622577fc114b4d1fb9a
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..49ef6f30
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
@@ -0,0 +1,24 @@
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..16a99607
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..7c786df9
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..3b7b54fe
Binary files /dev/null and b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..be523b49
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json
@@ -0,0 +1,89 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {}
+ },
+ "projects": {
+ "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "projectName": "Win.Abp.Snowflakes",
+ "projectPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "packagesPath": "C:\\Users\\44673\\.nuget\\packages\\",
+ "outputPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\44673\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp5"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "D:\\上海富维东阳工作\\设备管理\\localhost-nuget": {},
+ "D:\\长春项目\\北京北汽结算项目\\源代码\\nuget": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[4.0.0, )"
+ }
+ },
+ "imports": [
+ "portable-net45+win8+wp8+wpa81",
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props
new file mode 100644
index 00000000..1ab7de77
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props
@@ -0,0 +1,16 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\44673\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 6.5.0
+
+
+
+
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets
new file mode 100644
index 00000000..3dc06ef3
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json b/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json
new file mode 100644
index 00000000..8e495cae
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json
@@ -0,0 +1,3120 @@
+{
+ "version": 3,
+ "targets": {
+ "net5.0": {
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "JetBrains.Annotations/2020.1.0": {
+ "sha512": "kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2020.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "sha512": "PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.dll",
+ "lib/net461/Microsoft.Extensions.Localization.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "sha512": "Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.dll",
+ "lib/net461/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "type": "package",
+ "path": "microsoft.extensions.options/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.dll",
+ "lib/net461/Microsoft.Extensions.Options.xml",
+ "lib/net5.0/Microsoft.Extensions.Options.dll",
+ "lib/net5.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Primitives.dll",
+ "lib/net461/Microsoft.Extensions.Primitives.xml",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Collections.Immutable.dll",
+ "lib/net461/System.Collections.Immutable.xml",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.1.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "sha512": "VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "sha512": "ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "type": "package",
+ "path": "volo.abp.core/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "lib/netstandard2.0/Volo.Abp.Core.xml",
+ "volo.abp.core.4.0.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net5.0": [
+ "Volo.Abp.Core >= 4.0.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\44673\\.nuget\\packages\\": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "projectName": "Win.Abp.Snowflakes",
+ "projectPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "packagesPath": "C:\\Users\\44673\\.nuget\\packages\\",
+ "outputPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\44673\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp5"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "D:\\上海富维东阳工作\\设备管理\\localhost-nuget": {},
+ "D:\\长春项目\\北京北汽结算项目\\源代码\\nuget": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[4.0.0, )"
+ }
+ },
+ "imports": [
+ "portable-net45+win8+wp8+wpa81",
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache
new file mode 100644
index 00000000..3826929b
--- /dev/null
+++ b/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache
@@ -0,0 +1,67 @@
+{
+ "version": 2,
+ "dgSpecHash": "lLXI6VlYWsDUiunZaPt/aWnId72XnSkWR9YdQQeMut7LJSbbXdePpH4Y9cK3OAWoQ7PhYPv6o3+fPL5HB2ii4g==",
+ "success": true,
+ "projectFilePath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\44673\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExcelImporterModule.cs b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExcelImporterModule.cs
new file mode 100644
index 00000000..47291cff
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExcelImporterModule.cs
@@ -0,0 +1,17 @@
+using Microsoft.Extensions.DependencyInjection;
+using Volo.Abp.Modularity;
+
+namespace Win.Abp.ExcelImporter
+{
+ public class ExcelImporterModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ var configuration = context.Services.GetConfiguration();
+
+
+ //context.Services.AddTransient(typeof(IExportImport<>),
+ // typeof(ExportImport<>));
+ }
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExportImporter.cs b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExportImporter.cs
new file mode 100644
index 00000000..c2fc03e6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/ExportImporter.cs
@@ -0,0 +1,171 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using Magicodes.ExporterAndImporter.Core;
+using Magicodes.ExporterAndImporter.Core.Extension;
+using Magicodes.ExporterAndImporter.Excel;
+using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Mvc;
+using OfficeOpenXml;
+using Shouldly;
+using Volo.Abp;
+using Volo.Abp.Validation;
+using Win.Sfs.Shared.ApplicationBase;
+
+namespace Win.Abp.ExcelImporter
+{
+ public class ExportImporter : IExportImporter
+ {
+ private readonly IExcelImporter _importer = new Magicodes.ExporterAndImporter.Excel.ExcelImporter();//导入Excel
+ private readonly IExporter _exporter = new ExcelExporter();//导出Excel
+
+ ///
+ /// 生成导入模板
+ ///
+ ///
+ ///
+ public virtual async Task GetExcelImportTemplate() where T : class, new()
+ {
+ Type type = typeof(T).GetType();
+ var result = await _importer.GenerateTemplateBytes();
+ result.ShouldNotBeNull();
+ result.Length.ShouldBeGreaterThan(0);
+ Stream stream = new MemoryStream(result);
+ using (var pck = new ExcelPackage(stream))
+ {
+ pck.Workbook.Worksheets.Count.ShouldBe(1);
+ var sheet = pck.Workbook.Worksheets.First();
+ var attr = typeof(T).GetAttribute();
+ var text = sheet.Cells["A1"].Text.Replace("\n", string.Empty).Replace("\r", string.Empty);
+ text.ShouldBe(attr.ImportDescription.Replace("\n", string.Empty).Replace("\r", string.Empty));
+ }
+ return result;
+ }
+
+
+ ///
+ ///Excel导入功能
+ ///
+ /// 导入文件
+ /// 缓存层导入接口
+ ///
+ public virtual async Task UploadExcelImport([FromForm] IFormFileCollection files, IImportAppService cacheService)
+ where T : class, new()
+ {
+ Type type = typeof(T).GetType();
+ ExcelImportResult returnResult = new ExcelImportResult();
+ foreach (var file in files)
+ {
+ if (file == null)
+ {
+ throw new BusinessException("上传附件不能为空!");
+ }
+ if (file.Length > 20971520) //10MB = 1024 * 1024 *20
+ {
+ throw new BusinessException("上传附件大小能超过20M!");
+ }
+ using (var memoryStream = new MemoryStream())
+ {
+ await file.CopyToAsync(memoryStream);//生成文件
+ #region 导入
+ var import = await _importer.Import(memoryStream);
+ //if (import.Exception != null)
+ //{
+ // if (import.Exception.Message.ToString() == "导入文件不存在!")
+ // {
+ // throw new BusinessException("文件容器配置的路径错误,请检查!");
+ // }
+ //}
+ if (import.TemplateErrors.Count > 0)
+ {
+ throw new BusinessException("模板错误!当前模板中字段不匹配!!请正确上传模板数据!");
+ }
+ import.ShouldNotBeNull();
+ if (import.Exception != null)
+ {
+ //导入的数据有异常
+ throw new BusinessException(import.Exception.ToString());
+ }
+ returnResult.totalSize = import.Data.Count;
+ if (import.RowErrors.Count > 0)
+ {
+ //--注意:文件流的方式不支持生成错误模板了
+ //自动保存“{ 目标文件名称}_.xlsx”的标注文件到目标位置
+ //导入的数据有错误,比如重复列,必填项为空等(不包含警告),主要看DTO的设置
+ //import.HasError.ShouldBeTrue();//标识导入的数据有错误
+ //returnResult.errSize = import.RowErrors.Count;
+ //returnResult.errTemplate = Path.GetFileNameWithoutExtension(FileOriginName) + "_.xlsx";//返回错误模板名称作为参数
+ //returnResult.errMessage = "RowErrors";
+ //错误列表,未测试
+ throw new AbpValidationException("err!",
+ new List
+ {
+ new ValidationResult("err!", new[] {"err"})
+ });
+ }
+ else
+ {
+ import.HasError.ShouldBeFalse();//标识导入的数据没有错误了
+ if (import.Data.Count > 0)
+ {
+ //获取导入的Excel中的数据列表
+ var customerImportList = import.Data.ToList();
+ await cacheService.ImportAsync(customerImportList);
+ }
+ else
+ {
+ throw new BusinessException("模板数据为空!请检查!");
+ }
+ }
+ #endregion
+ }
+ }
+
+ return returnResult;//返回客户端
+ }
+
+ ///
+ /// 导出Excel文件公用方法
+ ///
+ ///
+ ///
+ ///
+ public virtual async Task ExcelExporter(List dots) where T : class, new()
+ {
+ var result = await _exporter.ExportAsByteArray(dots);
+ return result;
+ }
+
+
+ }
+
+ public class ExcelImportResult
+ {
+ ///
+ /// 导入的数据总数
+ ///
+ public long totalSize { get; set; }
+
+ ///
+ /// 成功的个数
+ ///
+ public long succeessSize { get; set; }
+
+ ///
+ /// 错误数据个数
+ ///
+ public long errSize { get; set; }
+ ///
+ /// 导入错误生成的模板名称
+ ///
+ public string errTemplate { get; set; }
+
+ ///
+ /// 返回错误信息
+ ///
+ public string errMessage { get; set; }
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/IExportImporter.cs b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/IExportImporter.cs
new file mode 100644
index 00000000..8ff88d01
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/IExportImporter.cs
@@ -0,0 +1,35 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Mvc;
+using Volo.Abp.DependencyInjection;
+using Win.Sfs.Shared.ApplicationBase;
+
+namespace Win.Abp.ExcelImporter
+{
+ public interface IExportImporter: ITransientDependency
+ {
+ ///
+ /// 生成模板
+ ///
+ ///
+ ///
+ Task GetExcelImportTemplate() where T : class, new();
+ ///
+ /// 导入接口
+ ///
+ ///
+ ///
+ ///
+ ///
+ Task UploadExcelImport([FromForm] IFormFileCollection files, IImportAppService cacheService)
+ where T : class, new();
+ ///
+ /// 导出接口
+ ///
+ ///
+ ///
+ ///
+ Task ExcelExporter(List dots) where T : class, new();
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/Win.Abp.ExcelImporter.csproj b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/Win.Abp.ExcelImporter.csproj
new file mode 100644
index 00000000..abfe2ea4
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.ExcelImporter/Win.Abp.ExcelImporter.csproj
@@ -0,0 +1,18 @@
+
+
+
+ netcoreapp5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Program.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Program.cs
new file mode 100644
index 00000000..d0504d37
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Program.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Threading.Tasks;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Serilog;
+using Serilog.Events;
+
+namespace Win.Abp.SerialNumber.Test
+{
+ class Program
+ {
+ static async Task Main(string[] args)
+ {
+ Log.Logger = new LoggerConfiguration()
+ .MinimumLevel.Debug()
+ .MinimumLevel.Override("Microsoft", LogEventLevel.Information)
+ .Enrich.FromLogContext()
+ .WriteTo.Console()
+ .WriteTo.File("Logs/logs.txt")
+ .CreateLogger();
+
+ Log.Information("Starting CsRedisSerialNumberGenerator.Test...");
+
+ await CreateHostBuilder(args).RunConsoleAsync();
+ }
+
+ public static IHostBuilder CreateHostBuilder(string[] args) =>
+ Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args)
+ .ConfigureServices((hostContext, services) =>
+ {
+ services.AddHostedService();
+ });
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestService.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestService.cs
new file mode 100644
index 00000000..e48fb326
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestService.cs
@@ -0,0 +1,70 @@
+using System;
+using System.Diagnostics.Eventing.Reader;
+using System.Threading.Tasks;
+using Microsoft.Extensions.Options;
+using Serilog;
+using Serilog.Core;
+using Volo.Abp.DependencyInjection;
+using Win.Abp.SerialNumber;
+
+namespace Win.Abp.SerialNumber.Test
+{
+ public class SerialNumberTestService : ITransientDependency
+ {
+ private ISerialNumberGenerator _serialNumberGenerator;
+ private AbpSerialNumberGeneratorOptions _options;
+
+ public SerialNumberTestService(
+ ISerialNumberGenerator serialNumberGenerator,
+ IOptions options
+ )
+ {
+ _serialNumberGenerator = serialNumberGenerator;
+ _options = options.Value;
+ }
+
+ public async Task RunAsync()
+ {
+ Log.Information("Serial Number Generator Test");
+ await TestSerialNumberGenerator();
+ }
+
+ private async Task TestSerialNumberGenerator()
+ {
+ string id;
+ var date = DateTime.Today;
+ var datetimeFormat = "yyyyMMdd";
+ var prefix = "TEST";
+ var separator = "-";
+ var numberCount = 6;
+ var step = 2;
+
+ var count = 15;
+ Log.Information($"Generator count: {count}");
+ for (int i = 0; i < count; i++)
+ {
+ id = await _serialNumberGenerator.CreateAsync(date,datetimeFormat: datetimeFormat, prefix: prefix, separator: separator, numberCount: numberCount, step: step);
+ Log.Information(id);
+ await Task.Delay(100);
+ }
+
+ Log.Information("Init Serial Number : 0");
+ id = await _serialNumberGenerator.InitAsync(date, prefix);
+ Log.Information(id);
+
+ var setToValue = 100;
+ Log.Information($"Set Serial Number : {setToValue}");
+ id = await _serialNumberGenerator.SetAsync(date, prefix, setToValue);
+ Log.Information(id);
+
+ Log.Information($"Generator count: {count}");
+ for (int i = 0; i < count; i++)
+ {
+ id = await _serialNumberGenerator.CreateAsync(date, datetimeFormat: datetimeFormat, prefix: prefix, separator: separator, numberCount: numberCount, step: step);
+ Log.Information(id);
+ await Task.Delay(100);
+ }
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsHostedService.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsHostedService.cs
new file mode 100644
index 00000000..26ca26bc
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsHostedService.cs
@@ -0,0 +1,29 @@
+using System.Threading;
+using System.Threading.Tasks;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Volo.Abp;
+
+namespace Win.Abp.SerialNumber.Test
+{
+ public class SerialNumberTestsHostedService : IHostedService
+ {
+ public async Task StartAsync(CancellationToken cancellationToken)
+ {
+ using (var application = AbpApplicationFactory.Create(options =>
+ {
+ options.Services.AddLogging(loggingBuilder => { });
+ }))
+ {
+ application.Initialize();
+
+ var serialNumberTestService = application.ServiceProvider.GetRequiredService();
+ await serialNumberTestService.RunAsync();
+
+ application.Shutdown();
+ }
+ }
+
+ public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsModule.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsModule.cs
new file mode 100644
index 00000000..9728c079
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/SerialNumberTestsModule.cs
@@ -0,0 +1,19 @@
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Volo.Abp.Modularity;
+using Win.Abp.SerialNumber;
+
+namespace Win.Abp.SerialNumber.Test
+{
+ [DependsOn(
+ typeof(AbpSerialNumberGeneratorModule)
+ )]
+ public class SerialNumberTestsModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ var configuration = context.Services.GetConfiguration();
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Win.Abp.SerialNumber.Test.csproj b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Win.Abp.SerialNumber.Test.csproj
new file mode 100644
index 00000000..4435b6de
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/Win.Abp.SerialNumber.Test.csproj
@@ -0,0 +1,24 @@
+
+
+
+ Exe
+ netcoreapp5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/appsettings.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/appsettings.json
new file mode 100644
index 00000000..f60c2f5f
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/appsettings.json
@@ -0,0 +1,6 @@
+{
+ "Redis": {
+ "Configuration": "127.0.0.1",
+ "Type": "StackExchangeRedis"
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/CSRedisCore.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/CSRedisCore.dll
new file mode 100644
index 00000000..082c3eb1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/CSRedisCore.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll
new file mode 100644
index 00000000..3ca681f9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 00000000..2febeaa7
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 00000000..09094973
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll
new file mode 100644
index 00000000..b935d270
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
new file mode 100644
index 00000000..200aa3ce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 00000000..439bbed2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 00000000..562e207d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll
new file mode 100644
index 00000000..6869a5a1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 00000000..97c2a378
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 00000000..25c33e2f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 00000000..605f4a74
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 00000000..2c15f955
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 00000000..92169edf
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 00000000..7c67a8fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 00000000..e7653fe0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll
new file mode 100644
index 00000000..2a9c9e9e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll
new file mode 100644
index 00000000..5c2c8e68
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll
new file mode 100644
index 00000000..73c60ea6
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 00000000..ff460c4b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll
new file mode 100644
index 00000000..0eb6f3ef
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll
new file mode 100644
index 00000000..d78e41ca
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 00000000..214f9f38
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll
new file mode 100644
index 00000000..60232148
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll
new file mode 100644
index 00000000..59cfe857
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
new file mode 100644
index 00000000..9feaffab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll
new file mode 100644
index 00000000..d45d4475
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
new file mode 100644
index 00000000..35d35129
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 00000000..c6d622a2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
new file mode 100644
index 00000000..15508880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll
new file mode 100644
index 00000000..e52ff143
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll
new file mode 100644
index 00000000..4bde40dd
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll
new file mode 100644
index 00000000..fc52a84c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll
new file mode 100644
index 00000000..9cc4799b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll
new file mode 100644
index 00000000..602f7f4c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll
new file mode 100644
index 00000000..c5ece5b9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/SafeObjectPool.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/SafeObjectPool.dll
new file mode 100644
index 00000000..f722cec5
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/SafeObjectPool.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll
new file mode 100644
index 00000000..fb8ef880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll
new file mode 100644
index 00000000..ffb8d8a4
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll
new file mode 100644
index 00000000..dd89393c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.dll
new file mode 100644
index 00000000..04967533
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Serilog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/StackExchange.Redis.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/StackExchange.Redis.dll
new file mode 100644
index 00000000..4a3fad78
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/StackExchange.Redis.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
new file mode 100644
index 00000000..a2a4cd26
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll
new file mode 100644
index 00000000..0c071ee1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 00000000..bace6df8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..ce891a85
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll
new file mode 100644
index 00000000..3eded8f8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll
new file mode 100644
index 00000000..8b4878e9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll
new file mode 100644
index 00000000..76b82e19
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 00000000..65b4ad9f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll
new file mode 100644
index 00000000..0e1a0145
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll
new file mode 100644
index 00000000..fee523ab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll
new file mode 100644
index 00000000..f0a4f045
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.deps.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.deps.json
new file mode 100644
index 00000000..15b7d5ff
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.deps.json
@@ -0,0 +1,1644 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "Win.Abp.SerialNumber.Test/1.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": "3.1.2",
+ "Serilog.Extensions.Logging": "3.0.1",
+ "Serilog.Sinks.Console": "3.1.1",
+ "Serilog.Sinks.File": "4.1.0",
+ "Win.Abp.SerialNumber": "1.0.0"
+ },
+ "runtime": {
+ "Win.Abp.SerialNumber.Test.dll": {}
+ }
+ },
+ "CSRedisCore/3.2.1": {
+ "dependencies": {
+ "Newtonsoft.Json": "12.0.3",
+ "SafeObjectPool": "2.2.0",
+ "System.ValueTuple": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/CSRedisCore.dll": {
+ "assemblyVersion": "3.2.1.0",
+ "fileVersion": "3.2.1.0"
+ }
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "System.Text.Json": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "2.0.17.18362"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "SafeObjectPool/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/SafeObjectPool.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Serilog/2.8.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.8.0.0"
+ }
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Serilog": "2.8.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "3.0.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
+ "assemblyVersion": "3.1.1.0",
+ "fileVersion": "3.1.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "4.1.0.0"
+ }
+ }
+ },
+ "StackExchange.Redis/2.0.593": {
+ "dependencies": {
+ "Pipelines.Sockets.Unofficial": "2.0.17",
+ "System.Diagnostics.PerformanceCounter": "4.5.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Threading.Channels": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/StackExchange.Redis.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.593.37019"
+ }
+ }
+ },
+ "System.Buffers/4.4.0": {},
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.20.21406"
+ }
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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.ComponentModel.Annotations/4.7.0": {},
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/5.0.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.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.IO.FileSystem/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26814.2"
+ }
+ }
+ },
+ "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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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": "3.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": "3.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": "3.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": "3.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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.2": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "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.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Json/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Channels/4.5.0": {},
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ValueTuple/4.5.0": {},
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "dependencies": {
+ "CSRedisCore": "3.2.1",
+ "StackExchange.Redis": "2.0.593",
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.SerialNumber.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.SerialNumber.Test/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "CSRedisCore/3.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iwhYb/SCECCAu2MvXIaxhAdKVC74tbOXuGrhTFhGmI4HvC3O+HJ66bt7v7f3z+Mc5vAUSdPpUQEonrwULC5EIQ==",
+ "path": "csrediscore/3.2.1",
+ "hashPath": "csrediscore.3.2.1.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "hashPath": "microsoft.extensions.logging.console.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "hashPath": "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LQCDUvTHMdDm1TnGyoHbzrnTpFO3+zmem4HjG27zxEnCjJjr3iD/WNAsUxIgHoY2DzUZ6d0LfBhf2LgLvjAnQg==",
+ "path": "pipelines.sockets.unofficial/2.0.17",
+ "hashPath": "pipelines.sockets.unofficial.2.0.17.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "SafeObjectPool/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SKmcLUgmIjsZLptw6DDr7u4zzyhYq914DdTCHQ3WozejagIB7hZJ7XdwiVFkjN6HSRn80MOw00tY+znOTdoZXA==",
+ "path": "safeobjectpool/2.2.0",
+ "hashPath": "safeobjectpool.2.2.0.nupkg.sha512"
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "path": "serilog/2.8.0",
+ "hashPath": "serilog.2.8.0.nupkg.sha512"
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "path": "serilog.extensions.logging/3.0.1",
+ "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "path": "serilog.sinks.console/3.1.1",
+ "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "path": "serilog.sinks.file/4.1.0",
+ "hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512"
+ },
+ "StackExchange.Redis/2.0.593": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmWahP59bHEKCz0HNwsG597YXhOy7AhpSLQ25iVofMXxevMsFhy1pqyhvintvDBQ2jlCWy+GWyF11WRobwXN+g==",
+ "path": "stackexchange.redis/2.0.593",
+ "hashPath": "stackexchange.redis.2.0.593.nupkg.sha512"
+ },
+ "System.Buffers/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
+ "path": "system.buffers/4.4.0",
+ "hashPath": "system.buffers.4.4.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
+ "path": "system.diagnostics.diagnosticsource/5.0.0",
+ "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JUO5/moXgchWZBMBElgmPebZPKCgwW8kY3dFwVJavaNR2ftcc/YjXXGjOaCjly2KBXT7Ld5l/GTkMVzNv41yZA==",
+ "path": "system.diagnostics.performancecounter/4.5.0",
+ "hashPath": "system.diagnostics.performancecounter.4.5.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.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "path": "system.io.filesystem/4.0.1",
+ "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oY5m31iOIZhvW0C69YTdKQWIbiYjFLgxn9NFXA7XeWD947uEk0zOi9fLbGtYgbs1eF7kTQ4zl9IeGQHthz+m+A==",
+ "path": "system.io.pipelines/4.5.1",
+ "hashPath": "system.io.pipelines.4.5.1.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
+ "path": "system.runtime.compilerservices.unsafe/4.5.2",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.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.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.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.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "path": "system.security.permissions/4.5.0",
+ "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.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.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
+ },
+ "System.Text.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
+ "path": "system.text.json/5.0.0",
+ "hashPath": "system.text.json.5.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.Channels/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==",
+ "path": "system.threading.channels/4.5.0",
+ "hashPath": "system.threading.channels.4.5.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.Timer/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "path": "system.threading.timer/4.0.1",
+ "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
+ },
+ "System.ValueTuple/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
+ "path": "system.valuetuple/4.5.0",
+ "hashPath": "system.valuetuple.4.5.0.nupkg.sha512"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..be26cdd0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.exe b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.exe
new file mode 100644
index 00000000..b93a0bab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb
new file mode 100644
index 00000000..159a6f91
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
new file mode 100644
index 00000000..376e9695
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Administrator\\.nuget\\packages",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.json
new file mode 100644
index 00000000..bc456d78
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "3.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.dll
new file mode 100644
index 00000000..80fceaed
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.pdb
new file mode 100644
index 00000000..5b1cf78e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/Win.Abp.SerialNumber.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/appsettings.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/appsettings.json
new file mode 100644
index 00000000..f60c2f5f
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/appsettings.json
@@ -0,0 +1,6 @@
+{
+ "Redis": {
+ "Configuration": "127.0.0.1",
+ "Type": "StackExchangeRedis"
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..bdcb9c6e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll
new file mode 100644
index 00000000..299a2d71
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 00000000..fd580361
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/CSRedisCore.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/CSRedisCore.dll
new file mode 100644
index 00000000..082c3eb1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/CSRedisCore.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll
new file mode 100644
index 00000000..3ca681f9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 00000000..2febeaa7
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 00000000..09094973
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll
new file mode 100644
index 00000000..b935d270
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
new file mode 100644
index 00000000..200aa3ce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 00000000..439bbed2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 00000000..562e207d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll
new file mode 100644
index 00000000..6869a5a1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 00000000..97c2a378
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 00000000..25c33e2f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 00000000..d98bdc9c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 00000000..2c15f955
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 00000000..92169edf
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 00000000..7c67a8fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 00000000..e7653fe0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll
new file mode 100644
index 00000000..2a9c9e9e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll
new file mode 100644
index 00000000..7d2ef38d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll
new file mode 100644
index 00000000..ef5fd76f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 00000000..ff460c4b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll
new file mode 100644
index 00000000..0eb6f3ef
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll
new file mode 100644
index 00000000..d78e41ca
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 00000000..214f9f38
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll
new file mode 100644
index 00000000..60232148
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll
new file mode 100644
index 00000000..59cfe857
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll
new file mode 100644
index 00000000..9feaffab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll
new file mode 100644
index 00000000..d45d4475
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll
new file mode 100644
index 00000000..100840ad
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 00000000..c6d622a2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Newtonsoft.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Newtonsoft.Json.dll
new file mode 100644
index 00000000..15508880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Newtonsoft.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll
new file mode 100644
index 00000000..e52ff143
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll
new file mode 100644
index 00000000..4bde40dd
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll
new file mode 100644
index 00000000..fc52a84c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll
new file mode 100644
index 00000000..9cc4799b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll
new file mode 100644
index 00000000..602f7f4c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Pipelines.Sockets.Unofficial.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Pipelines.Sockets.Unofficial.dll
new file mode 100644
index 00000000..c5ece5b9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Pipelines.Sockets.Unofficial.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/SafeObjectPool.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/SafeObjectPool.dll
new file mode 100644
index 00000000..f722cec5
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/SafeObjectPool.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll
new file mode 100644
index 00000000..fb8ef880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll
new file mode 100644
index 00000000..ffb8d8a4
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll
new file mode 100644
index 00000000..dd89393c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.dll
new file mode 100644
index 00000000..04967533
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Serilog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/StackExchange.Redis.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/StackExchange.Redis.dll
new file mode 100644
index 00000000..4a3fad78
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/StackExchange.Redis.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Configuration.ConfigurationManager.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Configuration.ConfigurationManager.dll
new file mode 100644
index 00000000..0c071ee1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Configuration.ConfigurationManager.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..ce891a85
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.PerformanceCounter.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.PerformanceCounter.dll
new file mode 100644
index 00000000..3eded8f8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Diagnostics.PerformanceCounter.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.IO.Pipelines.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.IO.Pipelines.dll
new file mode 100644
index 00000000..8b4878e9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.IO.Pipelines.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll
new file mode 100644
index 00000000..76b82e19
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Cryptography.ProtectedData.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 00000000..65b4ad9f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Permissions.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Permissions.dll
new file mode 100644
index 00000000..0e1a0145
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/System.Security.Permissions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll
new file mode 100644
index 00000000..f0a4f045
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.deps.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.deps.json
new file mode 100644
index 00000000..4ce84afb
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.deps.json
@@ -0,0 +1,1605 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "Win.Abp.SerialNumber.Test/1.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": "3.1.2",
+ "Serilog.Extensions.Logging": "3.0.1",
+ "Serilog.Sinks.Console": "3.1.1",
+ "Serilog.Sinks.File": "4.1.0",
+ "Win.Abp.SerialNumber": "1.0.0"
+ },
+ "runtime": {
+ "Win.Abp.SerialNumber.Test.dll": {}
+ }
+ },
+ "CSRedisCore/3.2.1": {
+ "dependencies": {
+ "Newtonsoft.Json": "12.0.3",
+ "SafeObjectPool": "2.2.0",
+ "System.ValueTuple": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/CSRedisCore.dll": {
+ "assemblyVersion": "3.2.1.0",
+ "fileVersion": "3.2.1.0"
+ }
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "2.0.17.18362"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "SafeObjectPool/2.2.0": {
+ "runtime": {
+ "lib/netstandard2.0/SafeObjectPool.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "Serilog/2.8.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.8.0.0"
+ }
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Serilog": "2.8.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "3.0.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
+ "assemblyVersion": "3.1.1.0",
+ "fileVersion": "3.1.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "4.1.0.0"
+ }
+ }
+ },
+ "StackExchange.Redis/2.0.593": {
+ "dependencies": {
+ "Pipelines.Sockets.Unofficial": "2.0.17",
+ "System.Diagnostics.PerformanceCounter": "4.5.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Threading.Channels": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/StackExchange.Redis.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.593.37019"
+ }
+ }
+ },
+ "System.Buffers/4.4.0": {},
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {},
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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.ComponentModel.Annotations/4.7.0": {},
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.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.IO.FileSystem/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26814.2"
+ }
+ }
+ },
+ "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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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": "3.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": "3.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": "3.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": "3.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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.2": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "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.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Channels/4.5.0": {},
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ValueTuple/4.5.0": {},
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "dependencies": {
+ "CSRedisCore": "3.2.1",
+ "StackExchange.Redis": "2.0.593",
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.SerialNumber.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.SerialNumber.Test/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "CSRedisCore/3.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iwhYb/SCECCAu2MvXIaxhAdKVC74tbOXuGrhTFhGmI4HvC3O+HJ66bt7v7f3z+Mc5vAUSdPpUQEonrwULC5EIQ==",
+ "path": "csrediscore/3.2.1",
+ "hashPath": "csrediscore.3.2.1.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "hashPath": "microsoft.extensions.logging.console.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "hashPath": "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LQCDUvTHMdDm1TnGyoHbzrnTpFO3+zmem4HjG27zxEnCjJjr3iD/WNAsUxIgHoY2DzUZ6d0LfBhf2LgLvjAnQg==",
+ "path": "pipelines.sockets.unofficial/2.0.17",
+ "hashPath": "pipelines.sockets.unofficial.2.0.17.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "SafeObjectPool/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SKmcLUgmIjsZLptw6DDr7u4zzyhYq914DdTCHQ3WozejagIB7hZJ7XdwiVFkjN6HSRn80MOw00tY+znOTdoZXA==",
+ "path": "safeobjectpool/2.2.0",
+ "hashPath": "safeobjectpool.2.2.0.nupkg.sha512"
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "path": "serilog/2.8.0",
+ "hashPath": "serilog.2.8.0.nupkg.sha512"
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "path": "serilog.extensions.logging/3.0.1",
+ "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "path": "serilog.sinks.console/3.1.1",
+ "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "path": "serilog.sinks.file/4.1.0",
+ "hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512"
+ },
+ "StackExchange.Redis/2.0.593": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmWahP59bHEKCz0HNwsG597YXhOy7AhpSLQ25iVofMXxevMsFhy1pqyhvintvDBQ2jlCWy+GWyF11WRobwXN+g==",
+ "path": "stackexchange.redis/2.0.593",
+ "hashPath": "stackexchange.redis.2.0.593.nupkg.sha512"
+ },
+ "System.Buffers/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
+ "path": "system.buffers/4.4.0",
+ "hashPath": "system.buffers.4.4.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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.EventLog/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JUO5/moXgchWZBMBElgmPebZPKCgwW8kY3dFwVJavaNR2ftcc/YjXXGjOaCjly2KBXT7Ld5l/GTkMVzNv41yZA==",
+ "path": "system.diagnostics.performancecounter/4.5.0",
+ "hashPath": "system.diagnostics.performancecounter.4.5.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.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "path": "system.io.filesystem/4.0.1",
+ "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oY5m31iOIZhvW0C69YTdKQWIbiYjFLgxn9NFXA7XeWD947uEk0zOi9fLbGtYgbs1eF7kTQ4zl9IeGQHthz+m+A==",
+ "path": "system.io.pipelines/4.5.1",
+ "hashPath": "system.io.pipelines.4.5.1.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
+ "path": "system.runtime.compilerservices.unsafe/4.5.2",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.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.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.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.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "path": "system.security.permissions/4.5.0",
+ "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.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.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "hashPath": "system.text.encoding.extensions.4.0.11.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.Channels/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==",
+ "path": "system.threading.channels/4.5.0",
+ "hashPath": "system.threading.channels.4.5.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.Timer/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "path": "system.threading.timer/4.0.1",
+ "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
+ },
+ "System.ValueTuple/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
+ "path": "system.valuetuple/4.5.0",
+ "hashPath": "system.valuetuple.4.5.0.nupkg.sha512"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..a8e8ceba
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.exe b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.exe
new file mode 100644
index 00000000..2c9be3d4
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb
new file mode 100644
index 00000000..deaaeacb
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
new file mode 100644
index 00000000..9468e1b2
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Administrator\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.json
new file mode 100644
index 00000000..a8e7e828
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "net5.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "5.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.dll
new file mode 100644
index 00000000..f343b856
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.pdb
new file mode 100644
index 00000000..fe0dbfe6
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/Win.Abp.SerialNumber.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/appsettings.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/appsettings.json
new file mode 100644
index 00000000..f60c2f5f
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/appsettings.json
@@ -0,0 +1,6 @@
+{
+ "Redis": {
+ "Configuration": "127.0.0.1",
+ "Type": "StackExchangeRedis"
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..263c80b0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..bdcb9c6e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll
new file mode 100644
index 00000000..299a2d71
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 00000000..fd580361
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 00000000..ad8dfe1a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..49662f3a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..adafce57
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1a654d04530100f52d8ecd654e3f9dfc5b5c638e
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache
new file mode 100644
index 00000000..46533a5b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.CopyComplete b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..35242e2e
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+2095721497ba41d4da5fb7bd02b3551dbedca11a
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..a255c236
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt
@@ -0,0 +1,73 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\appsettings.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.exe
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.runtimeconfig.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\CSRedisCore.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\JetBrains.Annotations.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.CommandLine.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.FileExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.UserSecrets.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Physical.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileSystemGlobbing.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Hosting.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Hosting.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Localization.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Localization.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Debug.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.EventSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Context.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Coordination.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Tasks.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Nito.Collections.Deque.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Nito.Disposables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Pipelines.Sockets.Unofficial.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\SafeObjectPool.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Serilog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Serilog.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Serilog.Sinks.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Serilog.Sinks.File.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\StackExchange.Redis.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Diagnostics.PerformanceCounter.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.IO.Pipelines.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Linq.Dynamic.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Security.Permissions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\System.Text.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Volo.Abp.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp3.1\Win.Abp.SerialNumber.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.csproj.CopyComplete
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp3.1\Win.Abp.SerialNumber.Test.genruntimeconfig.cache
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..1f65583f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..be26cdd0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.genruntimeconfig.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.genruntimeconfig.cache
new file mode 100644
index 00000000..bcb3d44f
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.genruntimeconfig.cache
@@ -0,0 +1 @@
+54e70cc76f209add602448f67165d969f59d488e
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb
new file mode 100644
index 00000000..159a6f91
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/Win.Abp.SerialNumber.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/apphost.exe b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/apphost.exe
new file mode 100644
index 00000000..b93a0bab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..49662f3a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..adafce57
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1a654d04530100f52d8ecd654e3f9dfc5b5c638e
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache
new file mode 100644
index 00000000..507ba0c9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..07f87813
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.CopyComplete b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..4ccc3a12
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+6494f1075d95437bd69d4d30a46582cdffe14c51
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..9700c17c
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csproj.FileListAbsolute.txt
@@ -0,0 +1,146 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\appsettings.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.exe
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.runtimeconfig.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\ref\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\CSRedisCore.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\JetBrains.Annotations.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Binder.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.CommandLine.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.FileExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.UserSecrets.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Physical.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileSystemGlobbing.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Debug.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Primitives.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Newtonsoft.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Context.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Coordination.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Tasks.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.Collections.Deque.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.Disposables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Pipelines.Sockets.Unofficial.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\SafeObjectPool.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Sinks.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Sinks.File.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\StackExchange.Redis.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Configuration.ConfigurationManager.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Diagnostics.PerformanceCounter.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.IO.Pipelines.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Linq.Dynamic.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Security.Cryptography.ProtectedData.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Security.Permissions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Volo.Abp.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csproj.CopyComplete
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\ref\Win.Abp.SerialNumber.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.genruntimeconfig.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\appsettings.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.exe
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.deps.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.runtimeconfig.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.runtimeconfig.dev.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\ref\Win.Abp.SerialNumber.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\CSRedisCore.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\JetBrains.Annotations.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Binder.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.CommandLine.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Json.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.UserSecrets.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Physical.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Configuration.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Console.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Debug.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventSource.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Primitives.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Newtonsoft.Json.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Context.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Coordination.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Tasks.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.Collections.Deque.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Nito.Disposables.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Pipelines.Sockets.Unofficial.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\SafeObjectPool.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Extensions.Logging.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Sinks.Console.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Serilog.Sinks.File.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\StackExchange.Redis.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Configuration.ConfigurationManager.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Diagnostics.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Diagnostics.PerformanceCounter.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.IO.Pipelines.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Linq.Dynamic.Core.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Security.Cryptography.ProtectedData.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\System.Security.Permissions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Volo.Abp.Core.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\bin\Debug\netcoreapp5\Win.Abp.SerialNumber.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.AssemblyInfo.cs
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csproj.CoreCompileInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.csproj.CopyComplete
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\ref\Win.Abp.SerialNumber.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.SerialNumber.Test\obj\Debug\netcoreapp5\Win.Abp.SerialNumber.Test.genruntimeconfig.cache
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..b350176f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..a8e8ceba
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.genruntimeconfig.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.genruntimeconfig.cache
new file mode 100644
index 00000000..87dabcca
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.genruntimeconfig.cache
@@ -0,0 +1 @@
+2379ab2a0bf69c4f4ae71e9a4dd54e5faac7c830
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb
new file mode 100644
index 00000000..deaaeacb
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/Win.Abp.SerialNumber.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/apphost.exe b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/apphost.exe
new file mode 100644
index 00000000..d032772a
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/apphost.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll
new file mode 100644
index 00000000..263c80b0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Debug/netcoreapp5/ref/Win.Abp.SerialNumber.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 00000000..ad8dfe1a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..45694298
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..2c74c3b8
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+3546620451f45450b7077bfb569f7c5bea7caee2
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache
new file mode 100644
index 00000000..9c15f2a2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..57e489a8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp3.1/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..45694298
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.SerialNumber.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..2c74c3b8
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+3546620451f45450b7077bfb569f7c5bea7caee2
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache
new file mode 100644
index 00000000..629d799d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..5cebedb1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Release/netcoreapp5/Win.Abp.SerialNumber.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.dgspec.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..de4fbc4c
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.dgspec.json
@@ -0,0 +1,160 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj": {}
+ },
+ "projects": {
+ "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj",
+ "projectName": "Win.Abp.SerialNumber.Test",
+ "projectPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {
+ "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj": {
+ "projectPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": {
+ "target": "Package",
+ "version": "[3.1.2, )"
+ },
+ "Serilog.Extensions.Logging": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Serilog.Sinks.Console": {
+ "target": "Package",
+ "version": "[3.1.1, )"
+ },
+ "Serilog.Sinks.File": {
+ "target": "Package",
+ "version": "[4.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj",
+ "projectName": "Win.Abp.SerialNumber",
+ "projectPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "CSRedisCore": {
+ "target": "Package",
+ "version": "[3.2.1, )"
+ },
+ "StackExchange.Redis": {
+ "target": "Package",
+ "version": "[2.0.593, )"
+ },
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[4.0.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.props b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.props
new file mode 100644
index 00000000..2cfcee78
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\Administrator\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 5.10.0
+
+
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.targets b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.targets
new file mode 100644
index 00000000..53cfaa19
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/Win.Abp.SerialNumber.Test.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.assets.json b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.assets.json
new file mode 100644
index 00000000..10f16053
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.assets.json
@@ -0,0 +1,4656 @@
+{
+ "version": 3,
+ "targets": {
+ "net5.0": {
+ "CSRedisCore/3.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "12.0.3",
+ "SafeObjectPool": "2.2.0",
+ "System.ValueTuple": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/CSRedisCore.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/CSRedisCore.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll": {}
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "SafeObjectPool/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/SafeObjectPool.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/SafeObjectPool.dll": {}
+ }
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {}
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "2.0.0",
+ "Serilog": "2.8.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {}
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "2.5.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "compile": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {}
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "2.5.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {}
+ }
+ },
+ "StackExchange.Redis/2.0.593": {
+ "type": "package",
+ "dependencies": {
+ "Pipelines.Sockets.Unofficial": "2.0.17",
+ "System.Diagnostics.PerformanceCounter": "4.5.0",
+ "System.IO.Pipelines": "4.5.1",
+ "System.Threading.Channels": "4.5.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/StackExchange.Redis.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/StackExchange.Redis.dll": {}
+ }
+ },
+ "System.Buffers/4.4.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ }
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard1.3/System.IO.Pipelines.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.2": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {}
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Channels/4.5.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp2.1/System.Threading.Channels.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Threading.Channels.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.ValueTuple/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v5.0",
+ "dependencies": {
+ "CSRedisCore": "3.2.1",
+ "StackExchange.Redis": "2.0.593",
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "compile": {
+ "bin/placeholder/Win.Abp.SerialNumber.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/Win.Abp.SerialNumber.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "CSRedisCore/3.2.1": {
+ "sha512": "iwhYb/SCECCAu2MvXIaxhAdKVC74tbOXuGrhTFhGmI4HvC3O+HJ66bt7v7f3z+Mc5vAUSdPpUQEonrwULC5EIQ==",
+ "type": "package",
+ "path": "csrediscore/3.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "csrediscore.3.2.1.nupkg.sha512",
+ "csrediscore.nuspec",
+ "lib/net40/CSRedisCore.dll",
+ "lib/net40/CSRedisCore.xml",
+ "lib/net45/CSRedisCore.dll",
+ "lib/net45/CSRedisCore.xml",
+ "lib/netstandard2.0/CSRedisCore.dll",
+ "lib/netstandard2.0/CSRedisCore.xml"
+ ]
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "sha512": "kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2020.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "sha512": "v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
+ "microsoft.extensions.hosting.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "sha512": "PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.dll",
+ "lib/net461/Microsoft.Extensions.Localization.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "sha512": "Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.dll",
+ "lib/net461/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "sha512": "Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
+ "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "sha512": "B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
+ "microsoft.extensions.logging.console.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.console.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "sha512": "dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
+ "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.debug.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "sha512": "839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
+ "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.eventlog.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "sha512": "8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
+ "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.eventsource.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "type": "package",
+ "path": "microsoft.extensions.options/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.dll",
+ "lib/net461/Microsoft.Extensions.Options.xml",
+ "lib/net5.0/Microsoft.Extensions.Options.dll",
+ "lib/net5.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Primitives.dll",
+ "lib/net461/Microsoft.Extensions.Primitives.xml",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "type": "package",
+ "path": "microsoft.win32.registry/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.xml",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/net472/Microsoft.Win32.Registry.dll",
+ "ref/net472/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "Pipelines.Sockets.Unofficial/2.0.17": {
+ "sha512": "LQCDUvTHMdDm1TnGyoHbzrnTpFO3+zmem4HjG27zxEnCjJjr3iD/WNAsUxIgHoY2DzUZ6d0LfBhf2LgLvjAnQg==",
+ "type": "package",
+ "path": "pipelines.sockets.unofficial/2.0.17",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Pipelines.Sockets.Unofficial.dll",
+ "lib/net461/Pipelines.Sockets.Unofficial.xml",
+ "lib/net472/Pipelines.Sockets.Unofficial.dll",
+ "lib/net472/Pipelines.Sockets.Unofficial.xml",
+ "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.dll",
+ "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.xml",
+ "lib/netcoreapp2.2/Pipelines.Sockets.Unofficial.dll",
+ "lib/netcoreapp2.2/Pipelines.Sockets.Unofficial.xml",
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll",
+ "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.xml",
+ "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
+ "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
+ "pipelines.sockets.unofficial.2.0.17.nupkg.sha512",
+ "pipelines.sockets.unofficial.nuspec"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.system/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.4.3.0.nupkg.sha512",
+ "runtime.native.system.nuspec"
+ ]
+ },
+ "SafeObjectPool/2.2.0": {
+ "sha512": "SKmcLUgmIjsZLptw6DDr7u4zzyhYq914DdTCHQ3WozejagIB7hZJ7XdwiVFkjN6HSRn80MOw00tY+znOTdoZXA==",
+ "type": "package",
+ "path": "safeobjectpool/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net40/SafeObjectPool.dll",
+ "lib/net40/SafeObjectPool.xml",
+ "lib/net45/SafeObjectPool.dll",
+ "lib/net45/SafeObjectPool.xml",
+ "lib/netstandard2.0/SafeObjectPool.dll",
+ "lib/netstandard2.0/SafeObjectPool.xml",
+ "safeobjectpool.2.2.0.nupkg.sha512",
+ "safeobjectpool.nuspec"
+ ]
+ },
+ "Serilog/2.8.0": {
+ "sha512": "zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "type": "package",
+ "path": "serilog/2.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.dll",
+ "lib/net45/Serilog.pdb",
+ "lib/net45/Serilog.xml",
+ "lib/net46/Serilog.dll",
+ "lib/net46/Serilog.pdb",
+ "lib/net46/Serilog.xml",
+ "lib/netstandard1.0/Serilog.dll",
+ "lib/netstandard1.0/Serilog.pdb",
+ "lib/netstandard1.0/Serilog.xml",
+ "lib/netstandard1.3/Serilog.dll",
+ "lib/netstandard1.3/Serilog.pdb",
+ "lib/netstandard1.3/Serilog.xml",
+ "lib/netstandard2.0/Serilog.dll",
+ "lib/netstandard2.0/Serilog.pdb",
+ "lib/netstandard2.0/Serilog.xml",
+ "serilog.2.8.0.nupkg.sha512",
+ "serilog.nuspec"
+ ]
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "type": "package",
+ "path": "serilog.extensions.logging/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
+ "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
+ "serilog.extensions.logging.3.0.1.nupkg.sha512",
+ "serilog.extensions.logging.nuspec"
+ ]
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "type": "package",
+ "path": "serilog.sinks.console/3.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.Sinks.Console.dll",
+ "lib/net45/Serilog.Sinks.Console.xml",
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
+ "lib/netstandard1.3/Serilog.Sinks.Console.dll",
+ "lib/netstandard1.3/Serilog.Sinks.Console.xml",
+ "serilog.sinks.console.3.1.1.nupkg.sha512",
+ "serilog.sinks.console.nuspec"
+ ]
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "type": "package",
+ "path": "serilog.sinks.file/4.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.Sinks.File.dll",
+ "lib/net45/Serilog.Sinks.File.pdb",
+ "lib/net45/Serilog.Sinks.File.xml",
+ "lib/netstandard1.3/Serilog.Sinks.File.dll",
+ "lib/netstandard1.3/Serilog.Sinks.File.pdb",
+ "lib/netstandard1.3/Serilog.Sinks.File.xml",
+ "lib/netstandard2.0/Serilog.Sinks.File.dll",
+ "lib/netstandard2.0/Serilog.Sinks.File.pdb",
+ "lib/netstandard2.0/Serilog.Sinks.File.xml",
+ "serilog.sinks.file.4.1.0.nupkg.sha512",
+ "serilog.sinks.file.nuspec"
+ ]
+ },
+ "StackExchange.Redis/2.0.593": {
+ "sha512": "xmWahP59bHEKCz0HNwsG597YXhOy7AhpSLQ25iVofMXxevMsFhy1pqyhvintvDBQ2jlCWy+GWyF11WRobwXN+g==",
+ "type": "package",
+ "path": "stackexchange.redis/2.0.593",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/StackExchange.Redis.dll",
+ "lib/net461/StackExchange.Redis.xml",
+ "lib/net472/StackExchange.Redis.dll",
+ "lib/net472/StackExchange.Redis.xml",
+ "lib/netstandard2.0/StackExchange.Redis.dll",
+ "lib/netstandard2.0/StackExchange.Redis.xml",
+ "stackexchange.redis.2.0.593.nupkg.sha512",
+ "stackexchange.redis.nuspec"
+ ]
+ },
+ "System.Buffers/4.4.0": {
+ "sha512": "AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
+ "type": "package",
+ "path": "system.buffers/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "system.buffers.4.4.0.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Collections.Immutable.dll",
+ "lib/net461/System.Collections.Immutable.xml",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.1.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "type": "package",
+ "path": "system.collections.nongeneric/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "system.collections.nongeneric.nuspec"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "ref/net461/System.Configuration.ConfigurationManager.dll",
+ "ref/net461/System.Configuration.ConfigurationManager.xml",
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "type": "package",
+ "path": "system.console/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/netstandard1.3/System.Console.dll",
+ "ref/netstandard1.3/System.Console.xml",
+ "ref/netstandard1.3/de/System.Console.xml",
+ "ref/netstandard1.3/es/System.Console.xml",
+ "ref/netstandard1.3/fr/System.Console.xml",
+ "ref/netstandard1.3/it/System.Console.xml",
+ "ref/netstandard1.3/ja/System.Console.xml",
+ "ref/netstandard1.3/ko/System.Console.xml",
+ "ref/netstandard1.3/ru/System.Console.xml",
+ "ref/netstandard1.3/zh-hans/System.Console.xml",
+ "ref/netstandard1.3/zh-hant/System.Console.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.console.4.3.0.nupkg.sha512",
+ "system.console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "sha512": "iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "type": "package",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Diagnostics.EventLog.dll",
+ "lib/net461/System.Diagnostics.EventLog.xml",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "ref/net461/System.Diagnostics.EventLog.dll",
+ "ref/net461/System.Diagnostics.EventLog.xml",
+ "ref/net472/System.Diagnostics.EventLog.dll",
+ "ref/net472/System.Diagnostics.EventLog.xml",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
+ "system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "system.diagnostics.eventlog.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "sha512": "JUO5/moXgchWZBMBElgmPebZPKCgwW8kY3dFwVJavaNR2ftcc/YjXXGjOaCjly2KBXT7Ld5l/GTkMVzNv41yZA==",
+ "type": "package",
+ "path": "system.diagnostics.performancecounter/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Diagnostics.PerformanceCounter.dll",
+ "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net461/System.Diagnostics.PerformanceCounter.dll",
+ "ref/net461/System.Diagnostics.PerformanceCounter.xml",
+ "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
+ "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
+ "system.diagnostics.performancecounter.4.5.0.nupkg.sha512",
+ "system.diagnostics.performancecounter.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.0.1": {
+ "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "type": "package",
+ "path": "system.io.filesystem/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.4.0.1.nupkg.sha512",
+ "system.io.filesystem.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.IO.Pipelines/4.5.1": {
+ "sha512": "oY5m31iOIZhvW0C69YTdKQWIbiYjFLgxn9NFXA7XeWD947uEk0zOi9fLbGtYgbs1eF7kTQ4zl9IeGQHthz+m+A==",
+ "type": "package",
+ "path": "system.io.pipelines/4.5.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/System.IO.Pipelines.dll",
+ "lib/netcoreapp2.1/System.IO.Pipelines.xml",
+ "lib/netstandard1.3/System.IO.Pipelines.dll",
+ "lib/netstandard1.3/System.IO.Pipelines.xml",
+ "lib/netstandard2.0/System.IO.Pipelines.dll",
+ "lib/netstandard2.0/System.IO.Pipelines.xml",
+ "ref/netstandard1.3/System.IO.Pipelines.dll",
+ "system.io.pipelines.4.5.1.nupkg.sha512",
+ "system.io.pipelines.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "sha512": "VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.2": {
+ "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "type": "package",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.runtimeinformation.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "type": "package",
+ "path": "system.security.accesscontrol/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/netstandard1.3/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/System.Security.AccessControl.dll",
+ "ref/netstandard1.3/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/de/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/es/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/it/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
+ "ref/netstandard2.0/System.Security.AccessControl.dll",
+ "ref/netstandard2.0/System.Security.AccessControl.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/win/lib/net46/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Permissions/4.5.0": {
+ "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "type": "package",
+ "path": "system.security.permissions/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Security.Permissions.dll",
+ "lib/netstandard2.0/System.Security.Permissions.dll",
+ "ref/net461/System.Security.Permissions.dll",
+ "ref/net461/System.Security.Permissions.xml",
+ "ref/netstandard2.0/System.Security.Permissions.dll",
+ "ref/netstandard2.0/System.Security.Permissions.xml",
+ "system.security.permissions.4.5.0.nupkg.sha512",
+ "system.security.permissions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "type": "package",
+ "path": "system.security.principal.windows/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.xml",
+ "lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.xml",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/System.Security.Principal.Windows.dll",
+ "ref/netstandard1.3/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll",
+ "ref/netstandard2.0/System.Security.Principal.Windows.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.principal.windows.4.7.0.nupkg.sha512",
+ "system.security.principal.windows.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "type": "package",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/netcore50/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.extensions.4.0.11.nupkg.sha512",
+ "system.text.encoding.extensions.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Channels/4.5.0": {
+ "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==",
+ "type": "package",
+ "path": "system.threading.channels/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/System.Threading.Channels.dll",
+ "lib/netcoreapp2.1/System.Threading.Channels.xml",
+ "lib/netstandard1.3/System.Threading.Channels.dll",
+ "lib/netstandard1.3/System.Threading.Channels.xml",
+ "lib/netstandard2.0/System.Threading.Channels.dll",
+ "lib/netstandard2.0/System.Threading.Channels.xml",
+ "system.threading.channels.4.5.0.nupkg.sha512",
+ "system.threading.channels.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Timer/4.0.1": {
+ "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "type": "package",
+ "path": "system.threading.timer/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net451/_._",
+ "lib/portable-net451+win81+wpa81/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net451/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/netcore50/de/System.Threading.Timer.xml",
+ "ref/netcore50/es/System.Threading.Timer.xml",
+ "ref/netcore50/fr/System.Threading.Timer.xml",
+ "ref/netcore50/it/System.Threading.Timer.xml",
+ "ref/netcore50/ja/System.Threading.Timer.xml",
+ "ref/netcore50/ko/System.Threading.Timer.xml",
+ "ref/netcore50/ru/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hans/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hant/System.Threading.Timer.xml",
+ "ref/netstandard1.2/System.Threading.Timer.dll",
+ "ref/netstandard1.2/System.Threading.Timer.xml",
+ "ref/netstandard1.2/de/System.Threading.Timer.xml",
+ "ref/netstandard1.2/es/System.Threading.Timer.xml",
+ "ref/netstandard1.2/fr/System.Threading.Timer.xml",
+ "ref/netstandard1.2/it/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ja/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ko/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ru/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
+ "ref/portable-net451+win81+wpa81/_._",
+ "ref/win81/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.timer.4.0.1.nupkg.sha512",
+ "system.threading.timer.nuspec"
+ ]
+ },
+ "System.ValueTuple/4.5.0": {
+ "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
+ "type": "package",
+ "path": "system.valuetuple/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.ValueTuple.dll",
+ "lib/net461/System.ValueTuple.xml",
+ "lib/net47/System.ValueTuple.dll",
+ "lib/net47/System.ValueTuple.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.ValueTuple.dll",
+ "lib/netstandard1.0/System.ValueTuple.xml",
+ "lib/netstandard2.0/_._",
+ "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
+ "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net461/System.ValueTuple.dll",
+ "ref/net47/System.ValueTuple.dll",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard2.0/_._",
+ "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.valuetuple.4.5.0.nupkg.sha512",
+ "system.valuetuple.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "sha512": "ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "type": "package",
+ "path": "volo.abp.core/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "lib/netstandard2.0/Volo.Abp.Core.xml",
+ "volo.abp.core.4.0.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Win.Abp.SerialNumber/1.0.0": {
+ "type": "project",
+ "path": "../Win.Abp.SerialNumber/Win.Abp.SerialNumber.csproj",
+ "msbuildProject": "../Win.Abp.SerialNumber/Win.Abp.SerialNumber.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net5.0": [
+ "Microsoft.Extensions.Hosting >= 3.1.2",
+ "Serilog.Extensions.Logging >= 3.0.1",
+ "Serilog.Sinks.Console >= 3.1.1",
+ "Serilog.Sinks.File >= 4.1.0",
+ "Win.Abp.SerialNumber >= 1.0.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\Administrator\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj",
+ "projectName": "Win.Abp.SerialNumber.Test",
+ "projectPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {
+ "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj": {
+ "projectPath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber\\Win.Abp.SerialNumber.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": {
+ "target": "Package",
+ "version": "[3.1.2, )"
+ },
+ "Serilog.Extensions.Logging": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Serilog.Sinks.Console": {
+ "target": "Package",
+ "version": "[3.1.1, )"
+ },
+ "Serilog.Sinks.File": {
+ "target": "Package",
+ "version": "[4.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.nuget.cache b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.nuget.cache
new file mode 100644
index 00000000..1bd4be0a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber.Test/obj/project.nuget.cache
@@ -0,0 +1,102 @@
+{
+ "version": 2,
+ "dgSpecHash": "+jAq0m/Tfd5uNyx/BQeV0QtShJg9kzkCRFoFkmeswIY/fqMgE6ZGZL+GZ7/06UhE7N2JpDofkIAS49cyqaHxYw==",
+ "success": true,
+ "projectFilePath": "C:\\wms123\\src\\Shared\\Win.Abp\\Win.Abp.SerialNumber.Test\\Win.Abp.SerialNumber.Test.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\Administrator\\.nuget\\packages\\csrediscore\\3.2.1\\csrediscore.3.2.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting\\3.1.2\\microsoft.extensions.hosting.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.configuration\\3.1.2\\microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.console\\3.1.2\\microsoft.extensions.logging.console.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.debug\\3.1.2\\microsoft.extensions.logging.debug.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\3.1.2\\microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\3.1.2\\microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\pipelines.sockets.unofficial\\2.0.17\\pipelines.sockets.unofficial.2.0.17.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\safeobjectpool\\2.2.0\\safeobjectpool.2.2.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.8.0\\serilog.2.8.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.extensions.logging\\3.0.1\\serilog.extensions.logging.3.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\stackexchange.redis\\2.0.593\\stackexchange.redis.2.0.593.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.4.0\\system.buffers.4.4.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.eventlog\\4.7.0\\system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.5.0\\system.diagnostics.performancecounter.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\4.5.1\\system.io.pipelines.4.5.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.2\\system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorModule.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorModule.cs
new file mode 100644
index 00000000..2992dc88
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorModule.cs
@@ -0,0 +1,36 @@
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Options;
+using Volo.Abp.Modularity;
+using Microsoft.Extensions.Hosting;
+
+
+namespace Win.Abp.SerialNumber
+{
+ public class AbpSerialNumberGeneratorModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ var configuration = context.Services.GetConfiguration();
+
+ ConfigureRedis(context, configuration);
+ }
+
+ private void ConfigureRedis(ServiceConfigurationContext context, IConfiguration configuration)
+ {
+ var redisConnString = configuration["Redis:Configuration"];
+ Configure(options => { options.RedisConnectionString = redisConnString; });
+ var redisType = configuration["Redis:Type"];
+ switch (redisType)
+ {
+ case "CsRedis":
+ context.Services.AddSingleton(typeof(ISerialNumberGenerator), typeof(CsRedisSerialNumberGenerator));
+ break;
+ case "StackExchangeRedis":
+ context.Services.AddSingleton(typeof(ISerialNumberGenerator),
+ typeof(StackExchangeRedisSerialNumberGenerator));
+ break;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorOptions.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorOptions.cs
new file mode 100644
index 00000000..a41944d5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/AbpSerialNumberGeneratorOptions.cs
@@ -0,0 +1,56 @@
+using System.Dynamic;
+
+namespace Win.Abp.SerialNumber
+{
+ public class AbpSerialNumberGeneratorOptions
+ {
+ public string RedisConnectionString { get; set; }
+
+ public string Prefix { get; set; }
+
+ public string Postfix { get; set; }
+
+ public string DateTimeFormat { get; set; }
+
+ public string Separator { get; set; }
+
+ public int? NumberCount { get; set; }
+
+ public int? Step { get; set; }
+ public string GetDefaultPrefix()
+ {
+ return Prefix ?? string.Empty;
+ }
+
+ public string GetDefaultDateTimeFormat()
+ {
+ return DateTimeFormat ?? "yyyyMMdd";
+ }
+
+ public int GetDefaultNumberCount()
+ {
+ return NumberCount ?? 6;
+ }
+
+ public string GetDefaultRedisConnectionString()
+ {
+ return RedisConnectionString?? "127.0.0.1";
+ }
+
+ public int GetDefaultStep()
+ {
+ return Step??1;
+ }
+
+ public string GetDefaultPostfix()
+ {
+ return Postfix ?? string.Empty;
+ }
+
+ public string GetDefaultSeparator()
+ {
+ return Separator ?? string.Empty;
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/CsRedisSerialNumberGenerator.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/CsRedisSerialNumberGenerator.cs
new file mode 100644
index 00000000..89c8ad3b
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/CsRedisSerialNumberGenerator.cs
@@ -0,0 +1,82 @@
+using System;
+using System.Threading.Tasks;
+using CSRedis;
+using Microsoft.Extensions.Options;
+using Volo.Abp.DependencyInjection;
+
+namespace Win.Abp.SerialNumber
+{
+
+ public class CsRedisSerialNumberGenerator : ISerialNumberGenerator
+ {
+ private readonly CSRedisClient _csRedis;
+
+ private readonly string _redisConnectionString;
+ private readonly string _prefix = string.Empty;
+ private readonly string _dateTimeFormat = "yyyyMMdd";
+ private readonly int _numberCount = 6;
+ private readonly int _step = 1;
+ private readonly string _separator=string.Empty;
+ public AbpSerialNumberGeneratorOptions Options { get; }
+
+ protected CsRedisSerialNumberGenerator() { }
+
+ public CsRedisSerialNumberGenerator(IOptions options)
+ {
+ Options = options.Value;
+ this._prefix = options.Value.GetDefaultPrefix();
+ this._dateTimeFormat = options.Value.GetDefaultDateTimeFormat();
+ this._separator = options.Value.GetDefaultSeparator();
+ this._numberCount = options.Value.GetDefaultNumberCount();
+ this._step = options.Value.GetDefaultStep();
+ _redisConnectionString = options.Value.RedisConnectionString;
+ _csRedis = new CSRedisClient(_redisConnectionString);
+ RedisHelper.Initialization(_csRedis);
+
+ }
+
+ public async Task InitAsync(DateTime time, string prefix = null)
+ {
+ return await SetAsync(time,prefix);
+ }
+
+ public async Task CreateAsync(DateTime time, string datetimeFormat = null, string prefix = null,
+ string separator = null, int numberCount = 0, int step = 0)
+ {
+ if (prefix == null) prefix = _prefix;
+ if (separator == null) separator = _separator;
+ if (datetimeFormat == null) datetimeFormat = _dateTimeFormat;
+ if (numberCount == 0) numberCount = _numberCount;
+ if (step == 0) step = _step;
+
+ var serial = await GetLastSerialAsync(prefix, time, step);
+
+ var serialNumberString= $"{prefix}{separator}" +
+ $"{time.ToString(datetimeFormat)}{separator}" +
+ $"{serial.ToString().PadLeft(numberCount, '0')}" ;
+ return serialNumberString;
+ }
+
+ public async Task SetAsync(DateTime time, string prefix = null, int serial = 0)
+ {
+ var key = GetSerialNumberKey(prefix, time);
+ await _csRedis.SetAsync(key, serial);
+ return await _csRedis.GetAsync(key);
+ }
+
+
+ private async Task GetLastSerialAsync(string prefix, DateTime time, int step)
+ {
+ var key = GetSerialNumberKey(prefix, time);
+ var serial = await _csRedis.IncrByAsync(key, step);
+ Console.WriteLine($"CsRedis:{key} {serial}");
+ return serial;
+ }
+
+ private static string GetSerialNumberKey(string prefix, DateTime time)
+ {
+ var key = $"{prefix}:{time:yyyyMMdd}";
+ return key;
+ }
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/ISerialNumberGenerator.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/ISerialNumberGenerator.cs
new file mode 100644
index 00000000..43b32c81
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/ISerialNumberGenerator.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Threading.Tasks;
+using Volo.Abp.DependencyInjection;
+
+namespace Win.Abp.SerialNumber
+{
+ public interface ISerialNumberGenerator: ISingletonDependency
+ {
+ Task InitAsync(DateTime time, string prefix = null);
+
+ Task CreateAsync(DateTime time,string datetimeFormat = null, string prefix = null, string separator = null,
+ int numberCount = 0, int step = 0 );
+
+ Task SetAsync(DateTime time, string prefix = null,int serial=0);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/StackExchangeRedisSerialNumberGenerator.cs b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/StackExchangeRedisSerialNumberGenerator.cs
new file mode 100644
index 00000000..24de38f0
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/StackExchangeRedisSerialNumberGenerator.cs
@@ -0,0 +1,81 @@
+using System;
+using System.Threading.Tasks;
+using Microsoft.Extensions.Options;
+using StackExchange.Redis;
+
+namespace Win.Abp.SerialNumber
+{
+ public class StackExchangeRedisSerialNumberGenerator:ISerialNumberGenerator
+ {
+ private readonly ConnectionMultiplexer _redis;
+ private readonly IDatabase _db;
+ private readonly string _prefix = string.Empty;
+ private readonly string _dateTimeFormat = "yyyyMMdd";
+ private readonly int _numberCount = 6;
+ private readonly int _step = 1;
+ private readonly string _separator = string.Empty;
+ public AbpSerialNumberGeneratorOptions Options { get; }
+
+ protected StackExchangeRedisSerialNumberGenerator() { }
+
+ public StackExchangeRedisSerialNumberGenerator(IOptions options)
+ {
+ Options = options.Value;
+ this._prefix = options.Value.GetDefaultPrefix();
+ this._dateTimeFormat = options.Value.GetDefaultDateTimeFormat();
+ this._separator = options.Value.GetDefaultSeparator();
+ this._numberCount = options.Value.GetDefaultNumberCount();
+ this._step = options.Value.GetDefaultStep();
+ var redisConnectionString = options.Value.RedisConnectionString;
+
+ _redis = ConnectionMultiplexer.Connect(redisConnectionString);
+ _db = _redis.GetDatabase();
+
+ }
+
+ public async Task InitAsync(DateTime time, string prefix = null)
+ {
+ return await SetAsync(time, prefix);
+ }
+
+ public async Task CreateAsync(DateTime time, string datetimeFormat = null, string prefix = null,
+ string separator = null, int numberCount = 0, int step = 0)
+ {
+ if (prefix == null) prefix = _prefix;
+ if (separator == null) separator = _separator;
+ if (datetimeFormat == null) datetimeFormat = _dateTimeFormat;
+ if (numberCount == 0) numberCount = _numberCount;
+ if (step == 0) step = _step;
+
+ var serial = await GetLastSerialAsync(prefix, time, step);
+
+ var serialNumberString = $"{prefix}{separator}" +
+ $"{time.ToString(datetimeFormat)}{separator}" +
+ $"{serial.ToString().PadLeft(numberCount, '0')}";
+ return serialNumberString;
+ }
+
+ public async Task SetAsync(DateTime time, string prefix = null, int serial = 0)
+ {
+ var key = GetSerialNumberKey(prefix, time);
+ await _db.StringSetAsync(key, serial);
+ return await _db.StringGetAsync(key);
+ }
+
+
+ private async Task GetLastSerialAsync(string prefix, DateTime time, int step)
+ {
+ var key = GetSerialNumberKey(prefix, time);
+ var serial = await _db.StringIncrementAsync(prefix, step);
+ Console.WriteLine($"StackExchangeRedis:{key} {serial}");
+
+ return serial;
+ }
+
+ private static string GetSerialNumberKey(string prefix, DateTime time)
+ {
+ var key = $"{prefix}:{time:yyyyMMdd}";
+ return key;
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/Win.Abp.SerialNumber.csproj b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/Win.Abp.SerialNumber.csproj
new file mode 100644
index 00000000..ed40a3c7
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.SerialNumber/Win.Abp.SerialNumber.csproj
@@ -0,0 +1,12 @@
+
+
+
+ netcoreapp5
+
+
+
+
+
+
+
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Program.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Program.cs
new file mode 100644
index 00000000..7090796a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Program.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Threading.Tasks;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Win.Abp;
+using Serilog;
+using Serilog.Events;
+
+namespace Win.Abp.Snowflakes.Test
+{
+ class Program
+ {
+ static async Task Main(string[] args)
+ {
+ Log.Logger = new LoggerConfiguration()
+ .MinimumLevel.Debug()
+ .MinimumLevel.Override("Microsoft", LogEventLevel.Information)
+ .Enrich.FromLogContext()
+ .WriteTo.Console()
+ .WriteTo.File("Logs/logs.txt")
+ .CreateLogger();
+
+ Log.Information("Starting Snowflakes.Test...");
+ await CreateHostBuilder(args).RunConsoleAsync();
+ }
+
+ public static IHostBuilder CreateHostBuilder(string[] args) =>
+ Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args)
+ .ConfigureServices((hostContext, services) =>
+ {
+
+ services.AddHostedService();
+ });
+ }
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestHostedService.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestHostedService.cs
new file mode 100644
index 00000000..c1cb7df4
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestHostedService.cs
@@ -0,0 +1,29 @@
+using System.Threading;
+using System.Threading.Tasks;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Volo.Abp;
+
+namespace Win.Abp.Snowflakes.Test
+{
+ public class SnowflakesTestHostedService : IHostedService
+ {
+ public async Task StartAsync(CancellationToken cancellationToken)
+ {
+ using (var application = AbpApplicationFactory.Create(options =>
+ {
+ options.Services.AddLogging(loggingBuilder => { });
+ }))
+ {
+ application.Initialize();
+
+ var demo = application.ServiceProvider.GetRequiredService();
+ await demo.RunAsync();
+
+ application.Shutdown();
+ }
+ }
+
+ public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestModule.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestModule.cs
new file mode 100644
index 00000000..116775bc
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestModule.cs
@@ -0,0 +1,20 @@
+using Volo.Abp.Modularity;
+using Win.Abp.Snowflakes;
+
+namespace Win.Abp.Snowflakes.Test
+{
+ [DependsOn(
+ typeof(AbpSnowflakeGeneratorModule)
+ )]
+ public class SnowflakesTestModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ Configure(options =>
+ {
+ options.DefaultDatacenterId = 2;
+ options.DefaultWorkerId = 4;
+ });
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestService.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestService.cs
new file mode 100644
index 00000000..114b1886
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/SnowflakesTestService.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Threading.Tasks;
+using Microsoft.Extensions.Options;
+using Serilog;
+using Serilog.Core;
+using Volo.Abp.DependencyInjection;
+using Win.Abp.Snowflakes;
+
+namespace Win.Abp.Snowflakes.Test
+{
+ public class SnowflakesTestService : ITransientDependency
+ {
+ private ISnowflakeIdGenerator _snowflakeIdGenerator;
+ private AbpSnowflakeIdGeneratorOptions _options;
+
+ public SnowflakesTestService(
+ ISnowflakeIdGenerator snowflakeIdGenerator,
+ IOptions options
+ )
+ {
+ _snowflakeIdGenerator = snowflakeIdGenerator;
+ _options = options.Value;
+ }
+
+ public async Task RunAsync()
+ {
+ Log.Information("SnowflakeId Generator Test");
+ await TestSnowflakeIdGenerator();
+ }
+
+ private async Task TestSnowflakeIdGenerator()
+ {
+ for (var i = 0; i < 10; i++)
+ {
+ var id = _snowflakeIdGenerator.Create();
+ var info = $"{_options.DefaultDatacenterId} {_options.DefaultWorkerId} {DateTime.Now} {id}";
+ Log.Information(info);
+ await Task.Delay(100);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Win.Abp.Snowflakes.Test.csproj b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Win.Abp.Snowflakes.Test.csproj
new file mode 100644
index 00000000..ba2a8362
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/Win.Abp.Snowflakes.Test.csproj
@@ -0,0 +1,19 @@
+
+
+
+ Exe
+ netcoreapp5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll
new file mode 100644
index 00000000..3ca681f9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/JetBrains.Annotations.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 00000000..2febeaa7
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 00000000..09094973
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll
new file mode 100644
index 00000000..b935d270
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
new file mode 100644
index 00000000..200aa3ce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 00000000..439bbed2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 00000000..562e207d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll
new file mode 100644
index 00000000..6869a5a1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 00000000..97c2a378
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 00000000..25c33e2f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 00000000..605f4a74
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 00000000..2c15f955
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 00000000..92169edf
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 00000000..7c67a8fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 00000000..e7653fe0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll
new file mode 100644
index 00000000..2a9c9e9e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll
new file mode 100644
index 00000000..5c2c8e68
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll
new file mode 100644
index 00000000..73c60ea6
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Localization.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 00000000..ff460c4b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll
new file mode 100644
index 00000000..0eb6f3ef
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll
new file mode 100644
index 00000000..d78e41ca
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 00000000..214f9f38
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll
new file mode 100644
index 00000000..60232148
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll
new file mode 100644
index 00000000..59cfe857
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
new file mode 100644
index 00000000..9feaffab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll
new file mode 100644
index 00000000..d45d4475
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
new file mode 100644
index 00000000..35d35129
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 00000000..c6d622a2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll
new file mode 100644
index 00000000..e52ff143
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Context.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll
new file mode 100644
index 00000000..4bde40dd
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Coordination.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll
new file mode 100644
index 00000000..fc52a84c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.AsyncEx.Tasks.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll
new file mode 100644
index 00000000..9cc4799b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Collections.Deque.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll
new file mode 100644
index 00000000..602f7f4c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Nito.Disposables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll
new file mode 100644
index 00000000..fb8ef880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll
new file mode 100644
index 00000000..ffb8d8a4
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll
new file mode 100644
index 00000000..dd89393c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.Sinks.File.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.dll
new file mode 100644
index 00000000..04967533
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Serilog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
new file mode 100644
index 00000000..a2a4cd26
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 00000000..bace6df8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..ce891a85
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll
new file mode 100644
index 00000000..76b82e19
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Linq.Dynamic.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll
new file mode 100644
index 00000000..fee523ab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/System.Text.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll
new file mode 100644
index 00000000..f0a4f045
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Volo.Abp.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.deps.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.deps.json
new file mode 100644
index 00000000..a51ee3ff
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.deps.json
@@ -0,0 +1,1415 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "Win.Abp.Snowflakes.Test/1.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": "3.1.2",
+ "Serilog.Extensions.Logging": "3.0.1",
+ "Serilog.Sinks.Console": "3.1.1",
+ "Serilog.Sinks.File": "4.1.0",
+ "Win.Abp.Snowflakes": "1.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.Test.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "System.Text.Json": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "Serilog/2.8.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.8.0.0"
+ }
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Serilog": "2.8.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "3.0.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
+ "assemblyVersion": "3.1.1.0",
+ "fileVersion": "3.1.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "4.1.0.0"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.20.21406"
+ }
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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.ComponentModel.Annotations/4.7.0": {},
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/5.0.0": {
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.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.IO.FileSystem/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "dependencies": {
+ "System.Runtime": "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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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": "3.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": "3.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": "3.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": "3.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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "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.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Json/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes.Test/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "hashPath": "microsoft.extensions.logging.console.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "hashPath": "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "path": "serilog/2.8.0",
+ "hashPath": "serilog.2.8.0.nupkg.sha512"
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "path": "serilog.extensions.logging/3.0.1",
+ "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "path": "serilog.sinks.console/3.1.1",
+ "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "path": "serilog.sinks.file/4.1.0",
+ "hashPath": "serilog.sinks.file.4.1.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
+ "path": "system.diagnostics.diagnosticsource/5.0.0",
+ "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "hashPath": "system.diagnostics.eventlog.4.7.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.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "path": "system.io.filesystem/4.0.1",
+ "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "hashPath": "system.io.filesystem.primitives.4.0.1.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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.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.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.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.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.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.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
+ },
+ "System.Text.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
+ "path": "system.text.json/5.0.0",
+ "hashPath": "system.text.json.5.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.Timer/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "path": "system.threading.timer/4.0.1",
+ "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..c1a3168a
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.exe b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.exe
new file mode 100644
index 00000000..1d37b486
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb
new file mode 100644
index 00000000..4e2eaeb8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
new file mode 100644
index 00000000..376e9695
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Administrator\\.nuget\\packages",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.json
new file mode 100644
index 00000000..bc456d78
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "3.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..8b02a6fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..1dd1cf24
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..bdcb9c6e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll
new file mode 100644
index 00000000..3ca681f9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/JetBrains.Annotations.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 00000000..2febeaa7
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 00000000..09094973
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll
new file mode 100644
index 00000000..b935d270
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.CommandLine.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
new file mode 100644
index 00000000..200aa3ce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll
new file mode 100644
index 00000000..439bbed2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.FileExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll
new file mode 100644
index 00000000..562e207d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.Json.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll
new file mode 100644
index 00000000..6869a5a1
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.UserSecrets.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 00000000..97c2a378
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 00000000..25c33e2f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 00000000..d98bdc9c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100644
index 00000000..2c15f955
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll
new file mode 100644
index 00000000..92169edf
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileProviders.Physical.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll
new file mode 100644
index 00000000..7c67a8fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.FileSystemGlobbing.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100644
index 00000000..e7653fe0
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll
new file mode 100644
index 00000000..2a9c9e9e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Hosting.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll
new file mode 100644
index 00000000..7d2ef38d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll
new file mode 100644
index 00000000..ef5fd76f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Localization.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 00000000..ff460c4b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll
new file mode 100644
index 00000000..0eb6f3ef
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Configuration.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll
new file mode 100644
index 00000000..d78e41ca
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll
new file mode 100644
index 00000000..214f9f38
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.Debug.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll
new file mode 100644
index 00000000..60232148
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll
new file mode 100644
index 00000000..59cfe857
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.EventSource.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll
new file mode 100644
index 00000000..9feaffab
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll
new file mode 100644
index 00000000..d45d4475
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll
new file mode 100644
index 00000000..100840ad
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Options.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 00000000..c6d622a2
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Microsoft.Extensions.Primitives.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll
new file mode 100644
index 00000000..e52ff143
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Context.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll
new file mode 100644
index 00000000..4bde40dd
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Coordination.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll
new file mode 100644
index 00000000..fc52a84c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.AsyncEx.Tasks.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll
new file mode 100644
index 00000000..9cc4799b
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Collections.Deque.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll
new file mode 100644
index 00000000..602f7f4c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Nito.Disposables.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll
new file mode 100644
index 00000000..fb8ef880
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Extensions.Logging.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll
new file mode 100644
index 00000000..ffb8d8a4
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.Console.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll
new file mode 100644
index 00000000..dd89393c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.Sinks.File.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.dll
new file mode 100644
index 00000000..04967533
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Serilog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..ce891a85
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll
new file mode 100644
index 00000000..76b82e19
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/System.Linq.Dynamic.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll
new file mode 100644
index 00000000..f0a4f045
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Volo.Abp.Core.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.deps.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.deps.json
new file mode 100644
index 00000000..3fe9c10e
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.deps.json
@@ -0,0 +1,1376 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "Win.Abp.Snowflakes.Test/1.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": "3.1.2",
+ "Serilog.Extensions.Logging": "3.0.1",
+ "Serilog.Sinks.Console": "3.1.1",
+ "Serilog.Sinks.File": "4.1.0",
+ "Win.Abp.Snowflakes": "1.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.Test.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "Serilog/2.8.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.8.0.0"
+ }
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Serilog": "2.8.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "3.0.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
+ "assemblyVersion": "3.1.1.0",
+ "fileVersion": "3.1.1.0"
+ }
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "dependencies": {
+ "Serilog": "2.8.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "4.1.0.0"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {},
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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.ComponentModel.Annotations/4.7.0": {},
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.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.IO.FileSystem/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "dependencies": {
+ "System.Runtime": "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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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": "3.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": "3.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": "3.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": "3.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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "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.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.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": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes.Test/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "hashPath": "microsoft.extensions.logging.console.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "hashPath": "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "hashPath": "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "path": "serilog/2.8.0",
+ "hashPath": "serilog.2.8.0.nupkg.sha512"
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "path": "serilog.extensions.logging/3.0.1",
+ "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "path": "serilog.sinks.console/3.1.1",
+ "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "path": "serilog.sinks.file/4.1.0",
+ "hashPath": "serilog.sinks.file.4.1.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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.EventLog/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "hashPath": "system.diagnostics.eventlog.4.7.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.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "path": "system.io.filesystem/4.0.1",
+ "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "hashPath": "system.io.filesystem.primitives.4.0.1.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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.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.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.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.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.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.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "hashPath": "system.text.encoding.extensions.4.0.11.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.Timer/4.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "path": "system.threading.timer/4.0.1",
+ "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..607a8f95
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.exe b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.exe
new file mode 100644
index 00000000..73ff5e16
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb
new file mode 100644
index 00000000..d5c416af
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
new file mode 100644
index 00000000..9468e1b2
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Administrator\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.json
new file mode 100644
index 00000000..a8e7e828
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "net5.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "5.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..897079da
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..9484eb3f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..552a0d22
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll
new file mode 100644
index 00000000..bdcb9c6e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/bin/Debug/netcoreapp5/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 00000000..ad8dfe1a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..84bc13ac
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5a64bffb
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1b2b47ff54b072a90e9d7180626013c7277f9910
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache
new file mode 100644
index 00000000..6b521705
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.CopyComplete b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..2f4a1bde
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+9c02c67aa715111ffacb2e0e7256d65f97d45065
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..0902fde8
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt
@@ -0,0 +1,60 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.exe
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.runtimeconfig.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\JetBrains.Annotations.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.CommandLine.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.FileExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.UserSecrets.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Physical.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileSystemGlobbing.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Hosting.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Hosting.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Localization.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Localization.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Debug.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.EventSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Context.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Coordination.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Nito.AsyncEx.Tasks.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Nito.Collections.Deque.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Nito.Disposables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Serilog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Serilog.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Serilog.Sinks.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Serilog.Sinks.File.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\System.Linq.Dynamic.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\System.Text.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Volo.Abp.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp3.1\Win.Abp.Snowflakes.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.csproj.CopyComplete
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp3.1\Win.Abp.Snowflakes.Test.genruntimeconfig.cache
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..f31ba489
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..c1a3168a
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.genruntimeconfig.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.genruntimeconfig.cache
new file mode 100644
index 00000000..b46b7c38
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.genruntimeconfig.cache
@@ -0,0 +1 @@
+14f92ff8c8e043d71b0dad541db81f16ffc6ffb2
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb
new file mode 100644
index 00000000..4e2eaeb8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/Win.Abp.Snowflakes.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/apphost.exe b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/apphost.exe
new file mode 100644
index 00000000..1d37b486
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..84bc13ac
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5a64bffb
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1b2b47ff54b072a90e9d7180626013c7277f9910
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache
new file mode 100644
index 00000000..be26fd54
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..d3c1eafe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.CopyComplete b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..648fe879
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+86802f339edd270e67f6e01084cfef5fbe44fbbf
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..75f46098
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csproj.FileListAbsolute.txt
@@ -0,0 +1,120 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.exe
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.runtimeconfig.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\JetBrains.Annotations.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Binder.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.CommandLine.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.FileExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Json.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.UserSecrets.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Physical.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileSystemGlobbing.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Abstractions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Configuration.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Debug.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventSource.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Primitives.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Context.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Coordination.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Tasks.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.Collections.Deque.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.Disposables.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Extensions.Logging.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Sinks.Console.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Sinks.File.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\System.Linq.Dynamic.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Volo.Abp.Core.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csproj.CopyComplete
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.Test.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.genruntimeconfig.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.exe
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.deps.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.runtimeconfig.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.runtimeconfig.dev.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\JetBrains.Annotations.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Binder.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.CommandLine.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.FileExtensions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.Json.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Configuration.UserSecrets.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileProviders.Physical.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.FileSystemGlobbing.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Hosting.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Localization.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Abstractions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Configuration.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Console.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.Debug.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Logging.EventSource.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Microsoft.Extensions.Primitives.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Context.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Coordination.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.AsyncEx.Tasks.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.Collections.Deque.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Nito.Disposables.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Extensions.Logging.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Sinks.Console.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Serilog.Sinks.File.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\System.Diagnostics.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\System.Linq.Dynamic.Core.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Volo.Abp.Core.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.AssemblyInfo.cs
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csproj.CoreCompileInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.csproj.CopyComplete
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.Test.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes.Test\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.Test.genruntimeconfig.cache
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..4daf34a9
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..607a8f95
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.genruntimeconfig.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.genruntimeconfig.cache
new file mode 100644
index 00000000..caf9c49e
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.genruntimeconfig.cache
@@ -0,0 +1 @@
+03a559a72b4a64af587dbb0722da0e08c9bf2a82
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb
new file mode 100644
index 00000000..d5c416af
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.Test.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/apphost.exe b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/apphost.exe
new file mode 100644
index 00000000..026eebb3
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/apphost.exe differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll
new file mode 100644
index 00000000..552a0d22
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.Test.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 00000000..ad8dfe1a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..7b5bcd0e
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..91911007
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+f2ba08e373f10044117eb2092081dd460718d35e
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache
new file mode 100644
index 00000000..70b9ed16
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..57e489a8
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp3.1/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
new file mode 100644
index 00000000..7b5bcd0e
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..91911007
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+f2ba08e373f10044117eb2092081dd460718d35e
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache
new file mode 100644
index 00000000..8eebc83c
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache
new file mode 100644
index 00000000..10d41e78
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Release/netcoreapp5/Win.Abp.Snowflakes.Test.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.dgspec.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..2f97fca4
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.dgspec.json
@@ -0,0 +1,153 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj": {}
+ },
+ "projects": {
+ "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj",
+ "projectName": "Win.Abp.Snowflakes.Test",
+ "projectPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {
+ "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {
+ "projectPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": {
+ "target": "Package",
+ "version": "[3.1.2, )"
+ },
+ "Serilog.Extensions.Logging": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Serilog.Sinks.Console": {
+ "target": "Package",
+ "version": "[3.1.1, )"
+ },
+ "Serilog.Sinks.File": {
+ "target": "Package",
+ "version": "[4.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "projectName": "Win.Abp.Snowflakes",
+ "projectPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[4.0.0, )"
+ }
+ },
+ "imports": [
+ "portable-net45+win8+wp8+wpa81",
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.props b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.props
new file mode 100644
index 00000000..2cfcee78
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\Administrator\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 5.10.0
+
+
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.targets b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.targets
new file mode 100644
index 00000000..53cfaa19
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/Win.Abp.Snowflakes.Test.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.assets.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.assets.json
new file mode 100644
index 00000000..54ba80f7
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.assets.json
@@ -0,0 +1,4128 @@
+{
+ "version": 3,
+ "targets": {
+ "net5.0": {
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Logging.Console": "3.1.2",
+ "Microsoft.Extensions.Logging.Debug": "3.1.2",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.2",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "System.Diagnostics.EventLog": "4.7.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "3.1.2"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Serilog/2.8.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.dll": {}
+ }
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": "2.0.0",
+ "Serilog": "2.8.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {}
+ }
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "2.5.0",
+ "System.Console": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
+ },
+ "compile": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {}
+ }
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "2.5.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Text.Encoding.Extensions": "4.0.11",
+ "System.Threading.Timer": "4.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Serilog.Sinks.File.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem.Primitives": "4.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Runtime.Handles": "4.0.1",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading.Tasks": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0",
+ "System.Text.Encoding": "4.0.11"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1",
+ "Microsoft.NETCore.Targets": "1.0.1",
+ "System.Runtime": "4.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v5.0",
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "compile": {
+ "bin/placeholder/Win.Abp.Snowflakes.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/Win.Abp.Snowflakes.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "JetBrains.Annotations/2020.1.0": {
+ "sha512": "kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2020.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Hosting/3.1.2": {
+ "sha512": "v/7IgJwnb/eRVz7rH7nGrsFkDm9nLFmfqwzcjzTb1ZYC4ktF+rcNZN3zMEBqKk4fa6yLvWf/fdc4JNKosZbeCQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
+ "microsoft.extensions.hosting.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "sha512": "PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.dll",
+ "lib/net461/Microsoft.Extensions.Localization.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "sha512": "Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.dll",
+ "lib/net461/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.2": {
+ "sha512": "Bci7HS4W4zvY0UPj/K0rVjq4UrNOB7TJyuXr4CD2L2Hdau8UIh7BpYvF6bijMXT+EyXneEb8bRdoewY/AV3GDA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
+ "microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.2": {
+ "sha512": "B0NYqwMDZ/0PwK0SWEoOIVEz8nEIwDmeuARFJxVzVHAvS5jwmHmbyEEzjoE/HMyhTSzktfihW/rnvGPwqCtveQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.console/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
+ "microsoft.extensions.logging.console.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.console.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.2": {
+ "sha512": "dEBzfBfaeJuzK9tc5gAz2mq8XyK/nG8O/nFzYvj3Xpai8Jg2+ATfod9rOfEiLsKuxQBJphS1Uku5Yi0178R30Q==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.debug/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
+ "microsoft.extensions.logging.debug.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.debug.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.2": {
+ "sha512": "839T7wGsE+f4CnBwiA82MMnnZf1B1cUBK2PYA8IcysOXsCrFzlM+sUwfzcAySXTNDG8IeMBBi0DZMLWMXhTbjQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.eventlog/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
+ "microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.eventlog.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.2": {
+ "sha512": "8Y/VYarFYNZxXNi5cHp49VTuPyV3+Q2U7a9tCuS1TTBMBtQ+M5RNucQGrqquZ2DD9kdhEwrSThwzzjjN2nn0fw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.eventsource/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
+ "microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.eventsource.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "type": "package",
+ "path": "microsoft.extensions.options/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.dll",
+ "lib/net461/Microsoft.Extensions.Options.xml",
+ "lib/net5.0/Microsoft.Extensions.Options.dll",
+ "lib/net5.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Extensions.Primitives.dll",
+ "lib/net461/Microsoft.Extensions.Primitives.xml",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "type": "package",
+ "path": "microsoft.win32.registry/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.xml",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/net472/Microsoft.Win32.Registry.dll",
+ "ref/net472/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.system/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.4.3.0.nupkg.sha512",
+ "runtime.native.system.nuspec"
+ ]
+ },
+ "Serilog/2.8.0": {
+ "sha512": "zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
+ "type": "package",
+ "path": "serilog/2.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.dll",
+ "lib/net45/Serilog.pdb",
+ "lib/net45/Serilog.xml",
+ "lib/net46/Serilog.dll",
+ "lib/net46/Serilog.pdb",
+ "lib/net46/Serilog.xml",
+ "lib/netstandard1.0/Serilog.dll",
+ "lib/netstandard1.0/Serilog.pdb",
+ "lib/netstandard1.0/Serilog.xml",
+ "lib/netstandard1.3/Serilog.dll",
+ "lib/netstandard1.3/Serilog.pdb",
+ "lib/netstandard1.3/Serilog.xml",
+ "lib/netstandard2.0/Serilog.dll",
+ "lib/netstandard2.0/Serilog.pdb",
+ "lib/netstandard2.0/Serilog.xml",
+ "serilog.2.8.0.nupkg.sha512",
+ "serilog.nuspec"
+ ]
+ },
+ "Serilog.Extensions.Logging/3.0.1": {
+ "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
+ "type": "package",
+ "path": "serilog.extensions.logging/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
+ "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
+ "serilog.extensions.logging.3.0.1.nupkg.sha512",
+ "serilog.extensions.logging.nuspec"
+ ]
+ },
+ "Serilog.Sinks.Console/3.1.1": {
+ "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
+ "type": "package",
+ "path": "serilog.sinks.console/3.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.Sinks.Console.dll",
+ "lib/net45/Serilog.Sinks.Console.xml",
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
+ "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
+ "lib/netstandard1.3/Serilog.Sinks.Console.dll",
+ "lib/netstandard1.3/Serilog.Sinks.Console.xml",
+ "serilog.sinks.console.3.1.1.nupkg.sha512",
+ "serilog.sinks.console.nuspec"
+ ]
+ },
+ "Serilog.Sinks.File/4.1.0": {
+ "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
+ "type": "package",
+ "path": "serilog.sinks.file/4.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Serilog.Sinks.File.dll",
+ "lib/net45/Serilog.Sinks.File.pdb",
+ "lib/net45/Serilog.Sinks.File.xml",
+ "lib/netstandard1.3/Serilog.Sinks.File.dll",
+ "lib/netstandard1.3/Serilog.Sinks.File.pdb",
+ "lib/netstandard1.3/Serilog.Sinks.File.xml",
+ "lib/netstandard2.0/Serilog.Sinks.File.dll",
+ "lib/netstandard2.0/Serilog.Sinks.File.pdb",
+ "lib/netstandard2.0/Serilog.Sinks.File.xml",
+ "serilog.sinks.file.4.1.0.nupkg.sha512",
+ "serilog.sinks.file.nuspec"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.1": {
+ "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Collections.Immutable.dll",
+ "lib/net461/System.Collections.Immutable.xml",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.1.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "type": "package",
+ "path": "system.collections.nongeneric/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "system.collections.nongeneric.nuspec"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "type": "package",
+ "path": "system.console/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/netstandard1.3/System.Console.dll",
+ "ref/netstandard1.3/System.Console.xml",
+ "ref/netstandard1.3/de/System.Console.xml",
+ "ref/netstandard1.3/es/System.Console.xml",
+ "ref/netstandard1.3/fr/System.Console.xml",
+ "ref/netstandard1.3/it/System.Console.xml",
+ "ref/netstandard1.3/ja/System.Console.xml",
+ "ref/netstandard1.3/ko/System.Console.xml",
+ "ref/netstandard1.3/ru/System.Console.xml",
+ "ref/netstandard1.3/zh-hans/System.Console.xml",
+ "ref/netstandard1.3/zh-hant/System.Console.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.console.4.3.0.nupkg.sha512",
+ "system.console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.EventLog/4.7.0": {
+ "sha512": "iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
+ "type": "package",
+ "path": "system.diagnostics.eventlog/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Diagnostics.EventLog.dll",
+ "lib/net461/System.Diagnostics.EventLog.xml",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "ref/net461/System.Diagnostics.EventLog.dll",
+ "ref/net461/System.Diagnostics.EventLog.xml",
+ "ref/net472/System.Diagnostics.EventLog.dll",
+ "ref/net472/System.Diagnostics.EventLog.xml",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
+ "system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "system.diagnostics.eventlog.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.0.1": {
+ "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "type": "package",
+ "path": "system.io.filesystem/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.4.0.1.nupkg.sha512",
+ "system.io.filesystem.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.1": {
+ "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.1.5": {
+ "sha512": "VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "type": "package",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.runtimeinformation.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "type": "package",
+ "path": "system.security.accesscontrol/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/netstandard1.3/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/System.Security.AccessControl.dll",
+ "ref/netstandard1.3/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/de/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/es/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/it/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
+ "ref/netstandard2.0/System.Security.AccessControl.dll",
+ "ref/netstandard2.0/System.Security.AccessControl.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/win/lib/net46/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "type": "package",
+ "path": "system.security.principal.windows/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.xml",
+ "lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.xml",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/System.Security.Principal.Windows.dll",
+ "ref/netstandard1.3/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll",
+ "ref/netstandard2.0/System.Security.Principal.Windows.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.principal.windows.4.7.0.nupkg.sha512",
+ "system.security.principal.windows.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.11": {
+ "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "type": "package",
+ "path": "system.text.encoding.extensions/4.0.11",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/netcore50/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.extensions.4.0.11.nupkg.sha512",
+ "system.text.encoding.extensions.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Timer/4.0.1": {
+ "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "type": "package",
+ "path": "system.threading.timer/4.0.1",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net451/_._",
+ "lib/portable-net451+win81+wpa81/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net451/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/netcore50/de/System.Threading.Timer.xml",
+ "ref/netcore50/es/System.Threading.Timer.xml",
+ "ref/netcore50/fr/System.Threading.Timer.xml",
+ "ref/netcore50/it/System.Threading.Timer.xml",
+ "ref/netcore50/ja/System.Threading.Timer.xml",
+ "ref/netcore50/ko/System.Threading.Timer.xml",
+ "ref/netcore50/ru/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hans/System.Threading.Timer.xml",
+ "ref/netcore50/zh-hant/System.Threading.Timer.xml",
+ "ref/netstandard1.2/System.Threading.Timer.dll",
+ "ref/netstandard1.2/System.Threading.Timer.xml",
+ "ref/netstandard1.2/de/System.Threading.Timer.xml",
+ "ref/netstandard1.2/es/System.Threading.Timer.xml",
+ "ref/netstandard1.2/fr/System.Threading.Timer.xml",
+ "ref/netstandard1.2/it/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ja/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ko/System.Threading.Timer.xml",
+ "ref/netstandard1.2/ru/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
+ "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
+ "ref/portable-net451+win81+wpa81/_._",
+ "ref/win81/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.timer.4.0.1.nupkg.sha512",
+ "system.threading.timer.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "sha512": "ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "type": "package",
+ "path": "volo.abp.core/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "lib/netstandard2.0/Volo.Abp.Core.xml",
+ "volo.abp.core.4.0.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "path": "../Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj",
+ "msbuildProject": "../Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net5.0": [
+ "Microsoft.Extensions.Hosting >= 3.1.2",
+ "Serilog.Extensions.Logging >= 3.0.1",
+ "Serilog.Sinks.Console >= 3.1.1",
+ "Serilog.Sinks.File >= 4.1.0",
+ "Win.Abp.Snowflakes >= 1.0.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\Administrator\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj",
+ "projectName": "Win.Abp.Snowflakes.Test",
+ "projectPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj",
+ "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
+ "outputPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net5.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "projectReferences": {
+ "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {
+ "projectPath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net5.0": {
+ "targetAlias": "netcoreapp5",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting": {
+ "target": "Package",
+ "version": "[3.1.2, )"
+ },
+ "Serilog.Extensions.Logging": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Serilog.Sinks.Console": {
+ "target": "Package",
+ "version": "[3.1.1, )"
+ },
+ "Serilog.Sinks.File": {
+ "target": "Package",
+ "version": "[4.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.nuget.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.nuget.cache
new file mode 100644
index 00000000..9c7f9fd9
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes.Test/obj/project.nuget.cache
@@ -0,0 +1,88 @@
+{
+ "version": 2,
+ "dgSpecHash": "qRRR4oWBNDSj4EchUdnagxUzVKAU2E5MXo1kyDyM/zVdgbUDzyWuWzQmpEpLv3O6jn/yQHpOmr+rLv18JZshyQ==",
+ "success": true,
+ "projectFilePath": "C:\\TH\\src\\Shared\\Win.Abp\\Win.Abp.Snowflakes.Test\\Win.Abp.Snowflakes.Test.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\Administrator\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting\\3.1.2\\microsoft.extensions.hosting.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.configuration\\3.1.2\\microsoft.extensions.logging.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.console\\3.1.2\\microsoft.extensions.logging.console.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.debug\\3.1.2\\microsoft.extensions.logging.debug.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\3.1.2\\microsoft.extensions.logging.eventlog.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\3.1.2\\microsoft.extensions.logging.eventsource.3.1.2.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.8.0\\serilog.2.8.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.extensions.logging\\3.0.1\\serilog.extensions.logging.3.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.eventlog\\4.7.0\\system.diagnostics.eventlog.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512",
+ "C:\\Users\\Administrator\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Properties/launchSettings.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Properties/launchSettings.json
new file mode 100644
index 00000000..a682459c
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Properties/launchSettings.json
@@ -0,0 +1,12 @@
+{
+ "profiles": {
+ "Win.Abp.Snowflakes": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:26960;http://localhost:26961"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj
new file mode 100644
index 00000000..4ff44a03
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win.Abp.Snowflakes.csproj
@@ -0,0 +1,17 @@
+
+
+
+ net7.0
+ Win.Abp.Snowflakes
+ Win.Abp.Snowflakes
+ $(AssetTargetFallback);portable-net45+win8+wp8+wpa81;
+ false
+ false
+ false
+
+
+
+
+
+
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs
new file mode 100644
index 00000000..4f1b3cfe
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeGeneratorModule.cs
@@ -0,0 +1,11 @@
+using Volo.Abp.Modularity;
+
+namespace Win.Abp.Snowflakes
+{
+ public class AbpSnowflakeGeneratorModule:AbpModule
+ {
+
+ }
+
+
+}
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs
new file mode 100644
index 00000000..05147e85
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/AbpSnowflakeIdGeneratorOptions.cs
@@ -0,0 +1,22 @@
+namespace Win.Abp.Snowflakes
+{
+ public class AbpSnowflakeIdGeneratorOptions
+ {
+ // 数据中心ID(0~31)
+ public long? DefaultDatacenterId { get; set; }
+
+ // 工作机器ID(0~31)
+ public long? DefaultWorkerId { get; set; }
+
+
+ public long GetDefaultDatacenterId()
+ {
+ return DefaultDatacenterId ?? 0L;
+ }
+
+ public long GetDefaultWorkerId()
+ {
+ return DefaultWorkerId ?? 0L;
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs
new file mode 100644
index 00000000..a515fdb5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/ISnowflakeIdGenerator.cs
@@ -0,0 +1,15 @@
+namespace Win.Abp.Snowflakes
+{
+ public interface ISnowflakeIdGenerator
+ {
+ ///
+ /// Creates a new Snowflake Id.
+ ///
+ ///
+ long Create();
+
+ string AnalyzeId(long id);
+
+ // long Create(long datacenterId, long workerId);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs
new file mode 100644
index 00000000..8da3f3e9
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/Win/Abp/Snowflakes/SnowflakeIdGenerator.cs
@@ -0,0 +1,181 @@
+using System;
+using System.Text;
+using Microsoft.Extensions.Options;
+using Volo.Abp.DependencyInjection;
+
+namespace Win.Abp.Snowflakes
+{
+ public class SnowflakeIdGenerator : ISnowflakeIdGenerator, ITransientDependency
+ {
+ // 开始时间截((new DateTime(2020, 1, 1, 0, 0, 0, DateTimeKind.Utc)-Jan1st1970).TotalMilliseconds)
+ private static readonly DateTime Jan1st1970 = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
+
+ private const long Twepoch = 1577836800000L;
+
+ // 机器id所占的位数
+ private const int WorkerIdBits = 5;
+
+ // 数据标识id所占的位数
+ private const int DatacenterIdBits = 5;
+
+ // 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数)
+ private const long MaxWorkerId = -1L ^ (-1L << WorkerIdBits);
+
+ // 支持的最大数据标识id,结果是31
+ private const long MaxDatacenterId = -1L ^ (-1L << DatacenterIdBits);
+
+ // 序列在id中占的位数
+ private const int SequenceBits = 12;
+
+ // 数据标识id向左移17位(12+5)
+ private const int DatacenterIdShift = SequenceBits + WorkerIdBits;
+
+ // 机器ID向左移12位
+ private const int WorkerIdShift = SequenceBits;
+
+
+ // 时间截向左移22位(5+5+12)
+ private const int TimestampLeftShift = SequenceBits + WorkerIdBits + DatacenterIdBits;
+
+ // 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095)
+ private const long SequenceMask = -1L ^ (-1L << SequenceBits);
+
+ // 数据中心ID(0~31)
+ private long DatacenterId { get; set; }
+
+ // 工作机器ID(0~31)
+ private long WorkerId { get; set; }
+
+ // 毫秒内序列(0~4095)
+ private long Sequence { get; set; }
+
+ // 上次生成ID的时间截
+ private long LastTimestamp { get; set; }
+
+
+ public AbpSnowflakeIdGeneratorOptions Options { get; }
+
+ protected SnowflakeIdGenerator(){}
+
+ public SnowflakeIdGenerator(IOptions options)
+ {
+ Options = options.Value;
+ this.DatacenterId = options.Value.GetDefaultDatacenterId();
+ this.WorkerId = options.Value.GetDefaultWorkerId();
+
+ }
+
+ ///
+ /// 获得下一个ID
+ ///
+
+ ///
+ public long Create()
+ {
+ return Create(Options.GetDefaultDatacenterId(), Options.GetDefaultWorkerId());
+ }
+
+ public long Create(long datacenterId, long workerId)
+ {
+
+ if (datacenterId > MaxDatacenterId || datacenterId < 0)
+ {
+ throw new Exception($"datacenter Id can't be greater than {MaxDatacenterId} or less than 0");
+ }
+ if (workerId > MaxWorkerId || workerId < 0)
+ {
+ throw new Exception($"worker Id can't be greater than {MaxWorkerId} or less than 0");
+ }
+
+ this.DatacenterId = datacenterId;
+ this.WorkerId = workerId;
+
+ lock (this)
+ {
+ var timestamp = GetCurrentTimestamp();
+ if (timestamp > LastTimestamp) //时间戳改变,毫秒内序列重置
+ {
+ Sequence = 0L;
+ }
+ else if (timestamp == LastTimestamp) //如果是同一时间生成的,则进行毫秒内序列
+ {
+ Sequence = (Sequence + 1) & SequenceMask;
+ if (Sequence == 0) //毫秒内序列溢出
+ {
+ timestamp = GetNextTimestamp(LastTimestamp); //阻塞到下一个毫秒,获得新的时间戳
+ }
+ }
+ else //当前时间小于上一次ID生成的时间戳,证明系统时钟被回拨,此时需要做回拨处理
+ {
+ Sequence = (Sequence + 1) & SequenceMask;
+ if (Sequence > 0)
+ {
+ timestamp = LastTimestamp; //停留在最后一次时间戳上,等待系统时间追上后即完全度过了时钟回拨问题。
+ }
+ else //毫秒内序列溢出
+ {
+ timestamp = LastTimestamp + 1; //直接进位到下一个毫秒
+ }
+ //throw new Exception(string.Format("Clock moved backwards. Refusing to generate id for {0} milliseconds", lastTimestamp - timestamp));
+ }
+
+ LastTimestamp = timestamp; //上次生成ID的时间截
+
+ //移位并通过或运算拼到一起组成64位的ID
+ var id = ((timestamp - Twepoch) << TimestampLeftShift)
+ | (this.DatacenterId << DatacenterIdShift)
+ | (this.WorkerId << WorkerIdShift)
+ | Sequence;
+ return id;
+ }
+ }
+
+ ///
+ /// 解析雪花ID
+ ///
+ ///
+ public string AnalyzeId(long id)
+ {
+ var sb = new StringBuilder();
+
+ var timestamp = (id >> TimestampLeftShift);
+ var time = Jan1st1970.AddMilliseconds(timestamp + Twepoch);
+ sb.Append(time.ToLocalTime().ToString("yyyy-MM-dd HH:mm:ss:fff"));
+
+ var datacenterId = (id ^ (timestamp << TimestampLeftShift)) >> DatacenterIdShift;
+ sb.Append("_" + datacenterId);
+
+ var workerId = (id ^ ((timestamp << TimestampLeftShift) | (datacenterId << DatacenterIdShift))) >> WorkerIdShift;
+ sb.Append("_" + workerId);
+
+ var sequence = id & SequenceMask;
+ sb.Append("_" + sequence);
+
+ return sb.ToString();
+ }
+
+ ///
+ /// 阻塞到下一个毫秒,直到获得新的时间戳
+ ///
+ /// 上次生成ID的时间截
+ /// 当前时间戳
+ private static long GetNextTimestamp(long lastTimestamp)
+ {
+ long timestamp = GetCurrentTimestamp();
+ while (timestamp <= lastTimestamp)
+ {
+ timestamp = GetCurrentTimestamp();
+ }
+ return timestamp;
+ }
+
+ ///
+ /// 获取当前时间戳
+ ///
+ ///
+ private static long GetCurrentTimestamp()
+ {
+ return (long)(DateTime.UtcNow - Jan1st1970).TotalMilliseconds;
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json
new file mode 100644
index 00000000..611c11ff
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json
@@ -0,0 +1,940 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.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/1.7.1": {},
+ "System.ComponentModel.Annotations/4.7.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.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.1.5": {
+ "runtime": {
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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.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.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"
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.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-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.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.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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.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.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"
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..1dc32cce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..f5720c3e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..2ded0aec
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.deps.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.deps.json
new file mode 100644
index 00000000..0b6ee913
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.deps.json
@@ -0,0 +1,1207 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "dependencies": {
+ "NETStandard.Library": "2.0.3",
+ "Volo.Abp.Core": "4.0.0"
+ },
+ "runtime": {
+ "Win.Abp.Snowflakes.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2020.1.0.0",
+ "fileVersion": "2020.1.0.0"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "System.Text.Json": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Json": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.52605"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Primitives": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "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.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.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/1.7.1": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.20.21406"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.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/5.0.0": {
+ "dependencies": {
+ "System.Memory": "4.5.4",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "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.1.5": {
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.1.5.0",
+ "fileVersion": "1.1.5.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": "5.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/5.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "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/5.0.0": {
+ "dependencies": {
+ "System.Memory": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "System.Text.Json/5.0.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
+ "System.Buffers": "4.5.1",
+ "System.Memory": "4.5.4",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encodings.Web": "5.0.0",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.20.51904"
+ }
+ }
+ },
+ "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": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "4.2.0.1",
+ "fileVersion": "4.6.28619.1"
+ }
+ }
+ },
+ "Volo.Abp.Core/4.0.0": {
+ "dependencies": {
+ "JetBrains.Annotations": "2020.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
+ "Microsoft.Extensions.DependencyInjection": "5.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
+ "Microsoft.Extensions.Localization": "5.0.0",
+ "Microsoft.Extensions.Logging": "5.0.0",
+ "Microsoft.Extensions.Options": "5.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.1",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.1.5",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Win.Abp.Snowflakes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "JetBrains.Annotations/2020.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
+ "path": "jetbrains.annotations/2020.1.0",
+ "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
+ "path": "microsoft.bcl.asyncinterfaces/5.0.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
+ "path": "microsoft.extensions.configuration/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
+ "path": "microsoft.extensions.configuration.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
+ "path": "microsoft.extensions.configuration.binder/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
+ "path": "microsoft.extensions.configuration.commandline/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
+ "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
+ "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
+ "path": "microsoft.extensions.configuration.json/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
+ "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
+ "path": "microsoft.extensions.dependencyinjection/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
+ "path": "microsoft.extensions.fileproviders.physical/5.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
+ "path": "microsoft.extensions.filesystemglobbing/5.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
+ "path": "microsoft.extensions.hosting.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==",
+ "path": "microsoft.extensions.localization/5.0.0",
+ "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==",
+ "path": "microsoft.extensions.localization.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
+ "path": "microsoft.extensions.logging/5.0.0",
+ "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
+ "path": "microsoft.extensions.logging.abstractions/5.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
+ "path": "microsoft.extensions.options/5.0.0",
+ "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
+ "path": "microsoft.extensions.options.configurationextensions/5.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
+ "path": "microsoft.extensions.primitives/5.0.0",
+ "hashPath": "microsoft.extensions.primitives.5.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-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "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.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.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/1.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
+ "path": "system.collections.immutable/1.7.1",
+ "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
+ "path": "system.diagnostics.diagnosticsource/5.0.0",
+ "hashPath": "system.diagnostics.diagnosticsource.5.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.1.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==",
+ "path": "system.linq.dynamic.core/1.1.5",
+ "hashPath": "system.linq.dynamic.core.1.1.5.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-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "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-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==",
+ "path": "system.text.encodings.web/5.0.0",
+ "hashPath": "system.text.encodings.web.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
+ "path": "system.text.json/5.0.0",
+ "hashPath": "system.text.json.5.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/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==",
+ "path": "volo.abp.core/4.0.0",
+ "hashPath": "volo.abp.core.4.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..8b02a6fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..1dd1cf24
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/bin/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..4257f4bc
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..31893169
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true
+build_property.TargetFramework = net7.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace =
+build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\Shared\Win.Abp\Win.Abp.Snowflakes\
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..81158bec
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..58a58245
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/net7.0/Win.Abp.Snowflakes.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..ff777895
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache
new file mode 100644
index 00000000..f5e894ae
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..c4cdb8ab
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+1a11a8add92ab8b1eb28e370f11c17418b7270f6
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..808cbfe4
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
@@ -0,0 +1,36 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csprojAssemblyReference.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll
+C:\TH\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..1dc32cce
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..f5720c3e
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..2ded0aec
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..45b1ca02
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..742da86f
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..3feea793
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+6185dd8f87746db9a500910f342a0756d173abaa
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..b938567c
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt
@@ -0,0 +1,9 @@
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netstandard2.0\Win.Abp.Snowflakes.deps.json
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netstandard2.0\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\bin\Debug\netstandard2.0\Win.Abp.Snowflakes.pdb
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.csprojAssemblyReference.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.AssemblyInfoInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.AssemblyInfo.cs
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.dll
+H:\wms123\src\Shared\Win.Abp\Win.Abp.Snowflakes\obj\Debug\netstandard2.0\Win.Abp.Snowflakes.pdb
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache
new file mode 100644
index 00000000..ac206afe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.dll
new file mode 100644
index 00000000..8b02a6fe
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.dll differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb
new file mode 100644
index 00000000..1dd1cf24
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Debug/netstandard2.0/Win.Abp.Snowflakes.pdb differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..2f7e5ec5
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 00000000..9a64fdf6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,8 @@
+is_global = true
+build_property.TargetFramework = netcoreapp5
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.PublishSingleFile =
+build_property.IncludeAllContentForSelfExtract =
+build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..1c5e6371
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache
new file mode 100644
index 00000000..2c163f88
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
new file mode 100644
index 00000000..45b1ca02
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs
new file mode 100644
index 00000000..2a1dc862
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..5d9c2aaa
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+dd45d7419542ed747e383f3acb2b9bf5ef266736
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.assets.cache
new file mode 100644
index 00000000..31c5e67d
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.assets.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache
new file mode 100644
index 00000000..99321fd3
Binary files /dev/null and b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Release/netstandard2.0/Win.Abp.Snowflakes.csprojAssemblyReference.cache differ
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..72d75a2a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json
@@ -0,0 +1,75 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {}
+ },
+ "projects": {
+ "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "projectName": "Win.Abp.Snowflakes",
+ "projectPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "packagesPath": "C:\\Users\\44673\\.nuget\\packages\\",
+ "outputPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\44673\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "D:\\上海富维东阳工作\\设备管理\\localhost-nuget": {},
+ "D:\\长春项目\\北京北汽结算项目\\源代码\\nuget": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "dependencies": {
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[7.2.2, )"
+ }
+ },
+ "imports": [
+ "portable-net45+win8+wp8+wpa81",
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props
new file mode 100644
index 00000000..0d77591a
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\44673\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 6.5.0
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets
new file mode 100644
index 00000000..377827e8
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.assets.json b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.assets.json
new file mode 100644
index 00000000..fe23c2be
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.assets.json
@@ -0,0 +1,3412 @@
+{
+ "version": 3,
+ "targets": {
+ "net7.0": {
+ "JetBrains.Annotations/2022.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
+ "System.Text.Json": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Configuration.Json": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
+ "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Localization.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Localization.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.1.2",
+ "Nito.Collections.Deque": "1.1.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.2.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.1.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nito.Disposables/2.2.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/Nito.Disposables.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Nito.Disposables.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections.Immutable/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.2.18": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Linq.Dynamic.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Linq.Dynamic.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "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"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encodings.Web/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
+ "assetType": "runtime",
+ "rid": "browser"
+ }
+ }
+ },
+ "System.Text.Json/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encodings.Web": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Volo.Abp.Core/7.2.2": {
+ "type": "package",
+ "dependencies": {
+ "JetBrains.Annotations": "2022.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "7.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "7.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Localization": "7.0.0",
+ "Microsoft.Extensions.Logging": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "7.0.0",
+ "Nito.AsyncEx.Context": "5.1.2",
+ "Nito.AsyncEx.Coordination": "5.1.2",
+ "System.Collections.Immutable": "7.0.0",
+ "System.Linq.Dynamic.Core": "1.2.18",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Text.Encodings.Web": "7.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "JetBrains.Annotations/2022.1.0": {
+ "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
+ "type": "package",
+ "path": "jetbrains.annotations/2022.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "jetbrains.annotations.2022.1.0.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/7.0.0": {
+ "sha512": "tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/7.0.0": {
+ "sha512": "tgU4u7bZsoS9MKVRiotVMAwHtbREHr5/5zSEV+JPhg46+ox47Au84E3D2IacAaB0bk5ePNaNieTlPrfjbbRJkg==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Binder.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Binder.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/7.0.0": {
+ "sha512": "a8Iq8SCw5m8W5pZJcPCgBpBO4E89+NaObPng+ApIhrGSv9X4JPrcFAaGM4sDgR0X83uhLgsNJq8VnGP/wqhr8A==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/7.0.0": {
+ "sha512": "RIkfqCkvrAogirjsqSrG1E1FxgrLsOZU2nhRbl07lrajnxzSU2isj2lwQah0CtCbLWo/pOIukQzM1GfneBUnxA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
+ "sha512": "xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/7.0.0": {
+ "sha512": "LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/7.0.0": {
+ "sha512": "33HPW1PmB2RS0ietBQyvOxjp4O3wlt+4tIs8KPyMn1kqp04goiZGa7+3mc69NRLv6bphkLDy0YR7Uw3aZyf8Zw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
+ "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
+ "sha512": "NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
+ "sha512": "K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
+ "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
+ "sha512": "2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
+ "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/7.0.0": {
+ "sha512": "43n9Je09z0p/7ViPxfRqs5BUItRLNVh5b6JH40F2Agkh2NBsY/jpNYTtbCcxrHCsA3oRmbR6RJBzUutB4VZvNQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Localization/7.0.0": {
+ "sha512": "hc+3uiY/ZYufz6GC39ODQ1Pk9lMnSg+ORZIIEv7W2VJpekc43GoJ3EcwDu5ggLcVvb8ff87peXt8WEtbCVsWPQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.Extensions.Localization.dll",
+ "lib/net462/Microsoft.Extensions.Localization.xml",
+ "lib/net7.0/Microsoft.Extensions.Localization.dll",
+ "lib/net7.0/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.7.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/7.0.0": {
+ "sha512": "OhKe14cdR3aNJ2eFUrLIKEEXAmudZD7TmV+Exw9Y1OWCaV2vkvp4DLnz0GgYbRGpTPPgS50f1c/hK7JkV3uVcA==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
+ "lib/net462/Microsoft.Extensions.Logging.dll",
+ "lib/net462/Microsoft.Extensions.Logging.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.7.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
+ "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/7.0.0": {
+ "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
+ "type": "package",
+ "path": "microsoft.extensions.options/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
+ "lib/net462/Microsoft.Extensions.Options.dll",
+ "lib/net462/Microsoft.Extensions.Options.xml",
+ "lib/net6.0/Microsoft.Extensions.Options.dll",
+ "lib/net6.0/Microsoft.Extensions.Options.xml",
+ "lib/net7.0/Microsoft.Extensions.Options.dll",
+ "lib/net7.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.7.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/7.0.0": {
+ "sha512": "95UnxZkkFdXxF6vSrtJsMHCzkDeSMuUWGs2hDT54cX+U5eVajrCJ3qLyQRW+CtpTt5OJ8bmTvpQVHu1DLhH+cA==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
+ "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {
+ "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
+ "lib/net6.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net6.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net7.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.1.2": {
+ "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net461/Nito.AsyncEx.Context.dll",
+ "lib/net461/Nito.AsyncEx.Context.xml",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.1.2.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.1.2": {
+ "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net461/Nito.AsyncEx.Coordination.dll",
+ "lib/net461/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.1.2.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.1.2": {
+ "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net461/Nito.AsyncEx.Tasks.dll",
+ "lib/net461/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.1.2.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.1.1": {
+ "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
+ "type": "package",
+ "path": "nito.collections.deque/1.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net461/Nito.Collections.Deque.dll",
+ "lib/net461/Nito.Collections.Deque.xml",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.1.1.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.2.1": {
+ "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
+ "type": "package",
+ "path": "nito.disposables/2.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net461/Nito.Disposables.dll",
+ "lib/net461/Nito.Disposables.xml",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "lib/netstandard2.1/Nito.Disposables.dll",
+ "lib/netstandard2.1/Nito.Disposables.xml",
+ "nito.disposables.2.2.1.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/7.0.0": {
+ "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
+ "type": "package",
+ "path": "system.collections.immutable/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "README.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Collections.Immutable.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
+ "lib/net462/System.Collections.Immutable.dll",
+ "lib/net462/System.Collections.Immutable.xml",
+ "lib/net6.0/System.Collections.Immutable.dll",
+ "lib/net6.0/System.Collections.Immutable.xml",
+ "lib/net7.0/System.Collections.Immutable.dll",
+ "lib/net7.0/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "system.collections.immutable.7.0.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.2.18": {
+ "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.2.18",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net452/System.Linq.Dynamic.Core.dll",
+ "lib/net452/System.Linq.Dynamic.Core.pdb",
+ "lib/net452/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/net5.0/System.Linq.Dynamic.Core.dll",
+ "lib/net5.0/System.Linq.Dynamic.Core.pdb",
+ "lib/net5.0/System.Linq.Dynamic.Core.xml",
+ "lib/net6.0/System.Linq.Dynamic.Core.dll",
+ "lib/net6.0/System.Linq.Dynamic.Core.pdb",
+ "lib/net6.0/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.2.18.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/7.0.0": {
+ "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
+ "type": "package",
+ "path": "system.text.encodings.web/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Text.Encodings.Web.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
+ "lib/net462/System.Text.Encodings.Web.dll",
+ "lib/net462/System.Text.Encodings.Web.xml",
+ "lib/net6.0/System.Text.Encodings.Web.dll",
+ "lib/net6.0/System.Text.Encodings.Web.xml",
+ "lib/net7.0/System.Text.Encodings.Web.dll",
+ "lib/net7.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.7.0.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Json/7.0.0": {
+ "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
+ "type": "package",
+ "path": "system.text.json/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "README.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "buildTransitive/net461/System.Text.Json.targets",
+ "buildTransitive/net462/System.Text.Json.targets",
+ "buildTransitive/net6.0/System.Text.Json.targets",
+ "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
+ "buildTransitive/netstandard2.0/System.Text.Json.targets",
+ "lib/net462/System.Text.Json.dll",
+ "lib/net462/System.Text.Json.xml",
+ "lib/net6.0/System.Text.Json.dll",
+ "lib/net6.0/System.Text.Json.xml",
+ "lib/net7.0/System.Text.Json.dll",
+ "lib/net7.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.7.0.0.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/7.2.2": {
+ "sha512": "VcSCFSuG5KER5Zos1FYHZPUiF7AohnE5Lg82nIPwlyc17Kvx7o44lgsXILk1Bc0EbTZ6ynEUr+NbhBlUQPW17A==",
+ "type": "package",
+ "path": "volo.abp.core/7.2.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "content/Volo.Abp.Core.abppkg.analyze.json",
+ "content/Volo.Abp.Core.abppkg.json",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "lib/netstandard2.0/Volo.Abp.Core.xml",
+ "volo.abp.core.7.2.2.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net7.0": [
+ "Volo.Abp.Core >= 7.2.2"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\44673\\.nuget\\packages\\": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "projectName": "Win.Abp.Snowflakes",
+ "projectPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "packagesPath": "C:\\Users\\44673\\.nuget\\packages\\",
+ "outputPath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\44673\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "D:\\上海富维东阳工作\\设备管理\\localhost-nuget": {},
+ "D:\\长春项目\\北京北汽结算项目\\源代码\\nuget": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net7.0": {
+ "targetAlias": "net7.0",
+ "dependencies": {
+ "Volo.Abp.Core": {
+ "target": "Package",
+ "version": "[7.2.2, )"
+ }
+ },
+ "imports": [
+ "portable-net45+win8+wp8+wpa81",
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.nuget.cache b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.nuget.cache
new file mode 100644
index 00000000..657e37a6
--- /dev/null
+++ b/code/src/Shared/Win.Abp/Win.Abp.Snowflakes/obj/project.nuget.cache
@@ -0,0 +1,65 @@
+{
+ "version": 2,
+ "dgSpecHash": "ARDSv2r4o7dl3K1mpRqadJWX4Ldx4nCCSSwKfnPgb6Ubyb2+r8u8wexfa+6kMXnH7FpvSbaroVR4uzeEiG0MUA==",
+ "success": true,
+ "projectFilePath": "D:\\长春项目\\北京北汽结算项目\\NewBJSettleAccount\\BeiJinSettleAccount\\code\\Shared\\Win.Abp\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\44673\\.nuget\\packages\\jetbrains.annotations\\2022.1.0\\jetbrains.annotations.2022.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration\\7.0.0\\microsoft.extensions.configuration.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.0\\microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\7.0.0\\microsoft.extensions.configuration.commandline.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\7.0.0\\microsoft.extensions.configuration.environmentvariables.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\7.0.0\\microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.json\\7.0.0\\microsoft.extensions.configuration.json.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\7.0.0\\microsoft.extensions.configuration.usersecrets.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\7.0.0\\microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\7.0.0\\microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\7.0.0\\microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\7.0.0\\microsoft.extensions.hosting.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.localization\\7.0.0\\microsoft.extensions.localization.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\7.0.0\\microsoft.extensions.localization.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\7.0.0\\microsoft.extensions.options.configurationextensions.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.context\\5.1.2\\nito.asyncex.context.5.1.2.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.dynamic.core\\1.2.18\\system.linq.dynamic.core.1.2.18.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\44673\\.nuget\\packages\\volo.abp.core\\7.2.2\\volo.abp.core.7.2.2.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IBranchBaseDataAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IBranchBaseDataAppService.cs
new file mode 100644
index 00000000..efc5943f
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IBranchBaseDataAppService.cs
@@ -0,0 +1,37 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ ///
+ ///
+ ///
+ ///
+ ///
+ public interface IBranchBaseDataAppService:IUnitOfWorkEnabled
+ {
+ // Task GetFromRepositoryAsync(TKey id);
+ ///
+ /// 获取实体总数
+ ///
+ /// 实体总数
+ Task GetTotalCountAsync(TKey branchId);
+
+ ///
+ /// 获取全部实体列表
+ ///
+ /// 实体DTO列表
+ Task> GetAllAsync(TKey branchId);
+
+ ///
+ /// 按IDs删除实体列表
+ ///
+ /// IDs
+ /// 是否执行成功
+ Task DeleteListAsync(List keys);
+
+ // Task DeleteByFilterAsync(string filter);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailAppService.cs
new file mode 100644
index 00000000..b0c95cbb
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailAppService.cs
@@ -0,0 +1,31 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ public interface IHasDetailAppService : IUnitOfWorkEnabled
+ {
+ Task GetDetailAsync(TKey id, TDetailKey detailKey);
+
+ Task> GetAllDetailsAsync(TKey id);
+
+ Task GetDetailCountAsync(TKey id);
+
+ Task> GetDetailsByFilterAsync(TKey key, TDetailRequestDto input);
+
+ // Task AddDetailAsync(TKey id, TDetailEntity detail);
+
+ Task AddDetailsAsync(TKey id, List details);
+
+ Task ClearDetailsAsync(TKey id);
+
+ // Task UpdateDetailAsync(TKey id, TDetailEntity detail);
+
+ Task UpdateDetailsAsync(TKey key, List details);
+
+ // Task DeleteDetailAsync(TKey id, TDetailKey detailKey);
+
+ Task DeleteDetailsAsync(TKey key, List detailKeys);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailEntityAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailEntityAppService.cs
new file mode 100644
index 00000000..9e9a7104
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IHasDetailEntityAppService.cs
@@ -0,0 +1,30 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ public interface IHasDetailEntityAppService : IUnitOfWorkEnabled
+ {
+ Task GetDetailAsync(TDetailKey detailKey);
+
+ Task> GetAllDetailsAsync(TKey id);
+
+ Task GetDetailCountAsync(TKey id);
+
+ Task> GetDetailsByFilterAsync(TDetailRequestDto input);
+
+ //Task AddDetailsAsync(TKey id, List details);
+
+ //Task ClearDetailsAsync(TKey id);
+
+ //// Task UpdateDetailAsync(TKey id, TDetailEntity detail);
+
+ //Task UpdateDetailsAsync(TKey key, List details);
+
+ //// Task DeleteDetailAsync(TKey id, TDetailKey detailKey);
+
+ //Task DeleteDetailsAsync(TKey key, List detailKeys);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IImportAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IImportAppService.cs
new file mode 100644
index 00000000..9ea55943
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IImportAppService.cs
@@ -0,0 +1,23 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ ///
+ /// 导入接口
+ ///
+ ///
+ public interface IImportAppService : IUnitOfWorkEnabled
+ {
+ ///
+ /// 批量导入实体列表
+ ///
+ ///
+ /// 以ID为依据,数据库中找不到ID的实体会新增,已有ID的实体会修改
+ ///
+ /// 实体列表
+ /// 是否导入成功
+ Task ImportAsync(List entities);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IInventoryAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IInventoryAppService.cs
new file mode 100644
index 00000000..42738b80
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/IInventoryAppService.cs
@@ -0,0 +1,37 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ ///
+ /// 基础数据通用接口
+ ///
+ ///
+ ///
+ public interface IInventoryAppService : IUnitOfWorkEnabled
+ {
+
+ ///
+ /// 获取实体总数
+ ///
+ /// 实体总数
+ Task GetTotalCountAsync();
+
+ /////
+ ///// 获取全部实体列表
+ /////
+ ///// 实体DTO列表
+ //Task> GetAllAsync();
+
+ ///
+ /// 按IDs删除实体列表
+ ///
+ /// IDs
+ /// 是否执行成功
+ Task DeleteListAsync(List keys);
+
+ // Task DeleteByFilterAsync(string filter);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/ApplicationBase/INormalBaseDataAppService.cs b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/INormalBaseDataAppService.cs
new file mode 100644
index 00000000..c89a2397
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/ApplicationBase/INormalBaseDataAppService.cs
@@ -0,0 +1,37 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Uow;
+
+namespace Win.Sfs.Shared.ApplicationBase
+{
+ ///
+ /// 基础数据通用接口
+ ///
+ ///
+ ///
+ public interface INormalBaseDataAppService : IUnitOfWorkEnabled
+ {
+ // Task GetFromRepositoryAsync(TKey id);
+ ///
+ /// 获取实体总数
+ ///
+ /// 实体总数
+ Task GetTotalCountAsync();
+
+ ///
+ /// 获取全部实体列表
+ ///
+ /// 实体DTO列表
+ Task> GetAllAsync();
+
+ ///
+ /// 按IDs删除实体列表
+ ///
+ /// IDs
+ /// 是否执行成功
+ Task DeleteListAsync(List keys);
+
+ // Task DeleteByFilterAsync(string filter);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheServiceBase.cs b/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheServiceBase.cs
new file mode 100644
index 00000000..6074e53c
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheServiceBase.cs
@@ -0,0 +1,59 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Extensions.Caching.Distributed;
+using Volo.Abp;
+using Volo.Abp.Caching;
+using Volo.Abp.DependencyInjection;
+using Volo.Abp.Domain.Entities;
+
+namespace Win.Sfs.Shared.CacheBase
+{
+ public abstract class CacheServiceBase : ITransientDependency where TCacheItem : Entity
+ {
+ protected IDistributedCache Cache { get; }
+
+ protected CacheServiceBase() { }
+
+ protected CacheServiceBase(IDistributedCache cache)
+ {
+ Cache = cache;
+ }
+
+ public virtual async Task GetPropertyValueAsync(Func> factory, string propertyName)
+ {
+ return await GetPropertyValueAsync(factory, new List { propertyName });
+ }
+
+ public virtual async Task GetPropertyValueAsync(Func> factory, IEnumerable propertyNames, char separator = ',')
+ {
+ try
+ {
+ var entity = await factory.Invoke();
+ var sb = new StringBuilder();
+ foreach (var propertyName in propertyNames)
+ {
+ var entityType = entity.GetType();
+ var property = entityType.GetProperty(propertyName);
+ if (property == null)
+ {
+ throw new AbpException($"can't find Property:{propertyName} from Entity:{entityType.Name}");
+ }
+
+ var propertyValue = property.GetValue(entity, null);
+
+ sb.Append(propertyValue + separator.ToString());
+
+ }
+ return sb.ToString().TrimEnd(separator);
+ }
+ catch (EntityNotFoundException)
+ {
+ return string.Empty;
+ }
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheStrategyConst.cs b/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheStrategyConst.cs
new file mode 100644
index 00000000..f7fca6a8
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CacheBase/CacheStrategyConst.cs
@@ -0,0 +1,63 @@
+namespace Win.Sfs.Shared.CacheBase
+{
+ ///
+ /// 缓存过期时间策略
+ ///
+ public static class CacheStrategyConst
+ {
+ ///
+ /// 一天过期24小时
+ ///
+ public const int ONE_DAY = 1440;
+
+ ///
+ /// 12小时过期
+ ///
+ public const int HALF_DAY = 720;
+
+ ///
+ /// 8小时过期
+ ///
+ public const int EIGHT_HOURS = 480;
+
+ ///
+ /// 5小时过期
+ ///
+ public const int FIVE_HOURS = 300;
+
+ ///
+ /// 3小时过期
+ ///
+ public const int THREE_HOURS = 180;
+
+ ///
+ /// 2小时过期
+ ///
+ public const int TWO_HOURS = 120;
+
+ ///
+ /// 1小时过期
+ ///
+ public const int ONE_HOURS = 60;
+
+ ///
+ /// 半小时过期
+ ///
+ public const int HALF_HOURS = 30;
+
+ ///
+ /// 5分钟过期
+ ///
+ public const int FIVE_MINUTES = 5;
+
+ ///
+ /// 1分钟过期
+ ///
+ public const int ONE_MINUTE = 1;
+
+ ///
+ /// 永不过期
+ ///
+ public const int NEVER = -1;
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CacheBase/CachingExtensions.cs b/code/src/Shared/Win.Sfs.Shared/CacheBase/CachingExtensions.cs
new file mode 100644
index 00000000..6a804057
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CacheBase/CachingExtensions.cs
@@ -0,0 +1,110 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.Extensions.Caching.Distributed;
+using Volo.Abp.Caching;
+
+namespace Win.Sfs.Shared.CacheBase
+{
+ public static class CachingExtensions
+ {
+ private static DistributedCacheEntryOptions CreateDistributedCacheEntryOptions(int minutes)
+ {
+ var options = new DistributedCacheEntryOptions();
+ if (minutes != CacheStrategyConst.NEVER)
+ {
+ options.AbsoluteExpiration = DateTimeOffset.Now.AddMinutes(minutes);
+ }
+
+ return options;
+ }
+
+ ///
+ /// 获取或添加缓存
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static async Task GetOrAddAsync(
+ this IDistributedCache cache, string key, Func> factory, int minutes) where TCacheItem : class
+ {
+ TCacheItem cacheItem;
+
+ var result = await cache.GetAsync(key);
+ if (result == null)
+ {
+ cacheItem = await factory.Invoke();
+ await cache.SetAsync(key, cacheItem, minutes);
+ }
+ else
+ {
+ cacheItem = result;
+ }
+
+ return cacheItem;
+ }
+
+ // public static async Task GetOrAddAsync(this IDistributedCache cache, string key, TCacheItem cacheItem, int minutes)
+ // {
+ //
+ // var result = await cache.GetStringAsync(GetKey(typeof(TCacheItem), key));
+ // if (string.IsNullOrEmpty(result))
+ // {
+ // var options = new DistributedCacheEntryOptions();
+ // if (minutes != CacheStrategyConst.NEVER)
+ // {
+ // options.AbsoluteExpiration = DateTimeOffset.Now.AddMinutes(minutes);
+ // }
+ // await cache.SetStringAsync(GetKey(typeof(TCacheItem), key), cacheItem.ToJson(), options);
+ // }
+ // else
+ // {
+ // cacheItem = result.FromJson();
+ // }
+ // return cacheItem;
+ // }
+
+ public static async Task> GetManyAsync(
+ this IDistributedCache cache, IEnumerable keys) where TCacheItem : class
+ {
+ var cacheItems = await cache.GetManyAsync(keys, null, true);
+ return cacheItems.Select(p => p.Value);
+ }
+
+ public static async Task SetAsync(
+ this IDistributedCache cache, string key, TCacheItem cacheItem, int minutes) where TCacheItem : class
+ {
+ var options = CreateDistributedCacheEntryOptions(minutes);
+ await cache.SetAsync(key, cacheItem, options, null, true);
+ }
+
+ public static async Task SetManyAsync(
+ this IDistributedCache cache, IEnumerable> cacheItems, int minutes) where TCacheItem : class
+ {
+ var options = CreateDistributedCacheEntryOptions(minutes);
+ await cache.SetManyAsync(cacheItems, options);
+ }
+
+ public static async Task DeleteAsync(
+ this IDistributedCache cache, string key)
+ where TCacheItem : class
+ {
+ var result = await cache.GetAsync(key);
+ if (result != null)
+ {
+ await cache.RemoveAsync(key);
+ }
+ }
+
+
+ private static string GetKey(Type type, string key)
+ {
+ return $"{type.Name}:{key}";
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/Constant/CommonConsts.cs b/code/src/Shared/Win.Sfs.Shared/Constant/CommonConsts.cs
new file mode 100644
index 00000000..c823058d
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/Constant/CommonConsts.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Win.Sfs.Shared.Constant
+{
+ public static class CommonConsts
+ {
+ public const int MaxNumeralLength = 16;
+
+ public const int MaxCodeLength = 36;
+
+ public const int MaxTypeLength = 32;
+
+ public const int MaxNameLength = 64;
+
+ public const int MaxFullNameLength = 1024;
+
+ public const int MaxDescriptionLength = 2048;
+ public static double CacheAbsoluteExpirationMinutes { get; set; } = 10;
+ public static int MaxValueLength { get; set; } = 1024;
+
+ public static Guid TestGuid = new Guid("7CD45A6D-762A-6F0F-B9ED-39F91EEA93D1");
+
+ }
+}
diff --git a/code/src/Shared/Win.Sfs.Shared/Constant/MultiTenancyConsts.cs b/code/src/Shared/Win.Sfs.Shared/Constant/MultiTenancyConsts.cs
new file mode 100644
index 00000000..f4d9e775
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/Constant/MultiTenancyConsts.cs
@@ -0,0 +1,7 @@
+namespace Win.Sfs.Shared.Constant
+{
+ public static class MultiTenancyConsts
+ {
+ public const bool IsEnabled = false;
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CurrentBranch/A.cs b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/A.cs
new file mode 100644
index 00000000..c9d213cb
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/A.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Win.Sfs.Shared.CurrentBranch
+{
+ public static class A
+ {
+ public static T ChangeType(this object obj)
+ {
+ return (T)Convert.ChangeType(obj, typeof(T));
+ }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CurrentBranch/BranchManager.cs b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/BranchManager.cs
new file mode 100644
index 00000000..b6c8522f
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/BranchManager.cs
@@ -0,0 +1,40 @@
+using System;
+using Microsoft.AspNetCore.Http;
+using Win.Utils;
+
+namespace Win.Sfs.Shared.CurrentBranch
+{
+ public class BranchManager: IBranchManager
+ {
+ private readonly IHttpContextAccessor _httpContextAccessor;
+
+ protected BranchManager() { }
+
+ public BranchManager(IHttpContextAccessor httpContextAccessor)
+ {
+ _httpContextAccessor = httpContextAccessor;
+ }
+
+ public virtual Guid GetId()
+ {
+ var context = _httpContextAccessor.HttpContext;
+
+ var strBranchId = context?.Request.Headers[BranchHeaderConsts.HeaderName];
+ if (string.IsNullOrEmpty(strBranchId))
+ return Guid.NewGuid();
+ var branchId = Guid.Parse(strBranchId);
+ return branchId;
+ }
+
+ // public virtual T GetId()
+ // {
+ // var context = _httpContextAccessor.HttpContext;
+ //
+ // var strBranchId = context?.Request.Headers[BranchHeaderConsts.HeaderName];
+ // if (string.IsNullOrEmpty(strBranchId))
+ // return default;
+ // var t = strBranchId.ChangeType();
+ // return t;
+ // }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/CurrentBranch/IBranchManager.cs b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/IBranchManager.cs
new file mode 100644
index 00000000..21d7579d
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/CurrentBranch/IBranchManager.cs
@@ -0,0 +1,10 @@
+using System;
+using Volo.Abp.DependencyInjection;
+
+namespace Win.Sfs.Shared.CurrentBranch
+{
+ public interface IBranchManager :ITransientDependency
+ {
+ Guid GetId();
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/AggregateRootBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/AggregateRootBase.cs
new file mode 100644
index 00000000..1c79ade4
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/AggregateRootBase.cs
@@ -0,0 +1,25 @@
+// 闻荫智慧工厂管理套件
+// Copyright (c) 闻荫科技 www.ccwin-in.com
+
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class AggregateRootBase : FullAuditedAggregateRoot, IEnabled, IRemark
+ // ,IMultiTenant
+ {
+ public AggregateRootBase()
+ {
+ }
+
+ public AggregateRootBase(TKey id) : base(id)
+ {
+ }
+
+ public bool Enabled { get; set; } = true;
+
+ public string Remark { get; set; }
+
+ // public Guid? TenantId { get; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/AuditedAggregateRootBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/AuditedAggregateRootBase.cs
new file mode 100644
index 00000000..e2021875
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/AuditedAggregateRootBase.cs
@@ -0,0 +1,28 @@
+using System;
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class AuditedAggregateRootBase : AuditedAggregateRoot,IBranch, IEnabled, IRemark
+
+ {
+ protected AuditedAggregateRootBase() { }
+ public AuditedAggregateRootBase(TKey id) : base(id) { }
+
+ ///
+ /// 分支ID
+ ///
+ public TKey BranchId { get; set; }
+
+ ///
+ /// 是否有效
+ ///
+ public bool Enabled { get; set; } = true;
+
+ ///
+ /// 备注
+ ///
+ public string Remark { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchAggregateRootBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchAggregateRootBase.cs
new file mode 100644
index 00000000..e7e9dd1a
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchAggregateRootBase.cs
@@ -0,0 +1,20 @@
+// 闻荫智慧工厂管理套件
+// Copyright (c) 闻荫科技 www.ccwin-in.com
+
+using System;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class BranchAggregateRootBase : AggregateRootBase, IBranch
+ {
+ public BranchAggregateRootBase()
+ {
+ }
+
+ public BranchAggregateRootBase(TKey id) : base(id)
+ {
+ }
+
+ public TKey BranchId { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchEntityBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchEntityBase.cs
new file mode 100644
index 00000000..3a0ef83b
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/BranchEntityBase.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class BranchEntityBase : EntityBase, IBranch
+ {
+ public BranchEntityBase()
+ {
+ }
+
+ public BranchEntityBase(TKey id) : base(id)
+ {
+ }
+
+ public TKey BranchId { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAggregateRootBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAggregateRootBase.cs
new file mode 100644
index 00000000..421a32d2
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAggregateRootBase.cs
@@ -0,0 +1,10 @@
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class CreationAggregateRootBase : CreationAuditedAggregateRoot, IEnabled, IRemark
+ {
+ public bool Enabled { get; set; } = true;
+ public string Remark { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentBase.cs
new file mode 100644
index 00000000..d9e7e7b2
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentBase.cs
@@ -0,0 +1,33 @@
+
+
+using System.Collections.Generic;
+using Win.Sfs.Shared.Enums;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class CreationAuditedDocumentBase : CreationAuditedEntityBase, IDocumentNumber, IUpstreamDocument
+ {
+ protected CreationAuditedDocumentBase() { }
+
+ public CreationAuditedDocumentBase(TKey id) : base(id) { }
+
+ ///
+ /// 上游单据ID
+ ///
+ //public TKey UpstreamDocumentId { get; set; }
+
+ ///
+ /// 单据流水号
+ ///
+ public string DocumentNumber { get; set; }
+
+ ///
+ /// 单据类型
+ ///
+ public EnumDocumentType DocumentType { get; set; }
+
+
+ public List UpstreamDocuments { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentDetailBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentDetailBase.cs
new file mode 100644
index 00000000..c5eb09a8
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedDocumentDetailBase.cs
@@ -0,0 +1,28 @@
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class CreationAuditedDocumentDetailBase
+ : CreationAuditedEntityBase
+ , IDocumentNumber
+ , IItem
+ {
+ protected CreationAuditedDocumentDetailBase() { }
+
+ public CreationAuditedDocumentDetailBase(TKey id) : base(id) { }
+
+ ///
+ /// 单据流水号
+ ///
+ public string DocumentNumber { get; set; }
+
+
+ ///
+ /// 物品ID
+ ///
+ public TKey ItemId { get; set; }
+
+ ///
+ /// 物品代码
+ ///
+ public string ItemCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedEntityBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedEntityBase.cs
new file mode 100644
index 00000000..0cb0c568
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/CreationAuditedEntityBase.cs
@@ -0,0 +1,21 @@
+using System;
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class CreationAuditedEntityBase : CreationAuditedEntity, IBranch, IRemark
+ {
+ protected CreationAuditedEntityBase() { }
+ public CreationAuditedEntityBase(TKey id) : base(id) { }
+
+ ///
+ /// 分支ID
+ ///
+ public TKey BranchId { get; set; }
+
+ ///
+ /// 备注
+ ///
+ public string Remark { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/EntityBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/EntityBase.cs
new file mode 100644
index 00000000..be6eb270
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/EntityBase.cs
@@ -0,0 +1,19 @@
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class EntityBase : FullAuditedEntity, IEnabled, IRemark
+ {
+ public EntityBase()
+ {
+ }
+
+ public EntityBase(TKey id) : base(id)
+ {
+ }
+
+ public bool Enabled { get; set; } = true;
+
+ public string Remark { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedAggregateRootBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedAggregateRootBase.cs
new file mode 100644
index 00000000..5c35dc5f
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedAggregateRootBase.cs
@@ -0,0 +1,28 @@
+using System;
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class FullAuditedAggregateRootBase : FullAuditedAggregateRoot,IBranch, IEnabled, IRemark
+
+ {
+ protected FullAuditedAggregateRootBase() { }
+ public FullAuditedAggregateRootBase(TKey id) : base(id) { }
+
+ ///
+ /// 分支ID
+ ///
+ public TKey BranchId { get; set; }
+
+ ///
+ /// 是否有效
+ ///
+ public bool Enabled { get; set; } = true;
+
+ ///
+ /// 备注
+ ///
+ public string Remark { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentBase.cs
new file mode 100644
index 00000000..6fd00522
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentBase.cs
@@ -0,0 +1,32 @@
+using System.Collections.Generic;
+using Win.Sfs.Shared.Enums;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class FullAuditedDocumentBase : FullAuditedAggregateRootBase, IDocumentNumber, IUpstreamDocument
+ {
+ protected FullAuditedDocumentBase() { }
+
+ public FullAuditedDocumentBase(TKey id) : base(id) { }
+
+ ///
+ /// 单据流水号
+ ///
+ public string DocumentNumber { get; set; }
+
+
+ ///
+ /// 单据类型
+ ///
+ public EnumDocumentType DocumentType { get; set; }
+
+
+ ///
+ /// 状态
+ ///
+ public EnumDocumentStatus DocumentStatus { get; set; }
+
+ public List UpstreamDocuments { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentDetailBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentDetailBase.cs
new file mode 100644
index 00000000..a825681c
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedDocumentDetailBase.cs
@@ -0,0 +1,45 @@
+using Win.Sfs.Shared.Enums;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class FullAuditedDocumentDetailBase : FullAuditedEntityBase,IDocumentNumber,IItem
+ {
+ protected FullAuditedDocumentDetailBase() { }
+
+ public FullAuditedDocumentDetailBase(TKey id) : base(id) { }
+
+ ///
+ /// 行号
+ ///
+ public int LineNumber { get; set; } = 0;
+
+ ///
+ /// 单据ID
+ ///
+ public TKey DocumentId { get; set; }
+
+ ///
+ /// 单据流水号
+ ///
+ public string DocumentNumber { get; set; }
+
+
+ ///
+ /// 明细状态
+ ///
+ public EnumDetailStatusType DetailStatus { get; set; }
+
+ ///
+ /// 物品ID
+ ///
+ public TKey ItemId { get; set; }
+
+
+
+ ///
+ /// 物品Code
+ ///
+ public string ItemCode { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedEntityBase.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedEntityBase.cs
new file mode 100644
index 00000000..dd689d43
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/FullAuditedEntityBase.cs
@@ -0,0 +1,27 @@
+using System;
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public abstract class FullAuditedEntityBase : FullAuditedEntity,IBranch, IEnabled, IRemark
+ {
+ protected FullAuditedEntityBase() { }
+ public FullAuditedEntityBase(TKey id) : base(id) { }
+
+ ///
+ /// 分支ID
+ ///
+ public TKey BranchId { get; set; }
+
+ ///
+ /// 是否有效
+ ///
+ public bool Enabled { get; set; } = true;
+
+ ///
+ /// 备注
+ ///
+ public string Remark { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/IBaseDataDistributedCache.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/IBaseDataDistributedCache.cs
new file mode 100644
index 00000000..eec6f69d
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/IBaseDataDistributedCache.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Threading.Tasks;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ // public interface IBaseDataDistributedCache where TEntity:class
+ // {
+ // Task GetEntityById(Guid guid);
+ // Task GetNameById(Guid guid);
+ // Task LoadEntitiesCache(IDistributedCache cache);
+ // Task LoadEntitiesCache(IDistributedCache cache);
+ //
+ // }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/IDocumentNumber.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/IDocumentNumber.cs
new file mode 100644
index 00000000..11943788
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/IDocumentNumber.cs
@@ -0,0 +1,7 @@
+namespace Win.Sfs.Shared.DomainBase
+{
+ public interface IDocumentNumber
+ {
+ string DocumentNumber { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/IHasDetails.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/IHasDetails.cs
new file mode 100644
index 00000000..b3204beb
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/IHasDetails.cs
@@ -0,0 +1,59 @@
+using System;
+using System.Collections.Generic;
+using JetBrains.Annotations;
+using Volo.Abp.Guids;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public interface IHasDetails
+ {
+ ///
+ /// 添加明细项
+ ///
+ /// Guid生成器
+ /// 明细项实体
+ void AddDetail([NotNull] IGuidGenerator guidGenerator, TDetailEntity detail);
+
+ ///
+ /// 添加明细项列表
+ ///
+ /// Guid生成器
+ /// 明细项实体列表
+ void AddDetails([NotNull] IGuidGenerator guidGenerator, IEnumerable details);
+
+ /////
+ ///// 删除明细项
+ /////
+ ///// 明细项键
+ //void RemoveDetail(TDetailKey detailKey);
+
+ /////
+ ///// 删除明细项列表
+ /////
+ ///// 明细项键列表
+ //void RemoveDetails(List detailKeys);
+
+ ///
+ /// 判断输入明细项键是否在列表中
+ ///
+ /// 明细项键
+ /// 布尔值:是否存在
+ bool IsInDetails(TDetailKey detailKey);
+
+ ///
+ /// 更新明细项
+ ///
+ ///
+ /// 明细项实体
+ ///
+ bool UpdateDetail(IGuidGenerator guidGenerator, TDetailEntity detail);
+
+ ///
+ /// 根据明细项键查找明细项
+ ///
+ /// 聚合根ID
+ /// 明细项键
+ /// 明细项实体
+ TDetailEntity FindDetail(TDetailKey detailKey);
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/IItem.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/IItem.cs
new file mode 100644
index 00000000..aeca365e
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/IItem.cs
@@ -0,0 +1,8 @@
+namespace Win.Sfs.Shared.DomainBase
+{
+ public interface IItem
+ {
+ TKey ItemId { get; set; }
+ string ItemCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/ISerialNumber.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/ISerialNumber.cs
new file mode 100644
index 00000000..e3d0baca
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/ISerialNumber.cs
@@ -0,0 +1,7 @@
+namespace Win.Sfs.Shared.DomainBase
+{
+ public interface ISerialNumber
+ {
+ string SerialNumber { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/IUpstreamDocument.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/IUpstreamDocument.cs
new file mode 100644
index 00000000..a52f4d8c
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/IUpstreamDocument.cs
@@ -0,0 +1,13 @@
+using System.Collections.Generic;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public interface IUpstreamDocument
+ {
+ //TKey UpstreamDocumentId { get; set; }
+
+
+ List UpstreamDocuments { get; set; }
+
+ }
+}
\ No newline at end of file
diff --git a/code/src/Shared/Win.Sfs.Shared/DomainBase/ValueObjectBase/CurrencyPrice.cs b/code/src/Shared/Win.Sfs.Shared/DomainBase/ValueObjectBase/CurrencyPrice.cs
new file mode 100644
index 00000000..367230b6
--- /dev/null
+++ b/code/src/Shared/Win.Sfs.Shared/DomainBase/ValueObjectBase/CurrencyPrice.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Values;
+
+namespace Win.Sfs.Shared.DomainBase
+{
+ public class CurrencyPrice:ValueObject
+ {
+ public decimal Price { set; get; }
+ public string Currency { set; get; }
+ public decimal Rate { set; get; }
+ protected override IEnumerable