diff --git a/Base64.cs b/Base64.cs
new file mode 100644
index 0000000..37d3d26
--- /dev/null
+++ b/Base64.cs
@@ -0,0 +1,58 @@
+using System.Management.Automation;
+using System;
+
+namespace Base64
+{
+ [Cmdlet(VerbsData.ConvertTo, "Base64String")]
+ [OutputType(typeof(string))]
+ public class ConvertToBase64Command : Cmdlet
+ {
+ // Declare the parameters for the cmdlet.
+ [Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
+ [Alias("InputString","String","Text")]
+ public string InputObject { get; set; }
+
+
+ [Parameter]
+ [ArgumentCompleter(typeof(EncodingCompleter))]
+ [EncodingTransform]
+ public System.Text.Encoding Encoding { get; set; } = EncodingTransformAttribute.StandardEncoding["UTF8"];
+
+
+ //This is the "Process {}" block of a Powershell script
+ protected override void ProcessRecord()
+ {
+ //WriteObject("Hello " + name + "!");
+
+ byte[] bytes = Encoding.GetBytes(InputObject);
+ WriteObject(Convert.ToBase64String(bytes), true);
+
+ }
+ } //class
+
+ [Cmdlet(VerbsData.ConvertFrom, "Base64String")]
+ [OutputType(typeof(string))]
+ public class ConvertFromBase64Command : Cmdlet
+ {
+ // Declare the parameters for the cmdlet.
+ [Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
+ [Alias("InputString","String","Text")]
+ public string InputObject { get; set; }
+
+
+ [Parameter]
+ [ArgumentCompleter(typeof(EncodingCompleter))]
+ [EncodingTransform]
+ public System.Text.Encoding Encoding { get; set; } = EncodingTransformAttribute.StandardEncoding["UTF8"];
+
+
+ //This is the "Process {}" block of a Powershell script
+ protected override void ProcessRecord()
+ {
+ //WriteObject("Hello " + name + "!");
+ // $Encoding.GetString([System.Convert]::FromBase64String($Base64String))
+ byte[] bytes = Convert.FromBase64String(InputObject);
+ WriteObject(Encoding.GetString(bytes), true);
+ }
+ } //class
+} //namespace
\ No newline at end of file
diff --git a/Base64.csproj b/Base64.csproj
new file mode 100644
index 0000000..e1d2830
--- /dev/null
+++ b/Base64.csproj
@@ -0,0 +1,11 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
diff --git a/EncodingTransformAttribute.cs b/EncodingTransformAttribute.cs
new file mode 100644
index 0000000..4a34371
--- /dev/null
+++ b/EncodingTransformAttribute.cs
@@ -0,0 +1,87 @@
+using System.Management.Automation;
+using System.Management.Automation.Language;
+using System.Collections;
+using System.Collections.Generic;
+using System.Text;
+using System;
+
+namespace Base64
+{
+ class EncodingTransformAttribute : ArgumentTransformationAttribute
+ {
+ public EncodingTransformAttribute() { }
+ internal static Dictionary StandardEncoding = new Dictionary()
+ {
+ { "ASCII", Encoding.ASCII },
+ { "UnicodeBE", Encoding.BigEndianUnicode },
+ { "Unicode", Encoding.Unicode },
+ { "UTF32", Encoding.UTF32 },
+ { "UTF7", Encoding.UTF7 },
+ { "UTF8", new UTF8Encoding(encoderShouldEmitUTF8Identifier: false) },
+ { "UTF8BOM", Encoding.UTF8 }
+ };
+
+ public override object Transform(EngineIntrinsics engineIntrinsics, object inputData)
+ {
+ switch (inputData)
+ {
+ case Encoding e:
+ return e;
+ case string s:
+ if (StandardEncoding.ContainsKey(s))
+ {
+ return StandardEncoding[s];
+ }
+ else
+ {
+ return Encoding.GetEncoding(s);
+ }
+ default:
+ throw new ArgumentTransformationMetadataException();
+ }
+ }
+
+ public override string ToString()
+ {
+ return "[EncodingTransformAttribute]";
+ }
+ }
+
+ class EncodingCompleter : IArgumentCompleter
+ {
+ public EncodingCompleter() { }
+ public IEnumerable CompleteArgument(
+ string commandName,
+ string parameterName,
+ string wordToComplete,
+ CommandAst commandAst,
+ IDictionary fakeBoundParameters)
+ {
+ List encodingValues = new List(EncodingTransformAttribute.StandardEncoding.Keys);
+
+ if (!string.IsNullOrEmpty(wordToComplete))
+ {
+ foreach (string encoding in encodingValues)
+ {
+ yield return new CompletionResult(
+ completionText: encoding,
+ listItemText: encoding,
+ resultType: CompletionResultType.ParameterValue,
+ toolTip: string.Format("{0} {1}", "[Encoding]", encoding));
+ }
+ }
+ else
+ {
+ var filteredList = encodingValues.FindAll(x => x.StartsWith(wordToComplete, StringComparison.OrdinalIgnoreCase));
+ foreach (string result in filteredList)
+ {
+ yield return new CompletionResult(
+ completionText: result,
+ listItemText: result,
+ resultType: CompletionResultType.ParameterValue,
+ toolTip: string.Format("{0} {1}", "[Encoding]", result));
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp2.1/Base64.deps.json b/bin/Debug/netcoreapp2.1/Base64.deps.json
new file mode 100644
index 0000000..4943038
--- /dev/null
+++ b/bin/Debug/netcoreapp2.1/Base64.deps.json
@@ -0,0 +1,3815 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v2.1",
+ "signature": "41fb2c6d483853257f0df87b4c535eb3a19ca94c"
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v2.1": {
+ "Base64/1.0.0": {
+ "dependencies": {
+ "Microsoft.PowerShell.SDK": "6.1.1",
+ "PowerShellStandard.Library": "5.1.0"
+ },
+ "runtime": {
+ "Base64.dll": {}
+ }
+ },
+ "Markdig.Signed/0.15.4": {
+ "runtime": {
+ "lib/netstandard2.0/Markdig.dll": {
+ "assemblyVersion": "0.15.4.0",
+ "fileVersion": "0.15.4.0"
+ }
+ }
+ },
+ "Microsoft.ApplicationInsights/2.7.2": {
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "4.5.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Net.Requests": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {
+ "assemblyVersion": "2.7.2.0",
+ "fileVersion": "2.7.2.23439"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/2.6.1": {},
+ "Microsoft.CodeAnalysis.Common/2.9.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "2.6.1",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Collections.Immutable": "1.5.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.FileVersionInfo": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.ValueTuple": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XPath.XDocument": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "2.9.0.0",
+ "fileVersion": "2.9.0.63208"
+ }
+ },
+ "resources": {
+ "lib/netstandard1.3/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netstandard1.3/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard1.3/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard1.3/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard1.3/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard1.3/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard1.3/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard1.3/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netstandard1.3/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard1.3/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard1.3/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netstandard1.3/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard1.3/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/2.9.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "2.9.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "2.9.0.0",
+ "fileVersion": "2.9.0.63208"
+ }
+ },
+ "resources": {
+ "lib/netstandard1.3/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netstandard1.3/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard1.3/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard1.3/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard1.3/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard1.3/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard1.3/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard1.3/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netstandard1.3/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard1.3/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard1.3/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netstandard1.3/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard1.3/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Management.Infrastructure/1.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.VisualC": "4.3.0",
+ "System.Runtime.Serialization.Xml": "4.3.0",
+ "System.Security.SecureString": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win10-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win10-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win10-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win10-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win7-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win7-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win7-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win7-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win8-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win8-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win8-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win8-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win81-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win81-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
+ "rid": "win81-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
+ "rid": "win81-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm/native/mi.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm/native/miutils.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm64/native/mi.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win-arm64/native/miutils.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "10.0.16299.15"
+ },
+ "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win10-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14886.1000"
+ },
+ "runtimes/win10-x64/native/mi.dll": {
+ "rid": "win10-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14886.1000"
+ },
+ "runtimes/win10-x64/native/miutils.dll": {
+ "rid": "win10-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14886.1000"
+ },
+ "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win10-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win10-x86/native/mi.dll": {
+ "rid": "win10-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win10-x86/native/miutils.dll": {
+ "rid": "win10-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win7-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x64/native/mi.dll": {
+ "rid": "win7-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x64/native/miutils.dll": {
+ "rid": "win7-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win7-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x86/native/mi.dll": {
+ "rid": "win7-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win7-x86/native/miutils.dll": {
+ "rid": "win7-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win8-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x64/native/mi.dll": {
+ "rid": "win8-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x64/native/miutils.dll": {
+ "rid": "win8-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win8-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x86/native/mi.dll": {
+ "rid": "win8-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win8-x86/native/miutils.dll": {
+ "rid": "win8-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win81-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x64/native/mi.dll": {
+ "rid": "win81-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x64/native/miutils.dll": {
+ "rid": "win81-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
+ "rid": "win81-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x86/native/mi.dll": {
+ "rid": "win81-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ },
+ "runtimes/win81-x86/native/miutils.dll": {
+ "rid": "win81-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.14394.1000"
+ }
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets/1.0.1": {},
+ "Microsoft.PowerShell.Commands.Diagnostics/6.1.1": {
+ "dependencies": {
+ "System.Management.Automation": "6.1.1"
+ },
+ "runtimeTargets": {
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Management/6.1.1": {
+ "dependencies": {
+ "Microsoft.PowerShell.Security": "6.1.1",
+ "System.ServiceProcess.ServiceController": "4.5.0"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.Commands.Management.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Commands.Utility/6.1.1": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.CSharp": "2.9.0",
+ "Microsoft.PowerShell.MarkdownRender": "6.1.1",
+ "NJsonSchema": "9.10.75",
+ "System.Management.Automation": "6.1.1"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.Commands.Utility.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.ConsoleHost/6.1.1": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.7.2",
+ "System.Management.Automation": "6.1.1"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.ConsoleHost.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/6.1.1": {
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.MarkdownRender/6.1.1": {
+ "dependencies": {
+ "Markdig.Signed": "0.15.4",
+ "System.Management.Automation": "6.1.1"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Native/6.1.0": {
+ "runtimeTargets": {
+ "runtimes/linux-arm/native/libpsl-native.so": {
+ "rid": "linux-arm",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libmi.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libpsl-native.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libpsrpclient.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libmi.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libpsl-native.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libpsrpclient.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-arm/native/pwrshplugin.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-arm/native/pwrshplugin.pdb": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-arm64/native/pwrshplugin.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-arm64/native/pwrshplugin.pdb": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x64/native/pwrshplugin.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x64/native/pwrshplugin.pdb": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x86/native/pwrshplugin.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "10.0.10011.16384"
+ },
+ "runtimes/win-x86/native/pwrshplugin.pdb": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.SDK/6.1.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
+ "Microsoft.PowerShell.Commands.Diagnostics": "6.1.1",
+ "Microsoft.PowerShell.Commands.Management": "6.1.1",
+ "Microsoft.PowerShell.Commands.Utility": "6.1.1",
+ "Microsoft.PowerShell.ConsoleHost": "6.1.1",
+ "Microsoft.PowerShell.Security": "6.1.1",
+ "Microsoft.WSMan.Management": "6.1.1",
+ "Microsoft.Windows.Compatibility": "2.0.1",
+ "System.Data.SqlClient": "4.5.1",
+ "System.IO.Packaging": "4.5.0",
+ "System.Management.Automation": "6.1.1",
+ "System.Net.Http.WinHttpHandler": "4.5.1",
+ "System.Private.ServiceModel": "4.5.3",
+ "System.ServiceModel.Duplex": "4.5.3",
+ "System.ServiceModel.Http": "4.5.3",
+ "System.ServiceModel.NetTcp": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3",
+ "System.ServiceModel.Security": "4.5.3",
+ "System.Text.Encodings.Web": "4.5.0",
+ "System.Threading.AccessControl": "4.5.0"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.SDK.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.PowerShell.Security/6.1.1": {
+ "dependencies": {
+ "System.Management.Automation": "6.1.1"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.PowerShell.Security.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry.AccessControl/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Security.AccessControl": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "Microsoft.Win32.SystemEvents/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "Microsoft.Windows.Compatibility/2.0.1": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "Microsoft.Win32.Registry.AccessControl": "4.5.0",
+ "Microsoft.Win32.SystemEvents": "4.5.0",
+ "System.CodeDom": "4.5.0",
+ "System.ComponentModel.Composition": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Data.DataSetExtensions": "4.5.0",
+ "System.Data.Odbc": "4.5.0",
+ "System.Data.SqlClient": "4.5.1",
+ "System.Diagnostics.EventLog": "4.5.0",
+ "System.Diagnostics.PerformanceCounter": "4.5.0",
+ "System.DirectoryServices": "4.5.0",
+ "System.DirectoryServices.AccountManagement": "4.5.0",
+ "System.DirectoryServices.Protocols": "4.5.0",
+ "System.Drawing.Common": "4.5.0",
+ "System.IO.FileSystem.AccessControl": "4.5.0",
+ "System.IO.Packaging": "4.5.0",
+ "System.IO.Pipes.AccessControl": "4.5.0",
+ "System.IO.Ports": "4.5.0",
+ "System.Management": "4.5.0",
+ "System.Runtime.Caching": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Security.Cryptography.Pkcs": "4.5.1",
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Cryptography.Xml": "4.5.0",
+ "System.Security.Permissions": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1",
+ "System.ServiceModel.Duplex": "4.5.3",
+ "System.ServiceModel.Http": "4.5.3",
+ "System.ServiceModel.NetTcp": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3",
+ "System.ServiceModel.Security": "4.5.3",
+ "System.ServiceModel.Syndication": "4.5.0",
+ "System.ServiceProcess.ServiceController": "4.5.0",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "System.Threading.AccessControl": "4.5.0"
+ }
+ },
+ "Microsoft.WSMan.Management/6.1.1": {
+ "dependencies": {
+ "Microsoft.WSMan.Runtime": "6.1.1",
+ "System.Management.Automation": "6.1.1",
+ "System.ServiceProcess.ServiceController": "4.5.0"
+ },
+ "runtimeTargets": {
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.WSMan.Management.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.WSMan.Management.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.WSMan.Management.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.WSMan.Management.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Microsoft.WSMan.Runtime/6.1.1": {
+ "runtimeTargets": {
+ "runtimes/win-arm/lib/netstandard2.0/Microsoft.WSMan.Runtime.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/Microsoft.WSMan.Runtime.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/Microsoft.WSMan.Runtime.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/Microsoft.WSMan.Runtime.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "Newtonsoft.Json/11.0.2": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.0.2.21924"
+ }
+ }
+ },
+ "NJsonSchema/9.10.75": {
+ "dependencies": {
+ "Newtonsoft.Json": "11.0.2"
+ },
+ "runtime": {
+ "lib/netstandard1.0/NJsonSchema.dll": {
+ "assemblyVersion": "9.10.75.0",
+ "fileVersion": "9.10.75.0"
+ }
+ }
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Management.Automation.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "5.1.0.0"
+ }
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/debian.8-x64/native/_._": {
+ "rid": "debian.8-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/fedora.23-x64/native/_._": {
+ "rid": "fedora.23-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/fedora.24-x64/native/_._": {
+ "rid": "fedora.24-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {},
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {},
+ "runtime.native.System.Net.Http/4.3.0": {},
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/opensuse.13.2-x64/native/_._": {
+ "rid": "opensuse.13.2-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/opensuse.42.1-x64/native/_._": {
+ "rid": "opensuse.42.1-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "runtimeTargets": {
+ "runtime/osx.10.10-x64/native/_._": {
+ "rid": "osx.10.10-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/osx.10.10-x64/native/_._": {
+ "rid": "osx.10.10-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/rhel.7-x64/native/_._": {
+ "rid": "rhel.7-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/ubuntu.14.04-x64/native/_._": {
+ "rid": "ubuntu.14.04-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/ubuntu.16.04-x64/native/_._": {
+ "rid": "ubuntu.16.04-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "runtimeTargets": {
+ "runtime/ubuntu.16.10-x64/native/_._": {
+ "rid": "ubuntu.16.10-x64",
+ "assetType": "native"
+ }
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.CodeDom/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "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.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.5.0": {},
+ "System.ComponentModel.Composition/4.5.0": {
+ "dependencies": {
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.ComponentModel.Composition.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "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": {
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Data.DataSetExtensions/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Data.Odbc/4.5.0": {
+ "runtime": {
+ "lib/netcoreapp2.0/System.Data.Odbc.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": {
+ "rid": "linux",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Data.SqlClient/4.5.1": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assemblyVersion": "4.4.0.0",
+ "fileVersion": "4.6.26606.5"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.4.0.0",
+ "fileVersion": "4.6.26606.5"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.4.0.0",
+ "fileVersion": "4.6.26606.5"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.5.0": {},
+ "System.Diagnostics.EventLog/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Security.Permissions": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1",
+ "System.Threading.AccessControl": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.FileVersionInfo/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Diagnostics.PerformanceCounter/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "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.Diagnostics.StackTrace/4.3.0": {
+ "dependencies": {
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.6.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.DirectoryServices/4.5.0": {
+ "dependencies": {
+ "System.IO.FileSystem.AccessControl": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.DirectoryServices.AccountManagement/4.5.0": {
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.DirectoryServices": "4.5.0",
+ "System.DirectoryServices.Protocols": "4.5.0",
+ "System.IO.FileSystem.AccessControl": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.DirectoryServices.Protocols/4.5.0": {
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Drawing.Common/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Drawing.Common.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Dynamic.Runtime/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.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "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.Globalization/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "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.AccessControl/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Packaging/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.IO.Packaging.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.IO.Pipes.AccessControl/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.IO.Ports/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.IO.Ports.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "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.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.Management/4.5.0": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.CodeDom": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Management.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Management.Automation/6.1.1": {
+ "dependencies": {
+ "Microsoft.Management.Infrastructure": "1.0.0",
+ "Microsoft.PowerShell.CoreCLR.Eventing": "6.1.1",
+ "Microsoft.PowerShell.Native": "6.1.0",
+ "Microsoft.Win32.Registry.AccessControl": "4.5.0",
+ "Newtonsoft.Json": "11.0.2",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.DirectoryServices": "4.5.0",
+ "System.IO.FileSystem.AccessControl": "4.5.0",
+ "System.Management": "4.5.0",
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Cryptography.Pkcs": "4.5.1",
+ "System.Security.Permissions": "4.5.0",
+ "System.Text.Encoding.CodePages": "4.5.0"
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "linux-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/linux-x64/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "linux-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/osx/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "win-arm",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-arm64/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "win-arm64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x64/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "win-x64",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ },
+ "runtimes/win-x86/lib/netstandard2.0/System.Management.Automation.dll": {
+ "rid": "win-x86",
+ "assetType": "runtime",
+ "assemblyVersion": "6.1.1.0",
+ "fileVersion": "6.1.1.0"
+ }
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.5.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Net.Http.WinHttpHandler/4.5.1": {
+ "runtime": {
+ "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
+ "assemblyVersion": "4.0.3.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Net.Requests/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "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.Private.DataContractSerialization/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "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.Reflection": "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.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0",
+ "System.Xml.XmlSerializer": "4.3.0"
+ }
+ },
+ "System.Private.ServiceModel/4.5.3": {
+ "dependencies": {
+ "System.Reflection.DispatchProxy": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ },
+ "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.DispatchProxy/4.5.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": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {},
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "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": {
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {},
+ "System.Runtime.Caching/4.5.0": {
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.VisualC/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Private.DataContractSerialization": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "dependencies": {
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtimeTargets": {
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/osx/lib/_._": {
+ "rid": "osx",
+ "assetType": "runtime"
+ },
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {
+ "runtimeTargets": {
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Pkcs/4.5.1": {
+ "dependencies": {
+ "System.Security.Cryptography.Cng": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {
+ "assemblyVersion": "4.0.3.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.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.Cryptography.X509Certificates/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.5.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.Security.Cryptography.Xml/4.5.0": {
+ "dependencies": {
+ "System.Security.Cryptography.Pkcs": "4.5.1",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/4.5.1": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "4.1.1.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.1.1.1",
+ "fileVersion": "4.6.26919.2"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.1.1.1",
+ "fileVersion": "4.6.26919.2"
+ }
+ }
+ },
+ "System.Security.SecureString/4.3.0": {
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtimeTargets": {
+ "runtime/unix/lib/_._": {
+ "rid": "unix",
+ "assetType": "runtime"
+ },
+ "runtime/win/lib/_._": {
+ "rid": "win",
+ "assetType": "runtime"
+ }
+ }
+ },
+ "System.ServiceModel.Duplex/4.5.3": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.ServiceModel.Http/4.5.3": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.Http.dll": {
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.ServiceModel.NetTcp/4.5.3": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.ServiceModel.Primitives/4.5.3": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ },
+ "lib/netstandard2.0/System.ServiceModel.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.ServiceModel.Security/4.5.3": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.5.3",
+ "System.ServiceModel.Primitives": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.Security.dll": {
+ "assemblyVersion": "4.5.0.3",
+ "fileVersion": "4.6.26720.1"
+ }
+ }
+ },
+ "System.ServiceModel.Syndication/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceModel.Syndication.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.ServiceProcess.ServiceController/4.5.0": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.AccessControl/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.AccessControl.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "dependencies": {
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Thread/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.ValueTuple/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Xml.ReaderWriter/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.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlDocument/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.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "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.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ }
+ },
+ "System.Xml.XPath/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.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XPath.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "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.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XPath": "4.3.0"
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Base64/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Markdig.Signed/0.15.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AkqXmF8WULK7x0RBmkFmNF+klUbSbDzIahDhaCykrt62ru92TA5LTaLoSij75XSFEGS/NUwjJpRCAAddDLAOpQ==",
+ "path": "markdig.signed/0.15.4",
+ "hashPath": "markdig.signed.0.15.4.nupkg.sha512"
+ },
+ "Microsoft.ApplicationInsights/2.7.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ejLDFc4ZREZ2Q3tPrj/zy1Wtz2pkEbyIR/cMonSpcaOrTliJrLjBuqBzc/oni5x+jMssgQcc2ylUH5O3VzGpmg==",
+ "path": "microsoft.applicationinsights/2.7.2",
+ "hashPath": "microsoft.applicationinsights.2.7.2.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Analyzers/2.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VsT6gg2SPeToP8SK7PEcsH6Ftryb7aOqnXh9xg11zBeov05+63gP3k/TvrR+v85XIa8Nn0y3+qNl4M+qzNLBfw==",
+ "path": "microsoft.codeanalysis.analyzers/2.6.1",
+ "hashPath": "microsoft.codeanalysis.analyzers.2.6.1.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/2.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-M06oYATUMAqL/ympQ09zNHOrRc6sEwgsiueK6z+QPOgyr028i54NviKy7Evfcvv7Kr0LX9MEmrKXPO2NZ+bZ5Q==",
+ "path": "microsoft.codeanalysis.common/2.9.0",
+ "hashPath": "microsoft.codeanalysis.common.2.9.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/2.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oiCPHjCLZtyAz/vnMRJI0PrhR/amJiR9RIwPpQ3+DMs7TgegGn65/dqYEcoiWSj8YQvwOK/J640EXMydMDLJVQ==",
+ "path": "microsoft.codeanalysis.csharp/2.9.0",
+ "hashPath": "microsoft.codeanalysis.csharp.2.9.0.nupkg.sha512"
+ },
+ "Microsoft.Management.Infrastructure/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EhQ4sbjNu4rL39YVhRSKMzCaMNBSwSJi17t8LtAOW94WQTkhQCEhlMukFU2AtWOBW3zGIrvg85XRS+w0nuGxKw==",
+ "path": "microsoft.management.infrastructure/1.0.0",
+ "hashPath": "microsoft.management.infrastructure.1.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "path": "microsoft.netcore.windows.apisets/1.0.1",
+ "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Diagnostics/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BimyF9KjObj2HOMcKO/rm49oQ7wTruaxfV7pd+dvzKjCH+Ix5V6mUDh6NnoEMZYtq9KJHvqaw3Bc2wMSjQCjYw==",
+ "path": "microsoft.powershell.commands.diagnostics/6.1.1",
+ "hashPath": "microsoft.powershell.commands.diagnostics.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Management/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nH3mMsQ85ChY25Vgjibl/9bdprpOiEEuft1alhGNHoDqTdwFJ+ei14GBTJyZAp2ENZleMduZz7x4DgASvIcZ8Q==",
+ "path": "microsoft.powershell.commands.management/6.1.1",
+ "hashPath": "microsoft.powershell.commands.management.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Commands.Utility/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Tk+yfjSe6rdo3g10QunuPD5PL+4FGLjJ+qTmXI6lfo81NYJOZ6Q2raSlL5ozERa1eOKSw71/ThQAKly81JUSww==",
+ "path": "microsoft.powershell.commands.utility/6.1.1",
+ "hashPath": "microsoft.powershell.commands.utility.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.ConsoleHost/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ldzxN8t0mMb+74XALhzDngrmPbJDIg1cP2e67kwIDUO/R/opnfI+l+o8/z1ckvpPuPxdXv/kuASgA5RNy5im6w==",
+ "path": "microsoft.powershell.consolehost/6.1.1",
+ "hashPath": "microsoft.powershell.consolehost.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.CoreCLR.Eventing/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pKhusALI6NIkNZviRPtjJd3gqXTkznAKMWoUTTlqdIKd+Yun8VIaJAQ+XxRLmqwWrnPgeSm99idtrP/LtlWHJA==",
+ "path": "microsoft.powershell.coreclr.eventing/6.1.1",
+ "hashPath": "microsoft.powershell.coreclr.eventing.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.MarkdownRender/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PLrGgakr05uxnoV4qSGAniXZXMkQyiJEJsMTi5ePMtmBCQn4A10tjvPtUV7mep6jXP8P+uA6LishgQQcw7KX5Q==",
+ "path": "microsoft.powershell.markdownrender/6.1.1",
+ "hashPath": "microsoft.powershell.markdownrender.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Native/6.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uuFHqAcjxcCUcoH24d2+745m3oZp66cpMttGdtSrRyRgIigDE1NRZhloJDujGqBDKZ7qAsu/HA9ZXfgetgVyBg==",
+ "path": "microsoft.powershell.native/6.1.0",
+ "hashPath": "microsoft.powershell.native.6.1.0.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.SDK/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SoLb1H90y7rYEQety8dceWOEbbQoxqF/k/RMJhP5XhcIhTHmr4tvFN3bjXB6bQePcoi5V8Ejv6EEW0RiAjJ1+w==",
+ "path": "microsoft.powershell.sdk/6.1.1",
+ "hashPath": "microsoft.powershell.sdk.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.PowerShell.Security/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-39VC13/3tTB+ajBpgPr0cojgl8Naih7JWuU5cG1cmF1MbKK2lYXpADKOnsUGriNO4bpWf84Vn6odhVN6yLttvg==",
+ "path": "microsoft.powershell.security/6.1.1",
+ "hashPath": "microsoft.powershell.security.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vduxuHEqRgRrTE8wYG8Wxj/+6wwzddOmZzjKZx6rFMc/91aUBxI5etAFYxesoNaIja5NpgSTcnk6cN8BeYXf9A==",
+ "path": "microsoft.win32.registry/4.5.0",
+ "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f2aT8NLc9DsB1VEaM4jlYF9DFLA12+ccmWzWA0HEVC3Vgac7tGLSgrU6jtUG+VO1/R5zA6AomQ2pKqJ+5SDWyQ==",
+ "path": "microsoft.win32.registry.accesscontrol/4.5.0",
+ "hashPath": "microsoft.win32.registry.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.SystemEvents/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
+ "path": "microsoft.win32.systemevents/4.5.0",
+ "hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Windows.Compatibility/2.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Jr7WwcS0GXqOQSQQwzf/GhZBdH9TKsOPqnSkTAI3AX27BRbHLbAq4+2Kg9ixC7U/nZPsfMH4k6UaL2yujaI/Ug==",
+ "path": "microsoft.windows.compatibility/2.0.1",
+ "hashPath": "microsoft.windows.compatibility.2.0.1.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Management/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nkmMlX5pnsWFg0Z5bDYrGgxyWZvLJMgWsfzo4HnpTBb5McaemP1p/05k++AscDSeXTKBQJIiHVO8yCXb6J02wA==",
+ "path": "microsoft.wsman.management/6.1.1",
+ "hashPath": "microsoft.wsman.management.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.WSMan.Runtime/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjpiBitzILzXIvpb8bBO/gnK//YkT1z9TF8u9EQGWPLdKye/rdQPyoxiLEHguBcuX3NG7zTee6rgTxhrno1lGg==",
+ "path": "microsoft.wsman.runtime/6.1.1",
+ "hashPath": "microsoft.wsman.runtime.6.1.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/11.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-znZGbws7E4BA9jxNZ7FuiIRI3C9hrgatVQSTKhIYZYNOud4M5VfGlTYi6RdYO5sQrebFuF/g9UEV3hOxDMXF6Q==",
+ "path": "newtonsoft.json/11.0.2",
+ "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
+ },
+ "NJsonSchema/9.10.75": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BDz/Tp4bBb6wB/qZCMZqIi3nrXaGgAzQDU3CRb0u6OKGKME6rsKIySc16Bn7hlI0U5FAQHP9cn0SyQNcovtinw==",
+ "path": "njsonschema/9.10.75",
+ "hashPath": "njsonschema.9.10.75.nupkg.sha512"
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v3Oz8Hic3f4+cxrqrzuHMv2nKkWp/BxQ+jC/0p65uZVoXkV8GSnqFQE1YxHxFB5bbKJSm9i5xmSGPQWBYP1yqg==",
+ "path": "powershellstandard.library/5.1.0",
+ "hashPath": "powershellstandard.library.5.1.0.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.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"
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
+ "path": "system.buffers/4.3.0",
+ "hashPath": "system.buffers.4.3.0.nupkg.sha512"
+ },
+ "System.CodeDom/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gqpR1EeXOuzNQWL7rOzmtdIz3CaXVjSQCiaGOs2ivjPwynKSJYm39X81fdlp7WuojZs/Z5t1k5ni7HtKQurhjw==",
+ "path": "system.codedom/4.5.0",
+ "hashPath": "system.codedom.4.5.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.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RGxi2aQoXgZ5ge0zxrKqI4PU9LrYYoLC+cnEnWXKsSduCOUhE1GEAAoTexUVT8RZOILQyy1B27HC8Xw/XLGzdQ==",
+ "path": "system.collections.immutable/1.5.0",
+ "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Composition/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+iB9FoZnfdqMEGq6np28X6YNSUrse16CakmIhV3h6PxEWt7jYxUN3Txs1D8MZhhf4QmyvK0F/EcIN0f4gGN0dA==",
+ "path": "system.componentmodel.composition/4.5.0",
+ "hashPath": "system.componentmodel.composition.4.5.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.Data.DataSetExtensions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
+ "path": "system.data.datasetextensions/4.5.0",
+ "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512"
+ },
+ "System.Data.Odbc/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9FEiWrYDNt/5KrqWr2V8eK3lgE61uhx0VV3mPwRCD6MBm1zurGd46LV87RsligKlThbHPpvLkIQnQ0Xv0YZLCg==",
+ "path": "system.data.odbc/4.5.0",
+ "hashPath": "system.data.odbc.4.5.0.nupkg.sha512"
+ },
+ "System.Data.SqlClient/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cTPUCClr34EGBnyazUeciMD6sNm9aiE/li3uGvJ7z5dGup9QxKwysUeKXIrCO0E5KtQQAzGORFEYmowyEpcL2A==",
+ "path": "system.data.sqlclient/4.5.1",
+ "hashPath": "system.data.sqlclient.4.5.1.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/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UumL3CJklk5WyEt0eImPmjeuyY1JgJ7Thmg2hAeZGKCv+9iuuAsoc2wcXjypdo3J8VNEmVCH2Bgn/kIw8NI2bA==",
+ "path": "system.diagnostics.diagnosticsource/4.5.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QaQAhEk18QSBPSu4VjXcznvjlg45IoXcJJNS5hcoqyyLj58g/SzQwpYXUrdzo+UtHV0grmOzFwABxhCYSTTp5Q==",
+ "path": "system.diagnostics.eventlog/4.5.0",
+ "hashPath": "system.diagnostics.eventlog.4.5.0.nupkg.sha512"
+ },
+ "System.Diagnostics.FileVersionInfo/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
+ "path": "system.diagnostics.fileversioninfo/4.3.0",
+ "hashPath": "system.diagnostics.fileversioninfo.4.3.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.Diagnostics.StackTrace/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
+ "path": "system.diagnostics.stacktrace/4.3.0",
+ "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.DirectoryServices/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6Uty9sMaeBG0/GIRTW4+DUTvuB/od5E6rY45JbEz1c2xMoPSA9GLov4KdiBEpjsEcsgORa6sC3vfh70tEJJaOw==",
+ "path": "system.directoryservices/4.5.0",
+ "hashPath": "system.directoryservices.4.5.0.nupkg.sha512"
+ },
+ "System.DirectoryServices.AccountManagement/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m9Blc7UXAVMG60+CWhC9KC4y+4azuiHu3QOvII27BYfV8TDmaay6smZrrx1u7DhfJ4Gjt14eKzj8VO2aR9/aBw==",
+ "path": "system.directoryservices.accountmanagement/4.5.0",
+ "hashPath": "system.directoryservices.accountmanagement.4.5.0.nupkg.sha512"
+ },
+ "System.DirectoryServices.Protocols/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EpWC9CW2GdFiWzhWEIcXX8tMPGRdrpL+1BI4WyBYG4G1TlOuMXO3bpyLydEo5/3ThDFPzWfp0Yp0u360dGwvJQ==",
+ "path": "system.directoryservices.protocols/4.5.0",
+ "hashPath": "system.directoryservices.protocols.4.5.0.nupkg.sha512"
+ },
+ "System.Drawing.Common/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
+ "path": "system.drawing.common/4.5.0",
+ "hashPath": "system.drawing.common.4.5.0.nupkg.sha512"
+ },
+ "System.Dynamic.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
+ "path": "system.dynamic.runtime/4.3.0",
+ "hashPath": "system.dynamic.runtime.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.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.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.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TYe6xstoqT5MlTly0OtPU6u9zWuNScLVMEx6sTCjjx+Hqdp0wCXoG6fnzMpTPMQACXQzi9pd2N5Tloow+5jQdQ==",
+ "path": "system.io.filesystem.accesscontrol/4.5.0",
+ "hashPath": "system.io.filesystem.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Packaging/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OjtW5pGp1E7KE3ontBrzy+nSFJCM6pcbVDdo3gg4DauTfdtZKdeKvMVlADF4fSY+OfXWUp4qCvOSxIltt37LbA==",
+ "path": "system.io.packaging/4.5.0",
+ "hashPath": "system.io.packaging.4.5.0.nupkg.sha512"
+ },
+ "System.IO.Pipes.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uqKLJb0Cukb8vG6JVKbJXOAmMWUWOue4ZTjMn7qrfGLZHww3iV8xV1amipI238kmmoFQx6I8GP2bjDM/ss5pQQ==",
+ "path": "system.io.pipes.accesscontrol/4.5.0",
+ "hashPath": "system.io.pipes.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "System.IO.Ports/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bd6tcZZbTeNKOLUm2KZboJug0VRP8IW7HEC/zuILEO1THGXrHWhskIYtfiKOeCEEfqskK34MeVO6zWjr2Vlpw==",
+ "path": "system.io.ports/4.5.0",
+ "hashPath": "system.io.ports.4.5.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.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.Management/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6ac0qPGr3yJtwZEX1SRkhwWa0Kf5NJxx7smLboYsGrApQFECNFdqhGy252T4lrZ5Nwzhd9VQiaifndR3bfHdg==",
+ "path": "system.management/4.5.0",
+ "hashPath": "system.management.4.5.0.nupkg.sha512"
+ },
+ "System.Management.Automation/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/h1NjF4kvjpgKsn3snokjxWbqSnfx44g4PJ3Ij/CIUWs4+yCjS/Xu3vh5UVJOAa7l/aALdDHQgEuYEST9WzoqQ==",
+ "path": "system.management.automation/6.1.1",
+ "hashPath": "system.management.automation.6.1.1.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z1UfSF6dlpCdZdxh6LeoGlYH+q6ptG/iiIWgUUeKhE3DbQACmZkU7Sz2nOX0qdHjz72MOdYRbkSJ5Qwl6sZgvg==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Http.WinHttpHandler/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QyYQm129aW5S4U6my8IPwXqzqE5Q2LIKtHzqZmrCrLslQeiL2qJK3B43JJ4S4sScSYxExbsTrvs6AkiIipyJog==",
+ "path": "system.net.http.winhttphandler/4.5.1",
+ "hashPath": "system.net.http.winhttphandler.4.5.1.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Requests/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
+ "path": "system.net.requests/4.3.0",
+ "hashPath": "system.net.requests.4.3.0.nupkg.sha512"
+ },
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
+ "path": "system.net.webheadercollection/4.3.0",
+ "hashPath": "system.net.webheadercollection.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.Private.DataContractSerialization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
+ "path": "system.private.datacontractserialization/4.3.0",
+ "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
+ },
+ "System.Private.ServiceModel/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==",
+ "path": "system.private.servicemodel/4.5.3",
+ "hashPath": "system.private.servicemodel.4.5.3.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.DispatchProxy/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==",
+ "path": "system.reflection.dispatchproxy/4.5.0",
+ "hashPath": "system.reflection.dispatchproxy.4.5.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.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4aWCii7N1bmn43vviRfJQYW6UAco1G/CcjJouvgGdb/sr2BRTSnddhaPMg2oxu9VHFn8T1z3dTLq0pna8zmtA==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.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.Caching/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
+ "path": "system.runtime.caching/4.5.0",
+ "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6zBxkHYemB0kQiHP3vGXGRXejZVoNVuMn2paUuqKKi5Wyjkxfkp+D0rd0c3VrGwotidRINt6KpOi2smL4VkJKw==",
+ "path": "system.runtime.compilerservices.unsafe/4.5.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.VisualC/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/dcn1oXqK/p/VnTYWNSf4OXlFIfzCRE/kqWz4+/r5B2S4zlKifB1FqklEEYs5zmE1JE3syvrJ5U4syOwsDQZbA==",
+ "path": "system.runtime.compilerservices.visualc/4.3.0",
+ "hashPath": "system.runtime.compilerservices.visualc.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.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
+ "path": "system.runtime.serialization.primitives/4.3.0",
+ "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Xml/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==",
+ "path": "system.runtime.serialization.xml/4.3.0",
+ "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aVjTe36YkO8FzfNhMLoPEzv3gF9rphoW9ngFhG/MH4zzEPLx07sNrgCLwMP4Wx2leI6qarMrGv21OwQXYUKLmw==",
+ "path": "system.security.accesscontrol/4.5.0",
+ "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O4tqXxWCD8y1IU1VTgzbuBFwoRahrADhDUxHjwezhHCsqyFNyQ5EytjWBxu0EsZuH14b4UO2pFkG063K2h/9Ug==",
+ "path": "system.security.cryptography.cng/4.5.0",
+ "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Pkcs/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Eo8piLJTnGBiBy3/VIhhJy2ruBVVP+ks0/u3WQ6jvCfgCiAJxMqSF0ZpK64J92LCZyjmHx5FtyUkSCCUhXn1Bw==",
+ "path": "system.security.cryptography.pkcs/4.5.1",
+ "hashPath": "system.security.cryptography.pkcs.4.5.1.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.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.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Xml/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UvxfrEg7YG7U6BQO8WdQ4Nu1LFt2lqYQnoZefaK/2RDvjYdJ+norsVe4dwOqo14XiipgYY5xNUo6VhQXNbl2vg==",
+ "path": "system.security.cryptography.xml/4.5.0",
+ "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vDQ7q30Soe0a1cPhvxn+7IFmMeTG5IP+hTQrnKQDjTNpD2epqwbZSzMM2Git5TXBr4Kwwhc/0SEtJY0qPoiegA==",
+ "path": "system.security.permissions/4.5.0",
+ "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-L3R/xk1s+AJB/ZRrwXyjXMmKp+RNgLP92LSidWEM0iCouznJoiiBloDCxRTjmo8hTDAKSWaMrltsttUzg1RhjA==",
+ "path": "system.security.principal.windows/4.5.1",
+ "hashPath": "system.security.principal.windows.4.5.1.nupkg.sha512"
+ },
+ "System.Security.SecureString/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
+ "path": "system.security.securestring/4.3.0",
+ "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
+ },
+ "System.ServiceModel.Duplex/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cXn6zfl2od9Au3sDpArjUXo7zmNPLw77sjOrAUqjrh3TsImy8SPMSC4/F58jJGJrxUiyPo0DDwalRaF5JXZqsQ==",
+ "path": "system.servicemodel.duplex/4.5.3",
+ "hashPath": "system.servicemodel.duplex.4.5.3.nupkg.sha512"
+ },
+ "System.ServiceModel.Http/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zxR4z6G/FFK/uAUbo7+3IJOqm0w4/lyfHSQDf+hhUHRTc7XSeReGS5iKQq95gyl1ighHEuayqOiB7iacrB6ZUg==",
+ "path": "system.servicemodel.http/4.5.3",
+ "hashPath": "system.servicemodel.http.4.5.3.nupkg.sha512"
+ },
+ "System.ServiceModel.NetTcp/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bx4oVK4ApBvZ0C3J62A8p3j6U0XK54JjN0byK52Qw4EgK89Uc48XzbF+0m1Oysc2bnnbrur+SwFWw7J8co3jTQ==",
+ "path": "system.servicemodel.nettcp/4.5.3",
+ "hashPath": "system.servicemodel.nettcp.4.5.3.nupkg.sha512"
+ },
+ "System.ServiceModel.Primitives/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==",
+ "path": "system.servicemodel.primitives/4.5.3",
+ "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512"
+ },
+ "System.ServiceModel.Security/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-e0c5f536zJ2qEp8sDbI88Tm+NLkx9eqGiXQbQx5fQEtCfQ/dqPOwluu/3aAj/9Bc5XdBAaQcElmr1kyjr2j3EA==",
+ "path": "system.servicemodel.security/4.5.3",
+ "hashPath": "system.servicemodel.security.4.5.3.nupkg.sha512"
+ },
+ "System.ServiceModel.Syndication/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Tm3vhsv0PnrU7avYEP6vSQiqr+Dhe7N8NPbnInWMhSSmIMmutyfSg349pqnv0JboK3l/9eHNiX4KD5NMUsvhmQ==",
+ "path": "system.servicemodel.syndication/4.5.0",
+ "hashPath": "system.servicemodel.syndication.4.5.0.nupkg.sha512"
+ },
+ "System.ServiceProcess.ServiceController/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8DGUtcNHf9TlvSVemKMFiqcOWJ4OdGBgvpcGL/cYossGf5ApMQdPUQS8vXHTBmlbYAcG+JXsjMFGAHp2oJrr+Q==",
+ "path": "system.serviceprocess.servicecontroller/4.5.0",
+ "hashPath": "system.serviceprocess.servicecontroller.4.5.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.CodePages/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-16EVkWmNnoH3/Yj9c5s5VuLK5Uv/Dnkc3P2kMmnD7wJcUuvcHVvM2IhVJanf2hHRZUitH+cIkPCPHrBoCXc7Rw==",
+ "path": "system.text.encoding.codepages/4.5.0",
+ "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JF+wDdfFiRl3rz3dPMfR6aR568AW2J5CUMmhSflgHDz4zbVK4/00ax8UHnHyEMvblPewgNugjuA4oyoL8Pex2g==",
+ "path": "system.text.encodings.web/4.5.0",
+ "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.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.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZU4JNV9eHPw3TAdIJCDH07u9EfGFGgNJnaga8aFjcdvIIZKq4A+ZqaQNvUMFIbdCMPceYzt8JT5MdYIXAOlJ9A==",
+ "path": "system.threading.accesscontrol/4.5.0",
+ "hashPath": "system.threading.accesscontrol.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.Tasks.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
+ "path": "system.threading.tasks.extensions/4.3.0",
+ "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
+ "path": "system.threading.tasks.parallel/4.3.0",
+ "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Thread/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
+ "path": "system.threading.thread/4.3.0",
+ "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
+ "path": "system.threading.threadpool/4.3.0",
+ "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
+ },
+ "System.ValueTuple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
+ "path": "system.valuetuple/4.3.0",
+ "hashPath": "system.valuetuple.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
+ "path": "system.xml.xmldocument/4.3.0",
+ "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
+ "path": "system.xml.xmlserializer/4.3.0",
+ "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XPath/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
+ "path": "system.xml.xpath/4.3.0",
+ "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XPath.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
+ "path": "system.xml.xpath.xdocument/4.3.0",
+ "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp2.1/Base64.dll b/bin/Debug/netcoreapp2.1/Base64.dll
new file mode 100644
index 0000000..a6af385
Binary files /dev/null and b/bin/Debug/netcoreapp2.1/Base64.dll differ
diff --git a/bin/Debug/netcoreapp2.1/Base64.pdb b/bin/Debug/netcoreapp2.1/Base64.pdb
new file mode 100644
index 0000000..0a6c58f
Binary files /dev/null and b/bin/Debug/netcoreapp2.1/Base64.pdb differ
diff --git a/bin/Debug/netstandard2.0/Base64.deps.json b/bin/Debug/netstandard2.0/Base64.deps.json
new file mode 100644
index 0000000..87eaea4
--- /dev/null
+++ b/bin/Debug/netstandard2.0/Base64.deps.json
@@ -0,0 +1,63 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": "c0138b41eb6e245807d6fa02006cff5099960524"
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "Base64/1.0.0": {
+ "dependencies": {
+ "NETStandard.Library": "2.0.3",
+ "PowerShellStandard.Library": "5.1.0"
+ },
+ "runtime": {
+ "Base64.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "NETStandard.Library/2.0.3": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Management.Automation.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "5.1.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Base64/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.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"
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v3Oz8Hic3f4+cxrqrzuHMv2nKkWp/BxQ+jC/0p65uZVoXkV8GSnqFQE1YxHxFB5bbKJSm9i5xmSGPQWBYP1yqg==",
+ "path": "powershellstandard.library/5.1.0",
+ "hashPath": "powershellstandard.library.5.1.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netstandard2.0/Base64.dll b/bin/Debug/netstandard2.0/Base64.dll
new file mode 100644
index 0000000..6f66bc2
Binary files /dev/null and b/bin/Debug/netstandard2.0/Base64.dll differ
diff --git a/bin/Debug/netstandard2.0/Base64.pdb b/bin/Debug/netstandard2.0/Base64.pdb
new file mode 100644
index 0000000..8b8652f
Binary files /dev/null and b/bin/Debug/netstandard2.0/Base64.pdb differ
diff --git a/bin/Debug/netstandard2.0/netstandard.dll b/bin/Debug/netstandard2.0/netstandard.dll
new file mode 100644
index 0000000..1f1ab22
Binary files /dev/null and b/bin/Debug/netstandard2.0/netstandard.dll differ
diff --git a/obj/Base64.csproj.nuget.cache b/obj/Base64.csproj.nuget.cache
new file mode 100644
index 0000000..a91a216
--- /dev/null
+++ b/obj/Base64.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "Gzwg77Y+9szAQehqXUUq7ABxZVDfzu7FJYQtjvzIu5oyyL/BQREwupPd8LCtSSJiA27yvGvkZ6vUue2wlt3Wpg==",
+ "success": true
+}
\ No newline at end of file
diff --git a/obj/Base64.csproj.nuget.g.props b/obj/Base64.csproj.nuget.g.props
new file mode 100644
index 0000000..1c24efc
--- /dev/null
+++ b/obj/Base64.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ C:\Github\Base64\obj\project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\svalding\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 4.9.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/obj/Base64.csproj.nuget.g.targets b/obj/Base64.csproj.nuget.g.targets
new file mode 100644
index 0000000..f09823b
--- /dev/null
+++ b/obj/Base64.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/netcoreapp2.1/Base64.AssemblyInfo.cs b/obj/Debug/netcoreapp2.1/Base64.AssemblyInfo.cs
new file mode 100644
index 0000000..2961b60
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/Base64.AssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// Generated by the MSBuild WriteCodeFragment class.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Base64")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Base64")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Base64")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/obj/Debug/netcoreapp2.1/Base64.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp2.1/Base64.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..cc6ebfe
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/Base64.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+deee2cb37b510f32ad70d109c9e953b22e9ed3f6
diff --git a/obj/Debug/netcoreapp2.1/Base64.assets.cache b/obj/Debug/netcoreapp2.1/Base64.assets.cache
new file mode 100644
index 0000000..8f90d93
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/Base64.assets.cache differ
diff --git a/obj/Debug/netcoreapp2.1/Base64.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp2.1/Base64.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..56043d3
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/Base64.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+ff8dcf1bbe8b4634ef0b12278966f6a2c873e2d0
diff --git a/obj/Debug/netcoreapp2.1/Base64.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp2.1/Base64.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..cd08a1e
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/Base64.csproj.FileListAbsolute.txt
@@ -0,0 +1,9 @@
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.csprojAssemblyReference.cache
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.csproj.CoreCompileInputs.cache
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.AssemblyInfoInputs.cache
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.AssemblyInfo.cs
+C:\Github\Base64\bin\Debug\netcoreapp2.1\Base64.deps.json
+C:\Github\Base64\bin\Debug\netcoreapp2.1\Base64.dll
+C:\Github\Base64\bin\Debug\netcoreapp2.1\Base64.pdb
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.dll
+C:\Github\Base64\obj\Debug\netcoreapp2.1\Base64.pdb
diff --git a/obj/Debug/netcoreapp2.1/Base64.csprojAssemblyReference.cache b/obj/Debug/netcoreapp2.1/Base64.csprojAssemblyReference.cache
new file mode 100644
index 0000000..b441e5b
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/Base64.csprojAssemblyReference.cache differ
diff --git a/obj/Debug/netcoreapp2.1/Base64.dll b/obj/Debug/netcoreapp2.1/Base64.dll
new file mode 100644
index 0000000..a6af385
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/Base64.dll differ
diff --git a/obj/Debug/netcoreapp2.1/Base64.pdb b/obj/Debug/netcoreapp2.1/Base64.pdb
new file mode 100644
index 0000000..0a6c58f
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/Base64.pdb differ
diff --git a/obj/Debug/netstandard2.0/Base64.AssemblyInfo.cs b/obj/Debug/netstandard2.0/Base64.AssemblyInfo.cs
new file mode 100644
index 0000000..2961b60
--- /dev/null
+++ b/obj/Debug/netstandard2.0/Base64.AssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// Generated by the MSBuild WriteCodeFragment class.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Base64")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Base64")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Base64")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/obj/Debug/netstandard2.0/Base64.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.0/Base64.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..cc6ebfe
--- /dev/null
+++ b/obj/Debug/netstandard2.0/Base64.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+deee2cb37b510f32ad70d109c9e953b22e9ed3f6
diff --git a/obj/Debug/netstandard2.0/Base64.assets.cache b/obj/Debug/netstandard2.0/Base64.assets.cache
new file mode 100644
index 0000000..6303c6c
Binary files /dev/null and b/obj/Debug/netstandard2.0/Base64.assets.cache differ
diff --git a/obj/Debug/netstandard2.0/Base64.csproj.CoreCompileInputs.cache b/obj/Debug/netstandard2.0/Base64.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..65e4738
--- /dev/null
+++ b/obj/Debug/netstandard2.0/Base64.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+31e5c0db726a9c26b6019ceb788c4189f2448e36
diff --git a/obj/Debug/netstandard2.0/Base64.csproj.FileListAbsolute.txt b/obj/Debug/netstandard2.0/Base64.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..1a56086
--- /dev/null
+++ b/obj/Debug/netstandard2.0/Base64.csproj.FileListAbsolute.txt
@@ -0,0 +1,9 @@
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.csprojAssemblyReference.cache
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.csproj.CoreCompileInputs.cache
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.AssemblyInfoInputs.cache
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.AssemblyInfo.cs
+C:\Github\Base64\bin\Debug\netstandard2.0\Base64.deps.json
+C:\Github\Base64\bin\Debug\netstandard2.0\Base64.dll
+C:\Github\Base64\bin\Debug\netstandard2.0\Base64.pdb
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.dll
+C:\Github\Base64\obj\Debug\netstandard2.0\Base64.pdb
diff --git a/obj/Debug/netstandard2.0/Base64.csprojAssemblyReference.cache b/obj/Debug/netstandard2.0/Base64.csprojAssemblyReference.cache
new file mode 100644
index 0000000..d998ffc
Binary files /dev/null and b/obj/Debug/netstandard2.0/Base64.csprojAssemblyReference.cache differ
diff --git a/obj/Debug/netstandard2.0/Base64.dll b/obj/Debug/netstandard2.0/Base64.dll
new file mode 100644
index 0000000..6f66bc2
Binary files /dev/null and b/obj/Debug/netstandard2.0/Base64.dll differ
diff --git a/obj/Debug/netstandard2.0/Base64.pdb b/obj/Debug/netstandard2.0/Base64.pdb
new file mode 100644
index 0000000..8b8652f
Binary files /dev/null and b/obj/Debug/netstandard2.0/Base64.pdb differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..560cea8
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,261 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETStandard,Version=v2.0": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Management.Automation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Management.Automation.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
+ "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"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "PowerShellStandard.Library/5.1.0": {
+ "sha512": "v3Oz8Hic3f4+cxrqrzuHMv2nKkWp/BxQ+jC/0p65uZVoXkV8GSnqFQE1YxHxFB5bbKJSm9i5xmSGPQWBYP1yqg==",
+ "type": "package",
+ "path": "powershellstandard.library/5.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/System.Management.Automation.dll",
+ "powershellstandard.library.5.1.0.nupkg.sha512",
+ "powershellstandard.library.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETStandard,Version=v2.0": [
+ "NETStandard.Library >= 2.0.3",
+ "PowerShellStandard.Library >= 5.1.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\svalding\\.nuget\\packages\\": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Github\\Base64\\Base64.csproj",
+ "projectName": "Base64",
+ "projectPath": "C:\\Github\\Base64\\Base64.csproj",
+ "packagesPath": "C:\\Users\\svalding\\.nuget\\packages\\",
+ "outputPath": "C:\\Github\\Base64\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\svalding\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "PowerShellStandard.Library": {
+ "target": "Package",
+ "version": "[5.1.0, )"
+ }
+ },
+ "imports": [
+ "net461"
+ ],
+ "assetTargetFallback": true,
+ "warn": true
+ }
+ }
+ }
+}
\ No newline at end of file