Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/NuGet.BuildTasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet bot <dotnet-bot@microsoft.com>2015-12-09 03:45:21 +0300
committerJason Malinowski <jason.malinowski@microsoft.com>2016-01-12 21:58:48 +0300
commit2c1f0a9f00b95f81deabede87cd7e18f90a27a44 (patch)
treec5e27b6aed8fa645f213b6bc77b8ed7b85573afd
Seed with the source and tests from Visual Studio 2015 Update 1
This is the source that shipped in Visual Studio 2015 Update 1, with the following changes: - It's been pulled out of our internal build system into a standalone repository. As a result, a few assembly-level attributes of the built binaries will differ. - The source files were rearranged a bit. - Copyright headers have been updated. - The tests have been upgraded to use xUnit 2.1.
-rw-r--r--.gitattributes6
-rw-r--r--.gitignore7
-rw-r--r--LICENSE.txt14
-rw-r--r--NuGet.BuildTasks.sln28
-rw-r--r--ThirdPartyNotices.txt13
-rw-r--r--build/PublicKey.snkbin0 -> 160 bytes
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs36
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs55
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs24
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs31
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs89
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs89
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs109
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs80
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json109
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json14937
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs133
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx142
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json14503
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json10418
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json14297
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json201
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json131
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj97
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/NugetTestHelpers.cs149
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/PackageResolutionTestException.cs31
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs96
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/Properties/AssemblyInfo.cs18
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs342
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs37
-rw-r--r--src/Microsoft.NuGet.Build.Tasks.Tests/project.json8
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/.gitignore2
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/CultureStringUtilities.cs46
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Delegates.cs9
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs27
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets17
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props17
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/InternalsVisibleTo.cs6
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj84
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props14
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets245
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs25
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs38
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs123
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Properties/AssemblyInfo.cs15
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs890
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs153
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Strings.resx150
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/project.json5
49 files changed, 58096 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..642760f
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,6 @@
+* text=auto encoding=UTF-8
+
+*.cs text diff=csharp
+*.csproj text
+*.props text
+*.targets text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..771d583
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+.vs
+bin/
+obj/
+*.user
+project.lock.json
+*.nuget.props
+*.nuget.targets
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..6bfd8f9
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,14 @@
+NuGet.BuildTasks
+
+Copyright (c) .NET Foundation. All rights reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License"); you may not use
+these files except in compliance with the License. You may obtain a copy of the
+License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software distributed
+under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+CONDITIONS OF ANY KIND, either express or implied. See the License for the
+specific language governing permissions and limitations under the License.
diff --git a/NuGet.BuildTasks.sln b/NuGet.BuildTasks.sln
new file mode 100644
index 0000000..bd7a466
--- /dev/null
+++ b/NuGet.BuildTasks.sln
@@ -0,0 +1,28 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.NuGet.Build.Tasks", "src\Microsoft.NuGet.Build.Tasks\Microsoft.NuGet.Build.Tasks.csproj", "{55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.NuGet.Build.Tasks.Tests", "src\Microsoft.NuGet.Build.Tasks.Tests\Microsoft.NuGet.Build.Tasks.Tests.csproj", "{61443D47-85B6-4519-96C1-2704BDF604BF}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {61443D47-85B6-4519-96C1-2704BDF604BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {61443D47-85B6-4519-96C1-2704BDF604BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {61443D47-85B6-4519-96C1-2704BDF604BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {61443D47-85B6-4519-96C1-2704BDF604BF}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/ThirdPartyNotices.txt b/ThirdPartyNotices.txt
new file mode 100644
index 0000000..cc96f0b
--- /dev/null
+++ b/ThirdPartyNotices.txt
@@ -0,0 +1,13 @@
+This project uses or incorporates third party material from the projects listed below. The original copyright notice and the license under which Microsoft received such third party material are set forth below. Microsoft reserves all other rights not expressly granted, whether by implication, estoppel or otherwise.
+
+Newtonsoft.Json 6.0.4
+
+The MIT License
+
+Copyright (c) 2007 James Newton-King
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file
diff --git a/build/PublicKey.snk b/build/PublicKey.snk
new file mode 100644
index 0000000..110b59c
--- /dev/null
+++ b/build/PublicKey.snk
Binary files differ
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs
new file mode 100644
index 0000000..e911701
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs
@@ -0,0 +1,36 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System.Linq;
+using Xunit;
+using static System.Text.Encoding;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ public class AnalyzerResolutionTests
+ {
+ [Fact]
+ public static void TestAnalyzerResolutionCSharp()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.analyzers),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "",
+ projectLanguage: "C#");
+
+ AssertHelpers.AssertCountOf(8, result.Analyzers);
+ }
+
+ [Fact]
+ public static void TestAnalyzerResolutionVisualBasic()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.analyzers),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "",
+ projectLanguage: "vb");
+
+ AssertHelpers.AssertCountOf(8, result.Analyzers);
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs
new file mode 100644
index 0000000..9453005
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs
@@ -0,0 +1,55 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Build.Framework;
+using Xunit;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ internal static class AssertHelpers
+ {
+ public static void AssertCountOf(int expectedCount, IEnumerable<ITaskItem> items)
+ {
+ Assert.True(items.Count() == expectedCount,
+ $"Expected {expectedCount} items, but actually got {items.Count()} items:" + Environment.NewLine + string.Join(Environment.NewLine, items.Select(i => i.ItemSpec)));
+ }
+
+ public static void AssertNoTargetPaths(IEnumerable<ITaskItem> items)
+ {
+ foreach (var item in items)
+ {
+ Assert.Equal("", item.GetMetadata("DestinationSubDirectory"));
+ Assert.Equal("", item.GetMetadata("TargetPath"));
+ }
+ }
+
+ public static void AssertConsistentTargetPaths(IEnumerable<ITaskItem> items)
+ {
+ var mapToItem = new Dictionary<string, ITaskItem>(StringComparer.OrdinalIgnoreCase);
+
+ foreach (var item in items)
+ {
+ string effectiveTargetPath = item.GetMetadata("TargetPath");
+
+ if (string.IsNullOrEmpty(effectiveTargetPath))
+ {
+ effectiveTargetPath = Path.GetFileName(item.ItemSpec);
+ }
+
+ ITaskItem conflictingItem;
+ if (mapToItem.TryGetValue(effectiveTargetPath, out conflictingItem))
+ {
+ Assert.True(conflictingItem == null, $"Item {item.ItemSpec} and {conflictingItem.ItemSpec} have the same TargetPath.");
+ }
+
+ mapToItem.Add(effectiveTargetPath, item);
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs
new file mode 100644
index 0000000..ad6ba43
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs
@@ -0,0 +1,24 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.IO;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public sealed class DisposableDirectory : TempDirectory, IDisposable
+ {
+ public DisposableDirectory(TempRoot root)
+ : base(root)
+ {
+ }
+
+ public void Dispose()
+ {
+ if (Path != null && Directory.Exists(Path))
+ {
+ Directory.Delete(Path, recursive: true);
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs
new file mode 100644
index 0000000..585023c
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs
@@ -0,0 +1,31 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.IO;
+using System.Runtime.InteropServices;
+using Microsoft.Win32.SafeHandles;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public sealed class DisposableFile : TempFile, IDisposable
+ {
+ public DisposableFile(string path)
+ : base(path)
+ {
+ }
+
+ public DisposableFile(TempRoot root, string prefix = null, string extension = null, string directory = null, string callerSourcePath = null, int callerLineNumber = 0)
+ : base(root, prefix, extension, directory, callerSourcePath, callerLineNumber)
+ {
+ }
+
+ public void Dispose()
+ {
+ if (Path != null && File.Exists(Path))
+ {
+ File.Delete(Path);
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs
new file mode 100644
index 0000000..8686871
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs
@@ -0,0 +1,89 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Build.Framework;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public class MockBuildEngine : IBuildEngine, IBuildEngine2, IBuildEngine3, IBuildEngine4
+ {
+ public MockBuildEngine(TextWriter output)
+ {
+ this.Output = output;
+ }
+
+ private TextWriter Output { get; }
+
+ int IBuildEngine.ColumnNumberOfTaskNode => -1;
+
+ bool IBuildEngine.ContinueOnError => false;
+
+ int IBuildEngine.LineNumberOfTaskNode => -1;
+
+ string IBuildEngine.ProjectFileOfTaskNode => "this.xml";
+
+ bool IBuildEngine2.IsRunningMultipleNodes => false;
+
+ bool IBuildEngine.BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs) => true;
+
+ void IBuildEngine.LogCustomEvent(CustomBuildEventArgs e)
+ {
+ this.Output.WriteLine($"Custom: {e.Message}");
+ }
+
+ void IBuildEngine.LogErrorEvent(BuildErrorEventArgs e)
+ {
+ this.Output.WriteLine($"Error: {e.Message}");
+ }
+
+ void IBuildEngine.LogMessageEvent(BuildMessageEventArgs e)
+ {
+ this.Output.WriteLine($"Message: {e.Message}");
+ }
+
+ void IBuildEngine.LogWarningEvent(BuildWarningEventArgs e)
+ {
+ this.Output.WriteLine($"Warning: {e.Message}");
+ }
+
+ private Dictionary<object, object> Tasks = new Dictionary<object, object>();
+
+ void IBuildEngine4.RegisterTaskObject(object key, object obj, RegisteredTaskObjectLifetime lifetime, bool allowEarlyCollection)
+ {
+ Tasks.Add(key, obj);
+ }
+
+ object IBuildEngine4.GetRegisteredTaskObject(object key, RegisteredTaskObjectLifetime lifetime)
+ {
+ return null;
+ }
+
+ object IBuildEngine4.UnregisterTaskObject(object key, RegisteredTaskObjectLifetime lifetime)
+ {
+ var obj = Tasks[key];
+ Tasks.Remove(key);
+ return obj;
+ }
+
+ BuildEngineResult IBuildEngine3.BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, IDictionary[] globalProperties, IList<string>[] removeGlobalProperties, string[] toolsVersion, bool returnTargetOutputs)
+ {
+ throw new NotImplementedException();
+ }
+
+ void IBuildEngine3.Yield() { }
+
+ void IBuildEngine3.Reacquire() { }
+
+ bool IBuildEngine2.BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs, string toolsVersion) => true;
+
+ bool IBuildEngine2.BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, IDictionary[] globalProperties, IDictionary[] targetOutputsPerProject, string[] toolsVersion, bool useResultsCache, bool unloadProjectsOnCompletion) => true;
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs
new file mode 100644
index 0000000..f092056
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs
@@ -0,0 +1,89 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Diagnostics;
+using System.IO;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public class TempDirectory
+ {
+ private readonly string _path;
+ private readonly TempRoot _root;
+
+ protected TempDirectory(TempRoot root)
+ : this(root.Root, root)
+ {
+ }
+
+ private TempDirectory(string path, TempRoot root)
+ {
+ Debug.Assert(path != null);
+ Debug.Assert(root != null);
+
+ _path = path;
+ _root = root;
+ }
+
+ private static string CreateUniqueDirectory(string basePath)
+ {
+ while (true)
+ {
+ string dir = System.IO.Path.Combine(basePath, Guid.NewGuid().ToString());
+ try
+ {
+ Directory.CreateDirectory(dir);
+ return dir;
+ }
+ catch (IOException)
+ {
+ // retry
+ }
+ }
+ }
+
+ public string Path
+ {
+ get { return _path; }
+ }
+
+ /// <summary>
+ /// Creates a file in this directory.
+ /// </summary>
+ /// <param name="name">File name.</param>
+ public TempFile CreateFile(string name)
+ {
+ string filePath = System.IO.Path.Combine(_path, name);
+ TempRoot.CreateStream(filePath);
+ return _root.AddFile(new DisposableFile(filePath));
+ }
+
+ /// <summary>
+ /// Creates a file in this directory that is a copy of the specified file.
+ /// </summary>
+ public TempFile CopyFile(string originalPath)
+ {
+ string name = System.IO.Path.GetFileName(originalPath);
+ string filePath = System.IO.Path.Combine(_path, name);
+ File.Copy(originalPath, filePath);
+ return _root.AddFile(new DisposableFile(filePath));
+ }
+
+ /// <summary>
+ /// Creates a subdirectory in this directory.
+ /// </summary>
+ /// <param name="name">Directory name or unrooted directory path.</param>
+ public TempDirectory CreateDirectory(string name)
+ {
+ string dirPath = System.IO.Path.Combine(_path, name);
+ Directory.CreateDirectory(dirPath);
+ return new TempDirectory(dirPath, _root);
+ }
+
+ public override string ToString()
+ {
+ return _path;
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs
new file mode 100644
index 0000000..5d8a0ad
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs
@@ -0,0 +1,109 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.IO;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public class TempFile
+ {
+ private readonly string _path;
+
+ internal TempFile(string path)
+ {
+ _path = path;
+ }
+
+ internal TempFile(TempRoot root, string prefix, string extension, string directory, string callerSourcePath, int callerLineNumber)
+ {
+ while (true)
+ {
+ if (prefix == null)
+ {
+ prefix = System.IO.Path.GetFileName(callerSourcePath) + "_" + callerLineNumber.ToString() + "_";
+ }
+
+ _path = System.IO.Path.Combine(directory ?? root.Root, prefix + Guid.NewGuid() + (extension ?? ".tmp"));
+
+ try
+ {
+ TempRoot.CreateStream(_path);
+ break;
+ }
+ catch (PathTooLongException)
+ {
+ throw;
+ }
+ catch (DirectoryNotFoundException)
+ {
+ throw;
+ }
+ catch (IOException)
+ {
+ // retry
+ }
+ }
+ }
+
+ public FileStream Open(FileAccess access = FileAccess.ReadWrite)
+ {
+ return new FileStream(_path, FileMode.Open, access);
+ }
+
+ public string Path
+ {
+ get { return _path; }
+ }
+
+ public TempFile WriteAllText(string content, Encoding encoding)
+ {
+ File.WriteAllText(_path, content, encoding);
+ return this;
+ }
+
+ public TempFile WriteAllText(string content)
+ {
+ File.WriteAllText(_path, content);
+ return this;
+ }
+
+ public async Task<TempFile> WriteAllTextAsync(string content, Encoding encoding)
+ {
+ using (var sw = new StreamWriter(File.Create(_path), encoding))
+ {
+ await sw.WriteAsync(content).ConfigureAwait(false);
+ }
+
+ return this;
+ }
+
+ public Task<TempFile> WriteAllTextAsync(string content)
+ {
+ return WriteAllTextAsync(content, Encoding.UTF8);
+ }
+
+ public TempFile WriteAllBytes(byte[] content)
+ {
+ File.WriteAllBytes(_path, content);
+ return this;
+ }
+
+ public string ReadAllText()
+ {
+ return File.ReadAllText(_path);
+ }
+
+ public TempFile CopyContentFrom(string path)
+ {
+ return WriteAllBytes(File.ReadAllBytes(path));
+ }
+
+ public override string ToString()
+ {
+ return _path;
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs
new file mode 100644
index 0000000..a1e4200
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs
@@ -0,0 +1,80 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Runtime.CompilerServices;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Helpers
+{
+ public sealed class TempRoot : IDisposable
+ {
+ private readonly List<IDisposable> _temps = new List<IDisposable>();
+ public readonly string Root;
+
+ public TempRoot(string rootPath = null)
+ {
+ if (rootPath == null)
+ {
+ Root = Path.Combine(Path.GetTempPath(), "NugetBuildTests");
+ }
+ else
+ {
+ Root = rootPath;
+ }
+
+ Directory.CreateDirectory(Root);
+ }
+
+ public void Dispose()
+ {
+ if (_temps != null)
+ {
+ DisposeAll(_temps);
+ _temps.Clear();
+ }
+ }
+
+ private static void DisposeAll(IEnumerable<IDisposable> temps)
+ {
+ foreach (var temp in temps)
+ {
+ try
+ {
+ if (temp != null)
+ {
+ temp.Dispose();
+ }
+ }
+ catch
+ {
+ // ignore
+ }
+ }
+ }
+
+ public DisposableDirectory CreateDirectory()
+ {
+ var dir = new DisposableDirectory(this);
+ _temps.Add(dir);
+ return dir;
+ }
+
+ public TempFile CreateFile(TempRoot root, string prefix = null, string extension = null, string directory = null, [CallerFilePath]string callerSourcePath = null, [CallerLineNumber]int callerLineNumber = 0)
+ {
+ return AddFile(new DisposableFile(root, prefix, extension, directory, callerSourcePath, callerLineNumber));
+ }
+
+ public DisposableFile AddFile(DisposableFile file)
+ {
+ _temps.Add(file);
+ return file;
+ }
+
+ internal static void CreateStream(string fullPath)
+ {
+ using (var file = new FileStream(fullPath, FileMode.CreateNew)) { }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json
new file mode 100644
index 0000000..18e968b
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json
@@ -0,0 +1,109 @@
+{
+ "locked": false,
+ "version": 1,
+ "targets": {
+ ".NETFramework,Version=v4.5.2": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/net45/FluentAssertions.Core.dll": {},
+ "lib/net45/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/net45/FluentAssertions.Core.dll": {},
+ "lib/net45/FluentAssertions.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "FluentAssertions/3.4.1": {
+ "sha512": "GTyLzP7d57D3HLVOSFrTSVwod3rZNQRMC2DR13u1hNNyhsskLrbI4SW5XXqyEv8WP7v8IqWx9hdlDiwLY0G8YA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "FluentAssertions.nuspec",
+ "lib/net40/FluentAssertions.Core.dll",
+ "lib/net40/FluentAssertions.Core.pdb",
+ "lib/net40/FluentAssertions.Core.xml",
+ "lib/net40/FluentAssertions.dll",
+ "lib/net40/FluentAssertions.pdb",
+ "lib/net40/FluentAssertions.xml",
+ "lib/net45/FluentAssertions.Core.dll",
+ "lib/net45/FluentAssertions.Core.pdb",
+ "lib/net45/FluentAssertions.Core.xml",
+ "lib/net45/FluentAssertions.dll",
+ "lib/net45/FluentAssertions.pdb",
+ "lib/net45/FluentAssertions.xml",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.dll",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.pdb",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.pdb",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.pdb",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.XML",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.dll",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.pdb",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.xml",
+ "lib/portable-win81+wpa81/FluentAssertions.dll",
+ "lib/portable-win81+wpa81/FluentAssertions.pdb",
+ "lib/portable-win81+wpa81/FluentAssertions.xml",
+ "lib/sl5/FluentAssertions.Core.dll",
+ "lib/sl5/FluentAssertions.Core.pdb",
+ "lib/sl5/FluentAssertions.Core.xml",
+ "lib/sl5/FluentAssertions.dll",
+ "lib/sl5/FluentAssertions.pdb",
+ "lib/sl5/FluentAssertions.xml",
+ "lib/sl5/Microsoft.CSharp.dll",
+ "lib/sl5/Microsoft.CSharp.xml",
+ "lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll",
+ "lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml",
+ "lib/sl5/System.Xml.Linq.dll",
+ "lib/sl5/System.Xml.Linq.xml",
+ "lib/sl5/de/Microsoft.CSharp.resources.dll",
+ "lib/sl5/de/System.Xml.Linq.resources.dll",
+ "lib/sl5/es/Microsoft.CSharp.resources.dll",
+ "lib/sl5/es/System.Xml.Linq.resources.dll",
+ "lib/sl5/fr/Microsoft.CSharp.resources.dll",
+ "lib/sl5/fr/System.Xml.Linq.resources.dll",
+ "lib/sl5/it/Microsoft.CSharp.resources.dll",
+ "lib/sl5/it/System.Xml.Linq.resources.dll",
+ "lib/sl5/ja/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ja/System.Xml.Linq.resources.dll",
+ "lib/sl5/ko/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ko/System.Xml.Linq.resources.dll",
+ "lib/sl5/ru/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ru/System.Xml.Linq.resources.dll",
+ "lib/sl5/zh-Hans/Microsoft.CSharp.resources.dll",
+ "lib/sl5/zh-Hans/System.Xml.Linq.resources.dll",
+ "lib/sl5/zh-Hant/Microsoft.CSharp.resources.dll",
+ "lib/sl5/zh-Hant/System.Xml.Linq.resources.dll",
+ "lib/win8/FluentAssertions.Core.dll",
+ "lib/win8/FluentAssertions.Core.pdb",
+ "lib/win8/FluentAssertions.Core.xml",
+ "lib/win8/FluentAssertions.dll",
+ "lib/win8/FluentAssertions.pdb",
+ "lib/win8/FluentAssertions.XML",
+ "lib/wp8/FluentAssertions.Core.dll",
+ "lib/wp8/FluentAssertions.Core.pdb",
+ "lib/wp8/FluentAssertions.Core.xml",
+ "lib/wp8/FluentAssertions.dll",
+ "lib/wp8/FluentAssertions.pdb",
+ "lib/wp8/FluentAssertions.xml",
+ "package/services/metadata/core-properties/c21a09dd42de4a6295af89109b879195.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "FluentAssertions >= 3.4.1"
+ ],
+ ".NETFramework,Version=v4.5.2": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json
new file mode 100644
index 0000000..30ff7f9
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json
@@ -0,0 +1,14937 @@
+{
+ "locked": false,
+ "version": 1,
+ "targets": {
+ "UAP,Version=v10.0": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-arm": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win8-arm/native/clretwrc.dll": {},
+ "runtimes/win8-arm/native/coreclr.dll": {},
+ "runtimes/win8-arm/native/dbgshim.dll": {},
+ "runtimes/win8-arm/native/mscordaccore.dll": {},
+ "runtimes/win8-arm/native/mscordbi.dll": {},
+ "runtimes/win8-arm/native/mscorrc.debug.dll": {},
+ "runtimes/win8-arm/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-arm-aot": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-x86": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x86/native/clretwrc.dll": {},
+ "runtimes/win7-x86/native/coreclr.dll": {},
+ "runtimes/win7-x86/native/dbgshim.dll": {},
+ "runtimes/win7-x86/native/mscordaccore.dll": {},
+ "runtimes/win7-x86/native/mscordbi.dll": {},
+ "runtimes/win7-x86/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x86/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": {
+ "native": {
+ "runtimes/win10-x86/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-x86-aot": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-x64": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x64/native/clretwrc.dll": {},
+ "runtimes/win7-x64/native/coreclr.dll": {},
+ "runtimes/win7-x64/native/dbgshim.dll": {},
+ "runtimes/win7-x64/native/mscordaccore.dll": {},
+ "runtimes/win7-x64/native/mscordbi.dll": {},
+ "runtimes/win7-x64/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x64/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": {
+ "native": {
+ "runtimes/win10-x64/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ "UAP,Version=v10.0/win10-x64-aot": {
+ "FluentAssertions/3.4.1": {
+ "frameworkAssemblies": [
+ "System.Xml",
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ },
+ "runtime": {
+ "lib/win8/FluentAssertions.Core.dll": {},
+ "lib/win8/FluentAssertions.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0, )",
+ "Microsoft.VisualBasic": "[10.0.0, )",
+ "System.AppContext": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Collections.Immutable": "[1.1.37, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.ComponentModel.Annotations": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Diagnostics.Tools": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Globalization.Calendars": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.IO.Compression.ZipFile": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Linq.Parallel": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Net.NetworkInformation": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Numerics.Vectors": "[4.1.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection.Metadata": "[1.0.22, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Runtime.Numerics": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Xml.XDocument": "[4.0.10, )",
+ "Microsoft.NETCore.Targets": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0": {
+ "dependencies": {
+ "System.Collections": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Debug": "[4.0.10, 4.0.10]",
+ "System.Globalization": "[4.0.10, 4.0.10]",
+ "System.IO": "[4.0.10, 4.0.10]",
+ "System.ObjectModel": "[4.0.10, 4.0.10]",
+ "System.Reflection": "[4.0.10, 4.0.10]",
+ "System.Runtime.Extensions": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding": "[4.0.10, 4.0.10]",
+ "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]",
+ "System.Threading": "[4.0.10, 4.0.10]",
+ "System.Threading.Tasks": "[4.0.10, 4.0.10]",
+ "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tools": "[4.0.0, 4.0.0]",
+ "System.Globalization.Calendars": "[4.0.0, 4.0.0]",
+ "System.Reflection.Extensions": "[4.0.0, 4.0.0]",
+ "System.Reflection.Primitives": "[4.0.0, 4.0.0]",
+ "System.Resources.ResourceManager": "[4.0.0, 4.0.0]",
+ "System.Runtime.Handles": "[4.0.0, 4.0.0]",
+ "System.Threading.Timer": "[4.0.0, 4.0.0]",
+ "System.Private.Uri": "[4.0.0, 4.0.0]",
+ "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]",
+ "System.Runtime": "[4.0.20, 4.0.20]",
+ "System.Runtime.InteropServices": "[4.0.20, 4.0.20]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0, )",
+ "Microsoft.NETCore": "[5.0.0, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Data.Common": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Diagnostics.StackTrace": "[4.0.0, )",
+ "System.IO.IsolatedStorage": "[4.0.0, )",
+ "System.Net.Http.Rtc": "[4.0.0, )",
+ "System.Net.Requests": "[4.0.10, )",
+ "System.Net.Sockets": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )",
+ "System.Reflection.Context": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Serialization.Json": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )",
+ "System.ServiceModel.Duplex": "[4.0.0, )",
+ "System.ServiceModel.Http": "[4.0.10, )",
+ "System.ServiceModel.NetTcp": "[4.0.0, )",
+ "System.ServiceModel.Primitives": "[4.0.0, )",
+ "System.ServiceModel.Security": "[4.0.0, )",
+ "System.Text.Encoding.CodePages": "[4.0.0, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Dynamic.Runtime": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Globalization.Extensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Primitives": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.Http": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.Networking": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Numerics.Vectors": "[4.1.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "Microsoft.Win32.Primitives": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.Threading.Overlapped": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Threading.Timer": "[4.0.0, )",
+ "System.Collections.Specialized": "[4.0.0, )",
+ "System.Collections.NonGeneric": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Security.Claims": "[4.0.0, )",
+ "System.Net.Http": "[4.0.0, )",
+ "System.Net.WebHeaderCollection": "[4.0.0, )",
+ "System.Reflection.DispatchProxy": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Linq.Queryable": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.IO.Compression": "[4.0.0, )",
+ "System.ObjectModel": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Xml.XmlSerializer": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10, )",
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Linq.Expressions": "[4.0.10, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Text.Encoding.Extensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Collections.Immutable": "[1.1.37, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Contracts": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )",
+ "System.Private.DataContractSerialization": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.ObjectModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Security.Principal": "[4.0.0, )",
+ "System.IO": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.IO": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.0, )",
+ "System.Collections.Concurrent": "[4.0.0, )",
+ "System.Collections": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )",
+ "System.Dynamic.Runtime": "[4.0.0, )",
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Diagnostics.Tracing": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Collections.Concurrent": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading.Tasks": "[4.0.10, )",
+ "System.Runtime.InteropServices": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.IO.FileSystem": "[4.0.0, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Text.RegularExpressions": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Text.Encoding.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.IO": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20, )",
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Xml.XmlDocument": "[4.0.0, )",
+ "System.Reflection.TypeExtensions": "[4.0.0, )",
+ "System.Reflection.Extensions": "[4.0.0, )",
+ "System.Linq": "[4.0.0, )",
+ "System.Collections": "[4.0.10, )",
+ "System.Diagnostics.Debug": "[4.0.10, )",
+ "System.Globalization": "[4.0.10, )",
+ "System.Xml.ReaderWriter": "[4.0.10, )",
+ "System.Reflection": "[4.0.10, )",
+ "System.IO": "[4.0.10, )",
+ "System.Threading": "[4.0.10, )",
+ "System.Runtime.Extensions": "[4.0.10, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Text.RegularExpressions": "[4.0.10, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "FluentAssertions/3.4.1": {
+ "sha512": "GTyLzP7d57D3HLVOSFrTSVwod3rZNQRMC2DR13u1hNNyhsskLrbI4SW5XXqyEv8WP7v8IqWx9hdlDiwLY0G8YA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "FluentAssertions.nuspec",
+ "lib/net40/FluentAssertions.Core.dll",
+ "lib/net40/FluentAssertions.Core.pdb",
+ "lib/net40/FluentAssertions.Core.xml",
+ "lib/net40/FluentAssertions.dll",
+ "lib/net40/FluentAssertions.pdb",
+ "lib/net40/FluentAssertions.xml",
+ "lib/net45/FluentAssertions.Core.dll",
+ "lib/net45/FluentAssertions.Core.pdb",
+ "lib/net45/FluentAssertions.Core.xml",
+ "lib/net45/FluentAssertions.dll",
+ "lib/net45/FluentAssertions.pdb",
+ "lib/net45/FluentAssertions.xml",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.dll",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.pdb",
+ "lib/portable-monotouch+monoandroid+xamarin.ios/FluentAssertions.Core.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.pdb",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.Core.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.pdb",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/FluentAssertions.XML",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.dll",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.pdb",
+ "lib/portable-win81+wpa81/FluentAssertions.Core.xml",
+ "lib/portable-win81+wpa81/FluentAssertions.dll",
+ "lib/portable-win81+wpa81/FluentAssertions.pdb",
+ "lib/portable-win81+wpa81/FluentAssertions.xml",
+ "lib/sl5/FluentAssertions.Core.dll",
+ "lib/sl5/FluentAssertions.Core.pdb",
+ "lib/sl5/FluentAssertions.Core.xml",
+ "lib/sl5/FluentAssertions.dll",
+ "lib/sl5/FluentAssertions.pdb",
+ "lib/sl5/FluentAssertions.xml",
+ "lib/sl5/Microsoft.CSharp.dll",
+ "lib/sl5/Microsoft.CSharp.xml",
+ "lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll",
+ "lib/sl5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml",
+ "lib/sl5/System.Xml.Linq.dll",
+ "lib/sl5/System.Xml.Linq.xml",
+ "lib/sl5/de/Microsoft.CSharp.resources.dll",
+ "lib/sl5/de/System.Xml.Linq.resources.dll",
+ "lib/sl5/es/Microsoft.CSharp.resources.dll",
+ "lib/sl5/es/System.Xml.Linq.resources.dll",
+ "lib/sl5/fr/Microsoft.CSharp.resources.dll",
+ "lib/sl5/fr/System.Xml.Linq.resources.dll",
+ "lib/sl5/it/Microsoft.CSharp.resources.dll",
+ "lib/sl5/it/System.Xml.Linq.resources.dll",
+ "lib/sl5/ja/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ja/System.Xml.Linq.resources.dll",
+ "lib/sl5/ko/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ko/System.Xml.Linq.resources.dll",
+ "lib/sl5/ru/Microsoft.CSharp.resources.dll",
+ "lib/sl5/ru/System.Xml.Linq.resources.dll",
+ "lib/sl5/zh-Hans/Microsoft.CSharp.resources.dll",
+ "lib/sl5/zh-Hans/System.Xml.Linq.resources.dll",
+ "lib/sl5/zh-Hant/Microsoft.CSharp.resources.dll",
+ "lib/sl5/zh-Hant/System.Xml.Linq.resources.dll",
+ "lib/win8/FluentAssertions.Core.dll",
+ "lib/win8/FluentAssertions.Core.pdb",
+ "lib/win8/FluentAssertions.Core.xml",
+ "lib/win8/FluentAssertions.dll",
+ "lib/win8/FluentAssertions.pdb",
+ "lib/win8/FluentAssertions.XML",
+ "lib/wp8/FluentAssertions.Core.dll",
+ "lib/wp8/FluentAssertions.Core.pdb",
+ "lib/wp8/FluentAssertions.Core.xml",
+ "lib/wp8/FluentAssertions.dll",
+ "lib/wp8/FluentAssertions.pdb",
+ "lib/wp8/FluentAssertions.xml",
+ "package/services/metadata/core-properties/c21a09dd42de4a6295af89109b879195.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "sha512": "HZ47/thX57SOuIivSvIbsR6L9CCb/Yt3IyB2i4KHmmNlf3DO+lqFwWIKDdbDNWKX+qh0Rg20/JSMPK0dwUsYYw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.dll",
+ "lib/net40/Microsoft.ApplicationInsights.XML",
+ "lib/net45/Microsoft.ApplicationInsights.dll",
+ "lib/net45/Microsoft.ApplicationInsights.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.XML",
+ "package/services/metadata/core-properties/b9e7bc7ab2454491af07046165ff01d0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "sha512": "0qQXC+CtbyF2RPuld5pF74fxsnP6ml0LUnzQ6GL9AXXY64LPsLDsPUAymoUffo7LZvPDppZboTYX59TfVxKA7A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.PersistenceChannel.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/portable-win8+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "package/services/metadata/core-properties/dc9ebba80e7343fdbd0a39a3cdeb672c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "sha512": "fNCAjIwvbTV+G0dT14bgM5tptsqeSaKQaCrlq7QknOq1Xdm8ZmgsDYddMgXkvykyKLjWyU6fKuOpj6fsQJy+wQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.WindowsApps.nuspec",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "package/services/metadata/core-properties/4f6f732debe548beaa1183418e8d65cc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.CSharp/4.0.0": {
+ "sha512": "ek68kIMAeEIpiK82SkIO6A6fLg3NY5ho306ijHl8HrIcgyaRzn2+yX+tIxkHL/Uq5TwWn2EhbLq+2V5ofrdcjg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.CSharp.nuspec",
+ "lib/dotnet/Microsoft.CSharp.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/Microsoft.CSharp.dll",
+ "ref/dotnet/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hant/Microsoft.CSharp.xml",
+ "ref/dotnet/de/Microsoft.CSharp.xml",
+ "ref/dotnet/fr/Microsoft.CSharp.xml",
+ "ref/dotnet/it/Microsoft.CSharp.xml",
+ "ref/dotnet/ja/Microsoft.CSharp.xml",
+ "ref/dotnet/ko/Microsoft.CSharp.xml",
+ "ref/dotnet/ru/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet/es/Microsoft.CSharp.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/26d8d2189faf4722996fa271104b1c2a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore/5.0.0": {
+ "sha512": "QvapvB4CvDDLYpN7xeV8dHYrB5GesDpEHu7PxgyJ6serutt+sp5JXigPbri2ygpRz+vvIG1Ac3M4qORyuJsziA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/8fe1dd90c9ac4cef8282bd7a41cffd4c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.0.0": {
+ "sha512": "rzZy74xWhF7qnkM20rGRN6ZGfCi1uFni6t+5BApjYyLHHI6cwXGikzBhAZ54Vb1qbqETVt2NrTwTd/qDDvaK0A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Platforms.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/cb27f3417ae44d86a32d013b3c57f71a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0": {
+ "sha512": "KgBMkstcBDtyKWofOn+fglu/An4qMAK/lMzHJR0Fl5x6Tv359Gyc+nRmSU6Xmjx5hkuYFpystL//FKHGs+UsXQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Portable.Compatibility.nuspec",
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "lib/netcore50/System.Core.dll",
+ "lib/netcore50/System.dll",
+ "lib/netcore50/System.Net.dll",
+ "lib/netcore50/System.Numerics.dll",
+ "lib/netcore50/System.Runtime.Serialization.dll",
+ "lib/netcore50/System.ServiceModel.dll",
+ "lib/netcore50/System.ServiceModel.Web.dll",
+ "lib/netcore50/System.Windows.dll",
+ "lib/netcore50/System.Xml.dll",
+ "lib/netcore50/System.Xml.Linq.dll",
+ "lib/netcore50/System.Xml.Serialization.dll",
+ "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll",
+ "lib/dnxcore50/System.Core.dll",
+ "lib/dnxcore50/System.dll",
+ "lib/dnxcore50/System.Net.dll",
+ "lib/dnxcore50/System.Numerics.dll",
+ "lib/dnxcore50/System.Runtime.Serialization.dll",
+ "lib/dnxcore50/System.ServiceModel.dll",
+ "lib/dnxcore50/System.ServiceModel.Web.dll",
+ "lib/dnxcore50/System.Windows.dll",
+ "lib/dnxcore50/System.Xml.dll",
+ "lib/dnxcore50/System.Xml.Linq.dll",
+ "lib/dnxcore50/System.Xml.Serialization.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/mscorlib.dll",
+ "ref/dotnet/System.ComponentModel.DataAnnotations.dll",
+ "ref/dotnet/System.Core.dll",
+ "ref/dotnet/System.dll",
+ "ref/dotnet/System.Net.dll",
+ "ref/dotnet/System.Numerics.dll",
+ "ref/dotnet/System.Runtime.Serialization.dll",
+ "ref/dotnet/System.ServiceModel.dll",
+ "ref/dotnet/System.ServiceModel.Web.dll",
+ "ref/dotnet/System.Windows.dll",
+ "ref/dotnet/System.Xml.dll",
+ "ref/dotnet/System.Xml.Linq.dll",
+ "ref/dotnet/System.Xml.Serialization.dll",
+ "runtimes/aot/lib/netcore50/mscorlib.dll",
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "runtimes/aot/lib/netcore50/System.Core.dll",
+ "runtimes/aot/lib/netcore50/System.dll",
+ "runtimes/aot/lib/netcore50/System.Net.dll",
+ "runtimes/aot/lib/netcore50/System.Numerics.dll",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
+ "runtimes/aot/lib/netcore50/System.Windows.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/mscorlib.dll",
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "ref/netcore50/System.Core.dll",
+ "ref/netcore50/System.dll",
+ "ref/netcore50/System.Net.dll",
+ "ref/netcore50/System.Numerics.dll",
+ "ref/netcore50/System.Runtime.Serialization.dll",
+ "ref/netcore50/System.ServiceModel.dll",
+ "ref/netcore50/System.ServiceModel.Web.dll",
+ "ref/netcore50/System.Windows.dll",
+ "ref/netcore50/System.Xml.dll",
+ "ref/netcore50/System.Xml.Linq.dll",
+ "ref/netcore50/System.Xml.Serialization.dll",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/3f622d393d2b48eaa62652717aed8d4e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime/1.0.0": {
+ "sha512": "CcbfLO4OPBRtVGWIl3cmiJzmrKz/PfiVbqsveYIUZXyyDj7IURQFe94uAqdc9YNBNQEp3dF2rv/6fwurpnqmdA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/96664f237f6e49c0b6767ecc1bc65ecb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": {
+ "sha512": "/Nj25wm/u15D7McwqmudWau1Lqe2azsQaVVB+//RcHh1aCAlvrW49tMP4R0gUa6SDgnXpxdvTiDYuioiL0k4Eg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec",
+ "runtimes/win8-arm/native/clretwrc.dll",
+ "runtimes/win8-arm/native/coreclr.dll",
+ "runtimes/win8-arm/native/dbgshim.dll",
+ "runtimes/win8-arm/native/mscordaccore.dll",
+ "runtimes/win8-arm/native/mscordbi.dll",
+ "runtimes/win8-arm/native/mscorrc.debug.dll",
+ "runtimes/win8-arm/native/mscorrc.dll",
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/df08f1e0eb0b472e807a2cb00c4e8405.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": {
+ "sha512": "X0ne1DcUdmdOPuM1WBXne9aW3+nGdpVuN0eErjC1hj1cTy16L4Uo9OlTKcd9k87RJvohQP/SSbCJ3Whw6ZGgJA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec",
+ "runtimes/win7-x64/native/clretwrc.dll",
+ "runtimes/win7-x64/native/coreclr.dll",
+ "runtimes/win7-x64/native/dbgshim.dll",
+ "runtimes/win7-x64/native/mscordaccore.dll",
+ "runtimes/win7-x64/native/mscordbi.dll",
+ "runtimes/win7-x64/native/mscorrc.debug.dll",
+ "runtimes/win7-x64/native/mscorrc.dll",
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/dd090f56e7c648da94a94ddf27b2e399.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": {
+ "sha512": "cdvDtwggMjzTBuW8o0FA0R5egKz+Yiz02T3CgtubmIrQNX8SFDnSJMINNeTg8OmH0dJ+/XxUu6ZBKl5lXl7kAg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec",
+ "runtimes/win7-x86/native/clretwrc.dll",
+ "runtimes/win7-x86/native/coreclr.dll",
+ "runtimes/win7-x86/native/dbgshim.dll",
+ "runtimes/win7-x86/native/mscordaccore.dll",
+ "runtimes/win7-x86/native/mscordbi.dll",
+ "runtimes/win7-x86/native/mscorrc.debug.dll",
+ "runtimes/win7-x86/native/mscorrc.dll",
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/a2453af8999848c5ad2fbae166a301f6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.Native/1.0.0": {
+ "sha512": "3B/pScOAjMHgS8A5KaWXrhMCJGeOTJ32b4PkkIpIC8o6ydXcwfpw9B2uhwGi62RmQqIVcf1D4Yg3AbVr/f3kVw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.Native.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/9be33e8ff28b4756bfba9ba5752876bb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.0.0": {
+ "sha512": "F/ba75ldHaZvcmN4Z395PX3grX5iHLybgC9M3MvmOD4pLd22Cu4+lsBua87SxV96VY9dTRPq3Z3QWIlD7u5+rw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/b93c4410b8ce44c8b2fce39cdf20a3a1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {
+ "sha512": "vI7MbqanupF6CwQvpRreYv0XC6NLqptP9MP3kNnd/CetDo06H554ElP0cFxGeor3bwDG04Nz83ZkoOGQPMy54w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/7f6f39c7021946a7b7d2beb09eb03077.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": {
+ "sha512": "+TIwYgh+XqK0bGe2BW2lhMPlAC0fUMpg+RhdF2y5fPyRU8EZJWg5AAOgGQI4YSzmOJ/SCNpreaFDB7ChCHX2+A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/ab7b3e4899f34e7caa004ac470957d64.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": {
+ "sha512": "bZUkkHlidRciKe+dv20qX/2wtFJY3yqks7AcuhtPKbNzo2BZFszUci8o/nwhzxS5LEBjEzpQRT8/VqVAt/fi/w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x64.nuspec",
+ "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x64/native/_._",
+ "package/services/metadata/core-properties/2e41b08eeb6445e083fca9fb8f7d6133.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": {
+ "sha512": "I09wW6KFkQqbYM0qro07LczeD/lp73LTITu0h7tjqJjOgA9bnCr1DOFtgo7DcSquQdtMpV7tQWzDBiirDI8ozQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x86.nuspec",
+ "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x86/native/_._",
+ "package/services/metadata/core-properties/573231c0f6064bcfbb71c76a119dea90.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.VisualBasic/10.0.0": {
+ "sha512": "VZ5ABF6c4b4s+gKynoI3gj+WQg7R0PR2ssRyuWURPgfkWgghnG8+7MrgDRLqhUqZrC28rABjKNtLxgTLbbCE8Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.VisualBasic.nuspec",
+ "lib/dotnet/Microsoft.VisualBasic.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.VisualBasic.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/Microsoft.VisualBasic.dll",
+ "ref/dotnet/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml",
+ "ref/dotnet/de/Microsoft.VisualBasic.xml",
+ "ref/dotnet/fr/Microsoft.VisualBasic.xml",
+ "ref/dotnet/it/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ja/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ko/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ru/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml",
+ "ref/dotnet/es/Microsoft.VisualBasic.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.VisualBasic.dll",
+ "ref/netcore50/Microsoft.VisualBasic.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/61924f7a57f146068bcf766645719546.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "sha512": "b/+Fw8M6dS9GjXvPDMM1ozV4qpCIY+wqpFjzvE1X9iJIxS1Z7Zipiakc9ajl8D9m8hFKLTx+w8ICpZHshfJXnw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.Win32.Primitives.nuspec",
+ "lib/dotnet/Microsoft.Win32.Primitives.dll",
+ "lib/net46/Microsoft.Win32.Primitives.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/Microsoft.Win32.Primitives.dll",
+ "ref/dotnet/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
+ "ref/net46/Microsoft.Win32.Primitives.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/ced988f10db64550a9e47ec4ceed5fb1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.AppContext/4.0.0": {
+ "sha512": "hVit3QOXkIacKbG+XYDmwXP+2Po541qLD9xtoDjb1nEJ8lEvgkToxLwDpUln3EplRo55HLqAvKlKrRXBSTkQBQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.AppContext.nuspec",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/DNXCore50/System.AppContext.dll",
+ "lib/net46/System.AppContext.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.xml",
+ "ref/dotnet/zh-hant/System.AppContext.xml",
+ "ref/dotnet/de/System.AppContext.xml",
+ "ref/dotnet/fr/System.AppContext.xml",
+ "ref/dotnet/it/System.AppContext.xml",
+ "ref/dotnet/ja/System.AppContext.xml",
+ "ref/dotnet/ko/System.AppContext.xml",
+ "ref/dotnet/ru/System.AppContext.xml",
+ "ref/dotnet/zh-hans/System.AppContext.xml",
+ "ref/dotnet/es/System.AppContext.xml",
+ "ref/net46/System.AppContext.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/b238a6e5d5264c809505b171a2c2ae46.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections/4.0.10": {
+ "sha512": "QuN27OxpnrZ4vZ0J7adumpdnlWoAXidz9g8OtrD2KYW6+WfhXD2+TLQynuvFvv23wYii+Nb9KjQ+UL6ptYBAXg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.nuspec",
+ "lib/netcore50/System.Collections.dll",
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Collections.dll",
+ "ref/dotnet/System.Collections.xml",
+ "ref/dotnet/zh-hant/System.Collections.xml",
+ "ref/dotnet/de/System.Collections.xml",
+ "ref/dotnet/fr/System.Collections.xml",
+ "ref/dotnet/it/System.Collections.xml",
+ "ref/dotnet/ja/System.Collections.xml",
+ "ref/dotnet/ko/System.Collections.xml",
+ "ref/dotnet/ru/System.Collections.xml",
+ "ref/dotnet/zh-hans/System.Collections.xml",
+ "ref/dotnet/es/System.Collections.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/4f66bef155a6468a9ddec6fb1c41a396.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Concurrent/4.0.10": {
+ "sha512": "uh8GCdgkHjYDysu0ZSpDMzL6Aq4jZK6Oos3bSwzlzJE7DITwyBMWoKkjHYqtUi92M4GcNT+7lmliFYVAzDJFOA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Concurrent.nuspec",
+ "lib/dotnet/System.Collections.Concurrent.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Collections.Concurrent.dll",
+ "ref/dotnet/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hant/System.Collections.Concurrent.xml",
+ "ref/dotnet/de/System.Collections.Concurrent.xml",
+ "ref/dotnet/fr/System.Collections.Concurrent.xml",
+ "ref/dotnet/it/System.Collections.Concurrent.xml",
+ "ref/dotnet/ja/System.Collections.Concurrent.xml",
+ "ref/dotnet/ko/System.Collections.Concurrent.xml",
+ "ref/dotnet/ru/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hans/System.Collections.Concurrent.xml",
+ "ref/dotnet/es/System.Collections.Concurrent.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/c8db86fd18c241b499a790afa7fbef5b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Immutable/1.1.37": {
+ "sha512": "l785FJiwIHbjto9f9Pxaai+5baykJejIf8GbFDSncSyd4HudkfEFi4p5g/Uvs8OUykjHbIrd8/uf2buIRk93DQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Immutable.nuspec",
+ "lib/dotnet/System.Collections.Immutable.dll",
+ "lib/dotnet/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "package/services/metadata/core-properties/6d6a38fa0eb44ebfa25cbec75e232e7e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "sha512": "hnBvmIFKguXH35jllSqqYS+R+dgr8dL6+V1JJi12YvbPR0mISyKfyFhSSBrZodH2CQlP2bz3EngspClaX3pHaw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.NonGeneric.nuspec",
+ "lib/dotnet/System.Collections.NonGeneric.dll",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/dotnet/de/System.Collections.NonGeneric.xml",
+ "ref/dotnet/fr/System.Collections.NonGeneric.xml",
+ "ref/dotnet/it/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ja/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ko/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ru/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/dotnet/es/System.Collections.NonGeneric.xml",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/913460b1af384d1290654b650e916dc2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "sha512": "pS2zO99AoeXUAVkWn4dOf/zozk/DNLIwVsRt4R03VMv6Wi372qJkrFWwgv5v6nHhGh7mJsC9Io8RWsf6pZsa+A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Specialized.nuspec",
+ "lib/dotnet/System.Collections.Specialized.dll",
+ "lib/net46/System.Collections.Specialized.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Collections.Specialized.dll",
+ "ref/dotnet/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hant/System.Collections.Specialized.xml",
+ "ref/dotnet/de/System.Collections.Specialized.xml",
+ "ref/dotnet/fr/System.Collections.Specialized.xml",
+ "ref/dotnet/it/System.Collections.Specialized.xml",
+ "ref/dotnet/ja/System.Collections.Specialized.xml",
+ "ref/dotnet/ko/System.Collections.Specialized.xml",
+ "ref/dotnet/ru/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hans/System.Collections.Specialized.xml",
+ "ref/dotnet/es/System.Collections.Specialized.xml",
+ "ref/net46/System.Collections.Specialized.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d7e865b2b6cb453ea5a7400d3c7815a3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel/4.0.0": {
+ "sha512": "q3hYt7xoSBLfIIPnByInW152E8QATpjv9zlJKZNdppbLHi6wRUY2A/ccsXmT2MfoHCOGNb6zojS5bdjkzTH3yQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.nuspec",
+ "lib/dotnet/System.ComponentModel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.ComponentModel.dll",
+ "ref/dotnet/System.ComponentModel.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.xml",
+ "ref/dotnet/de/System.ComponentModel.xml",
+ "ref/dotnet/fr/System.ComponentModel.xml",
+ "ref/dotnet/it/System.ComponentModel.xml",
+ "ref/dotnet/ja/System.ComponentModel.xml",
+ "ref/dotnet/ko/System.ComponentModel.xml",
+ "ref/dotnet/ru/System.ComponentModel.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.xml",
+ "ref/dotnet/es/System.ComponentModel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/007bace5eee6466d9e11a400b8ee3439.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.0.10": {
+ "sha512": "Lgp14ct0Y12ugzr23aNSuufA7qhKcQRBH4bYVHiNrLl5Pbak5zW57WscwZxK3CC+jQMurpO26s43+vTCa61ehw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.Annotations.nuspec",
+ "lib/dotnet/System.ComponentModel.Annotations.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.ComponentModel.Annotations.dll",
+ "ref/dotnet/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/de/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/fr/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/it/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ja/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ko/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ru/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/es/System.ComponentModel.Annotations.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/721f2a9f888148a0a03269b990ba53fd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "sha512": "4aoQjy09/e4XdgMSyvoS7q210xchJmEZwQFFlFb6zBX4twAtXJuYb/woGK2R5mk1k3wULiNgy+UC13/GymM3vA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.EventBasedAsync.nuspec",
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/618818b3be9c49a0982e08f8301bd6b7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Data.Common/4.0.0": {
+ "sha512": "xEdZn+vxF5qF+0Ji59Ag31L/urJgUZx+JdJTyJW1z0nFsOV0x4lyfAgu2gxz1PzGFGEc24ZiGpxUtXOwZrdybw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Data.Common.nuspec",
+ "lib/dotnet/System.Data.Common.dll",
+ "lib/net46/System.Data.Common.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Data.Common.dll",
+ "ref/dotnet/System.Data.Common.xml",
+ "ref/dotnet/zh-hant/System.Data.Common.xml",
+ "ref/dotnet/de/System.Data.Common.xml",
+ "ref/dotnet/fr/System.Data.Common.xml",
+ "ref/dotnet/it/System.Data.Common.xml",
+ "ref/dotnet/ja/System.Data.Common.xml",
+ "ref/dotnet/ko/System.Data.Common.xml",
+ "ref/dotnet/ru/System.Data.Common.xml",
+ "ref/dotnet/zh-hans/System.Data.Common.xml",
+ "ref/dotnet/es/System.Data.Common.xml",
+ "ref/net46/System.Data.Common.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/bb498de08879432098e90cbffe5c9b3e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Contracts/4.0.0": {
+ "sha512": "zJKjXn2Wvy6TE/Qb8K56wRfDIE5TGr4x8mm0+HUVdRnFrVjfEo3Ru0nEv0NsadILXe0mPehaaPZXu//VNgsYDg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Contracts.nuspec",
+ "lib/netcore50/System.Diagnostics.Contracts.dll",
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Contracts.dll",
+ "ref/dotnet/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/de/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/fr/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/it/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ja/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ko/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ru/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/es/System.Diagnostics.Contracts.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/netcore50/System.Diagnostics.Contracts.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/7c00bfddff3c47babcdefe2a30be59f1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "sha512": "WSFOKtxnXEAtNSClHsf8cdaELaKl8Nnxnclum0Cu5XJnXzIZcefJAV2qbv5mQ+OEBJ8uscJjN3KfEopG/bUEqQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Debug.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/dotnet/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet/es/System.Diagnostics.Debug.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/a02b987ad5c94d39a4c97b42c42b5aeb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.StackTrace/4.0.0": {
+ "sha512": "mmJcfs0wV3Bqt8RydICsQx96apbHe+XnM7H7FmFqCXBpxwJi6cJ9gT4Jp3ZI4bstO3cZmLxv6kkuH4DjliWgTQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.StackTrace.nuspec",
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll",
+ "lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "lib/net46/System.Diagnostics.StackTrace.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Diagnostics.StackTrace.dll",
+ "ref/dotnet/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/de/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/fr/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/it/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ja/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ko/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ru/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/es/System.Diagnostics.StackTrace.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "ref/net46/System.Diagnostics.StackTrace.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/cc97a55b43bc469daacf189dcd14a784.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "sha512": "Mzp+1SKiM17TCwVKZ5sqdwQjEGEK95TIcEbr9k7l+/TKmLWGJtLVXAiE/gOnRtcJNmMpro7lFhfm1fH7XkJyCA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tools.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Tools.dll",
+ "lib/netcore50/System.Diagnostics.Tools.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Tools.dll",
+ "ref/dotnet/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/dotnet/de/System.Diagnostics.Tools.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tools.xml",
+ "ref/dotnet/it/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/dotnet/es/System.Diagnostics.Tools.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/4e563a7dc08b4ecc9c40f10dc8f473bd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "sha512": "f+SqGRkD4OTgXadX6EJC0jYQ1gYhAW+4m+G8rkuGizASRvXtl0YMWf2rPbOYXGGoL5QzYUvp+Ggd2iI0i4l/hw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tracing.nuspec",
+ "lib/netcore50/System.Diagnostics.Tracing.dll",
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Diagnostics.Tracing.dll",
+ "ref/dotnet/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/de/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/it/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/es/System.Diagnostics.Tracing.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/eb7d9d9717154e03ae6cd7875edf0883.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.10": {
+ "sha512": "2oZhLh+QwpaiMGAYbTgQrMs+NQzdM2tmfR8Zm5JI6bqh6fN+czRhxnBw4npc4asO+Z34pHdXrmMZGDtQh8byKA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Dynamic.Runtime.nuspec",
+ "lib/netcore50/System.Dynamic.Runtime.dll",
+ "lib/DNXCore50/System.Dynamic.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/eb6cd986dad44438baa776afe9363231.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization/4.0.10": {
+ "sha512": "9hqxzl3P+epeE68b/1yFBgBs+QLm+KUodjcR9tu96GiFW5vK32joN6argZ2oHVvQkcOVTm1aV6v9KpTCLMb8ZQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.nuspec",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.xml",
+ "ref/dotnet/zh-hant/System.Globalization.xml",
+ "ref/dotnet/de/System.Globalization.xml",
+ "ref/dotnet/fr/System.Globalization.xml",
+ "ref/dotnet/it/System.Globalization.xml",
+ "ref/dotnet/ja/System.Globalization.xml",
+ "ref/dotnet/ko/System.Globalization.xml",
+ "ref/dotnet/ru/System.Globalization.xml",
+ "ref/dotnet/zh-hans/System.Globalization.xml",
+ "ref/dotnet/es/System.Globalization.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/55d980910f5246a6ac06973702f64df5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Calendars/4.0.0": {
+ "sha512": "Rtl5bQ2KSuB8oXQMx0pVlBCBlDeGz/QuvwqGz1HWET26BGXhb/6j5cXetZydrx++hPttndndI18CsIbAgBLikg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Calendars.nuspec",
+ "lib/netcore50/System.Globalization.Calendars.dll",
+ "lib/DNXCore50/System.Globalization.Calendars.dll",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Globalization.Calendars.dll",
+ "ref/dotnet/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
+ "ref/dotnet/de/System.Globalization.Calendars.xml",
+ "ref/dotnet/fr/System.Globalization.Calendars.xml",
+ "ref/dotnet/it/System.Globalization.Calendars.xml",
+ "ref/dotnet/ja/System.Globalization.Calendars.xml",
+ "ref/dotnet/ko/System.Globalization.Calendars.xml",
+ "ref/dotnet/ru/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
+ "ref/dotnet/es/System.Globalization.Calendars.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/88aa273db8b84eb487819bda80bb5573.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Extensions/4.0.0": {
+ "sha512": "kQn+7Y5tmMWYpnPzi/ljvyLhTKojVZUtb7dq9bEUaRedoq8c0QgmUL+fACW9ptqUha5LQJUQaVm3Wy5rPx+lFg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Extensions.nuspec",
+ "lib/dotnet/System.Globalization.Extensions.dll",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Globalization.Extensions.dll",
+ "ref/dotnet/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
+ "ref/dotnet/de/System.Globalization.Extensions.xml",
+ "ref/dotnet/fr/System.Globalization.Extensions.xml",
+ "ref/dotnet/it/System.Globalization.Extensions.xml",
+ "ref/dotnet/ja/System.Globalization.Extensions.xml",
+ "ref/dotnet/ko/System.Globalization.Extensions.xml",
+ "ref/dotnet/ru/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
+ "ref/dotnet/es/System.Globalization.Extensions.xml",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/af1f576bb2554756aab1de476dc8b8f4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO/4.0.10": {
+ "sha512": "RaY+kp127vTg8JTHmMwEuMnMprJTQlkvfsZSVSR6qU0HxWk9LwsEra5HKVAX5bS7OX9+KWCWXcFbEZaz5U7QLQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.nuspec",
+ "lib/netcore50/System.IO.dll",
+ "lib/DNXCore50/System.IO.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.dll",
+ "ref/dotnet/System.IO.xml",
+ "ref/dotnet/zh-hant/System.IO.xml",
+ "ref/dotnet/de/System.IO.xml",
+ "ref/dotnet/fr/System.IO.xml",
+ "ref/dotnet/it/System.IO.xml",
+ "ref/dotnet/ja/System.IO.xml",
+ "ref/dotnet/ko/System.IO.xml",
+ "ref/dotnet/ru/System.IO.xml",
+ "ref/dotnet/zh-hans/System.IO.xml",
+ "ref/dotnet/es/System.IO.xml",
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/f7570f124d4e4d7883cd2ad40c0c48bb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression/4.0.0": {
+ "sha512": "U1+YhU+MDxtQpjGJktODG3jijXueF1jUYrZPHEP6LI+m5Cax0lsAtMv1PsSwZ9c6KPtNDMM0j/SBBOX2YCyRkg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.nuspec",
+ "lib/dotnet/System.IO.Compression.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.IO.Compression.dll",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.Compression.dll",
+ "ref/dotnet/System.IO.Compression.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.xml",
+ "ref/dotnet/de/System.IO.Compression.xml",
+ "ref/dotnet/fr/System.IO.Compression.xml",
+ "ref/dotnet/it/System.IO.Compression.xml",
+ "ref/dotnet/ja/System.IO.Compression.xml",
+ "ref/dotnet/ko/System.IO.Compression.xml",
+ "ref/dotnet/ru/System.IO.Compression.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.xml",
+ "ref/dotnet/es/System.IO.Compression.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.xml",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/6cd62877cb804294b5c8d1d89d181edd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0": {
+ "sha512": "GSzad/6RQBuAU22l0iULppMdF7xcHz+cW7psOFNPwUbWQfQAK3hfpe4Y7acwS87O/1IVrtN7OeUMTEt2Wy6sXQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-arm.nuspec",
+ "runtimes/win7-arm/native/clrcompression.dll",
+ "runtimes/win10-arm/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/274dd5357f8946518736d0c8ae0703cf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0": {
+ "sha512": "cDEtbRJgIiX+K1aknugAS385IlIUS8FIprOCcD4kToZ8XAeFjwg6lsjQWA/Vc47bzNxwehsXMdigKVTT4yT0oQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x64.nuspec",
+ "runtimes/win7-x64/native/clrcompression.dll",
+ "runtimes/win10-x64/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/e74f5e8264514bbb96af936b1df33f08.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0": {
+ "sha512": "MCLH8J96iUJht//QZl4KzWvnGdRFRB6RNt44IP9wluUd8nVYzxPf42XBUxslPsvfmuxvyFUaNj2poeOva55xSQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x86.nuspec",
+ "runtimes/win7-x86/native/clrcompression.dll",
+ "runtimes/win10-x86/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/876f34c679b34cac8d11d25f25798c2a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.ZipFile/4.0.0": {
+ "sha512": "o1TRlzwHcCDQgXLGaPNgRPaNpg+SRLTx7tOKHLo+WrN/VaS0m9zo8PfAaOCE73e3QnUI/taXGljHZk7reR3M7g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.ZipFile.nuspec",
+ "lib/dotnet/System.IO.Compression.ZipFile.dll",
+ "lib/net46/System.IO.Compression.ZipFile.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.Compression.ZipFile.dll",
+ "ref/dotnet/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/de/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/fr/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/it/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ja/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ko/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ru/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/es/System.IO.Compression.ZipFile.xml",
+ "ref/net46/System.IO.Compression.ZipFile.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/257cf4ce7abe451590265bffbd41a679.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem/4.0.0": {
+ "sha512": "3L7xJzc8DNvSdJ0Uv2ba3YyDPzHCEq58BxFt6KAMDDVgi5JC13i+K9NaglsPrs3DY2YJ8STjpYEnGtczN4+bfQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.nuspec",
+ "lib/DNXCore50/System.IO.FileSystem.dll",
+ "lib/netcore50/System.IO.FileSystem.dll",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.FileSystem.dll",
+ "ref/dotnet/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
+ "ref/dotnet/de/System.IO.FileSystem.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.xml",
+ "ref/dotnet/it/System.IO.FileSystem.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet/es/System.IO.FileSystem.xml",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/f3207a24692b42c6a117f62417b6b462.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.0": {
+ "sha512": "FmepVK6eYTiA0nLWrhi6JpHhfEZZ7OiHA4G7vpPfUW9O6cwh9BrumF/UUFX83hxFnVqdMpToHTQ6ov8f+7DikQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.Primitives.nuspec",
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll",
+ "ref/dotnet/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/c4ff724dada44ca687149e2f36b8b5ab.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.IsolatedStorage/4.0.0": {
+ "sha512": "+RjE1VFywfGNe4hn6hli8+J+dq+/oh3NB98I436ENB/BJekAPMMp3e8MvrJMX+EGgGrM6q9BjQ5yW4X4pQc1iw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.IsolatedStorage.nuspec",
+ "lib/netcore50/System.IO.IsolatedStorage.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.IsolatedStorage.dll",
+ "ref/dotnet/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/de/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/fr/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/it/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ja/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ko/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ru/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/es/System.IO.IsolatedStorage.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/3716e8e083444ead8e3220b94542b457.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0": {
+ "sha512": "5zT3+Ukr04Xl7Fr7xm8Jsua8hMqnRQ4JeAPC5b17+jojDKtPufxtGKkvLWE+bp+LsCroRnOGkmiglmgIWXzO2w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.UnmanagedMemoryStream.nuspec",
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "lib/net46/System.IO.UnmanagedMemoryStream.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml",
+ "ref/net46/System.IO.UnmanagedMemoryStream.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d25f3799997c41968032c2f2a2f9429d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq/4.0.0": {
+ "sha512": "mDioNaUsL2jYfXNDSPb0sSW61kyg88mZSs9NCb2uIWEONueBRq+JCnh6gV9JDuVciLqqTwsDsoWBbahoEipDlg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.nuspec",
+ "lib/dotnet/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.dll",
+ "ref/dotnet/System.Linq.xml",
+ "ref/dotnet/zh-hant/System.Linq.xml",
+ "ref/dotnet/de/System.Linq.xml",
+ "ref/dotnet/fr/System.Linq.xml",
+ "ref/dotnet/it/System.Linq.xml",
+ "ref/dotnet/ja/System.Linq.xml",
+ "ref/dotnet/ko/System.Linq.xml",
+ "ref/dotnet/ru/System.Linq.xml",
+ "ref/dotnet/zh-hans/System.Linq.xml",
+ "ref/dotnet/es/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c0aed90eb05b4c88affe58440dd01f74.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Expressions/4.0.10": {
+ "sha512": "fHbsAgaU3TjK88i2iFAxC9wRAAyd9gmKWHXAyndfVzBkdANVkIRqbHb+NALH3hKnPgsESPhIhcNWwfgVSf+BkA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Expressions.nuspec",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/DNXCore50/System.Linq.Expressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
+ "ref/dotnet/de/System.Linq.Expressions.xml",
+ "ref/dotnet/fr/System.Linq.Expressions.xml",
+ "ref/dotnet/it/System.Linq.Expressions.xml",
+ "ref/dotnet/ja/System.Linq.Expressions.xml",
+ "ref/dotnet/ko/System.Linq.Expressions.xml",
+ "ref/dotnet/ru/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet/es/System.Linq.Expressions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/46d29f4765354644af2af4ce64c8d44b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Parallel/4.0.0": {
+ "sha512": "dNmjt6dvR4mka3CnuwfGAey+4NQANmI6mEUFGvyOu/Pi+z1in+Gj6mnpvPfY9q7EG2NZ0sUoQaV4/QTpAlO32g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Parallel.nuspec",
+ "lib/dotnet/System.Linq.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Parallel.dll",
+ "ref/dotnet/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Linq.Parallel.xml",
+ "ref/dotnet/de/System.Linq.Parallel.xml",
+ "ref/dotnet/fr/System.Linq.Parallel.xml",
+ "ref/dotnet/it/System.Linq.Parallel.xml",
+ "ref/dotnet/ja/System.Linq.Parallel.xml",
+ "ref/dotnet/ko/System.Linq.Parallel.xml",
+ "ref/dotnet/ru/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Linq.Parallel.xml",
+ "ref/dotnet/es/System.Linq.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Parallel.dll",
+ "ref/netcore50/System.Linq.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/ea1e4f606bd6452aac300abb754c2d20.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Queryable/4.0.0": {
+ "sha512": "boTMI7McyGRQX6fqHW1gFyKNScF7QJwYQl05XrQ1mzQpT+aFCZZGfp7Ue5jz1hu56XggKhVT8cmbn65Zk+bpRw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Queryable.nuspec",
+ "lib/dotnet/System.Linq.Queryable.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Queryable.dll",
+ "ref/dotnet/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hant/System.Linq.Queryable.xml",
+ "ref/dotnet/de/System.Linq.Queryable.xml",
+ "ref/dotnet/fr/System.Linq.Queryable.xml",
+ "ref/dotnet/it/System.Linq.Queryable.xml",
+ "ref/dotnet/ja/System.Linq.Queryable.xml",
+ "ref/dotnet/ko/System.Linq.Queryable.xml",
+ "ref/dotnet/ru/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hans/System.Linq.Queryable.xml",
+ "ref/dotnet/es/System.Linq.Queryable.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/53d79f6f24084ee49bb141688d6bb759.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http/4.0.0": {
+ "sha512": "Ck6aXpEgvhp1XK5w4l4vtRgg0ssd6NEHNQ1+SqfF9AynvhpJDbFJmAJF9q04ZRCaRqlBMyzRv8zTWtBrfCvyGg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.nuspec",
+ "lib/netcore50/System.Net.Http.dll",
+ "lib/DNXCore50/System.Net.Http.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Net.Http.dll",
+ "ref/dotnet/System.Net.Http.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.xml",
+ "ref/dotnet/de/System.Net.Http.xml",
+ "ref/dotnet/fr/System.Net.Http.xml",
+ "ref/dotnet/it/System.Net.Http.xml",
+ "ref/dotnet/ja/System.Net.Http.xml",
+ "ref/dotnet/ko/System.Net.Http.xml",
+ "ref/dotnet/ru/System.Net.Http.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.xml",
+ "ref/dotnet/es/System.Net.Http.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/b32ea537dfa1407cb0a3284f27925ffd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http.Rtc/4.0.0": {
+ "sha512": "FK49BicvB35JVMRWuWsxRJRZEYv8tIi5WKwgqqZYxm0BjXSvRMk7YpfPGtaNrnxCMemzwc0zS6OIiDcxhmEvUQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.Rtc.nuspec",
+ "lib/netcore50/System.Net.Http.Rtc.dll",
+ "lib/win8/_._",
+ "ref/dotnet/System.Net.Http.Rtc.dll",
+ "ref/dotnet/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml",
+ "ref/dotnet/de/System.Net.Http.Rtc.xml",
+ "ref/dotnet/fr/System.Net.Http.Rtc.xml",
+ "ref/dotnet/it/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ja/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ko/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ru/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml",
+ "ref/dotnet/es/System.Net.Http.Rtc.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.Rtc.dll",
+ "ref/netcore50/System.Net.Http.Rtc.xml",
+ "package/services/metadata/core-properties/f40a6920ac2640d685241fd0181f1c93.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.NetworkInformation/4.0.0": {
+ "sha512": "/jiycm3Rcm/b0EMHcA7S6Iezhp7RGO9PRqdxT8rq+MQ3h3X34eru7SJrZHIKhKbredvPEyGjFPjgXFI+4fwdcw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.NetworkInformation.nuspec",
+ "lib/netcore50/System.Net.NetworkInformation.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Net.NetworkInformation.dll",
+ "ref/dotnet/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml",
+ "ref/dotnet/de/System.Net.NetworkInformation.xml",
+ "ref/dotnet/fr/System.Net.NetworkInformation.xml",
+ "ref/dotnet/it/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ja/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ko/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ru/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml",
+ "ref/dotnet/es/System.Net.NetworkInformation.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.NetworkInformation.dll",
+ "ref/netcore50/System.Net.NetworkInformation.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/394e71f3dd334b7285673b01fe26848d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Primitives/4.0.10": {
+ "sha512": "NtHNVbmhJKXg7slFEpxI0n5Nd0Q4fNunU9vP47Y6SoThHCcj7eF12F88mJfey/63LU/qqPNUCkqqIjm/WNzWZA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Primitives.nuspec",
+ "lib/netcore50/System.Net.Primitives.dll",
+ "lib/DNXCore50/System.Net.Primitives.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Net.Primitives.dll",
+ "ref/dotnet/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Net.Primitives.xml",
+ "ref/dotnet/de/System.Net.Primitives.xml",
+ "ref/dotnet/fr/System.Net.Primitives.xml",
+ "ref/dotnet/it/System.Net.Primitives.xml",
+ "ref/dotnet/ja/System.Net.Primitives.xml",
+ "ref/dotnet/ko/System.Net.Primitives.xml",
+ "ref/dotnet/ru/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Net.Primitives.xml",
+ "ref/dotnet/es/System.Net.Primitives.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/e5696d54562a4232aed17aab3ee6b735.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Requests/4.0.10": {
+ "sha512": "X/unc7CA42MoIoKABWWN+EkmU2AZLpEAu6w45OL6XFVUPDIHXIVxkZKXJ8qtA7qfOW89+jicbfMMneDbOQxYoA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Requests.nuspec",
+ "lib/dotnet/System.Net.Requests.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Net.Requests.dll",
+ "ref/dotnet/System.Net.Requests.xml",
+ "ref/dotnet/zh-hant/System.Net.Requests.xml",
+ "ref/dotnet/de/System.Net.Requests.xml",
+ "ref/dotnet/fr/System.Net.Requests.xml",
+ "ref/dotnet/it/System.Net.Requests.xml",
+ "ref/dotnet/ja/System.Net.Requests.xml",
+ "ref/dotnet/ko/System.Net.Requests.xml",
+ "ref/dotnet/ru/System.Net.Requests.xml",
+ "ref/dotnet/zh-hans/System.Net.Requests.xml",
+ "ref/dotnet/es/System.Net.Requests.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/cbb3b0fa94bb49d497923e0056374d47.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Sockets/4.0.0": {
+ "sha512": "NTwcJybrtXRw0xbFTIecEgHLkXEPkeqaLIzqwaW5cM9+/+gFAWtOlIp84PNQokDZuTP6gmBSkcgvVIHmOHWvpg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Sockets.nuspec",
+ "lib/netcore50/System.Net.Sockets.dll",
+ "lib/net46/System.Net.Sockets.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Net.Sockets.dll",
+ "ref/dotnet/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hant/System.Net.Sockets.xml",
+ "ref/dotnet/de/System.Net.Sockets.xml",
+ "ref/dotnet/fr/System.Net.Sockets.xml",
+ "ref/dotnet/it/System.Net.Sockets.xml",
+ "ref/dotnet/ja/System.Net.Sockets.xml",
+ "ref/dotnet/ko/System.Net.Sockets.xml",
+ "ref/dotnet/ru/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hans/System.Net.Sockets.xml",
+ "ref/dotnet/es/System.Net.Sockets.xml",
+ "ref/net46/System.Net.Sockets.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/e1a6a5568ba64d7a97ddb80d1776db3f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "sha512": "svwOalT10Rauv0TRbXNGgVnDYBiOzOhupGr8239WnSeLYuc+vecGe/AA+3inwz7ORjq8h9i2NgJXrMdmSwdliw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.WebHeaderCollection.nuspec",
+ "lib/dotnet/System.Net.WebHeaderCollection.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Net.WebHeaderCollection.dll",
+ "ref/dotnet/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/de/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/fr/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/it/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ja/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ko/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ru/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/es/System.Net.WebHeaderCollection.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/ed8819470ca1454d93527272a1cf1a96.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Numerics.Vectors/4.1.0": {
+ "sha512": "u2UKYZi0Pb1bptFfAgpCtWfKDwUDeHYqH6MF6ucLBexVf27EQofvVGb0nd234j/BoBgw7axWBrBkpXHs+3/rjg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Numerics.Vectors.nuspec",
+ "lib/dotnet/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/688cf1251c2b4f95b0bca5d3b32cfe93.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Numerics.Vectors.WindowsRuntime/4.0.0": {
+ "sha512": "biadOiVMG60jm7AF8yVSChml+g+UCoH9wbmOfM3KaPUzngJTeIM+vM/xZVb/mwrIRjVt0w1qHrdtCSQLd3YEFg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Numerics.Vectors.WindowsRuntime.nuspec",
+ "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll",
+ "package/services/metadata/core-properties/0e73532a29484971ab92872da9640c64.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ObjectModel/4.0.10": {
+ "sha512": "+Jup7p7Lmgogi0LMG7XgxhT+QMK42dYyVak3eu4pu3wdcjAUpxQEP+k8pr5b8wSI1io2m/BdBaty5P6g70Ls6Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ObjectModel.nuspec",
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/97ab30bbb4d7499aa2089f52f87a0944.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.0.0": {
+ "sha512": "t7S03eHSX+SF4DsgSU/CRQ4aWfwzLpxvVQYGx6E4rGMdSbYlJVrOo3iKRAwn39ZErwmN0ZE1Xy+BTkdWCiRyPw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.DataContractSerialization.nuspec",
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll",
+ "lib/netcore50/System.Private.DataContractSerialization.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/ac3128c59c674df4b0d07982e6da09fb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Networking/4.0.0": {
+ "sha512": "DT1hErv0h9meIbnKfP8gB3w9ppbj9WPt7wCLoyNupAUtkjOd+NTUnSs9A9NLKp8wrW02OIByRdTnjde85l+ArA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Networking.nuspec",
+ "lib/netcore50/System.Private.Networking.dll",
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/82bed6f453194edb9e9f1907b3a72299.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.ServiceModel/4.0.0": {
+ "sha512": "0WgTVgy3KJ9w8FlgGQmbhyRLzCay1Zm98ZYeCu0Hde6Ti3qg6ANmvmdzQjI7KXNIUWn8jCWEmmreOlA4zEAEAg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.ServiceModel.nuspec",
+ "lib/netcore50/System.Private.ServiceModel.dll",
+ "lib/DNXCore50/System.Private.ServiceModel.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/e079841ce3944004a1d41f3cb8cac5dc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Uri/4.0.0": {
+ "sha512": "YuFPYdodhSivvkhbyiYRKpQCnXqHqWxrYYjufG3hbMXPtkDgzgDmrR59K78whcST9OLAUF7V4ugA+f1B1e2dBQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Uri.nuspec",
+ "lib/netcore50/System.Private.Uri.dll",
+ "lib/DNXCore50/System.Private.Uri.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll",
+ "package/services/metadata/core-properties/430c21d95fe04aeb898446a2340fddd4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection/4.0.10": {
+ "sha512": "Y1bIbgmm9pqfa1QgpGwAm7hFR7ConRZc+7gMA1yYje8sRheB3MClbqUfa771/CbT//1dNRqTWTVGzYgTH3qcjg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.nuspec",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.xml",
+ "ref/dotnet/zh-hant/System.Reflection.xml",
+ "ref/dotnet/de/System.Reflection.xml",
+ "ref/dotnet/fr/System.Reflection.xml",
+ "ref/dotnet/it/System.Reflection.xml",
+ "ref/dotnet/ja/System.Reflection.xml",
+ "ref/dotnet/ko/System.Reflection.xml",
+ "ref/dotnet/ru/System.Reflection.xml",
+ "ref/dotnet/zh-hans/System.Reflection.xml",
+ "ref/dotnet/es/System.Reflection.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/36e481d0241d400282ecb27cb0ccc450.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Context/4.0.0": {
+ "sha512": "qPKeWLdlIdZIzK4Q1b+TqCuLUxllw/fcQttQIjNFAJKmoD/xzsv0vBaXFPNdAuSmikaUndhsh/DIwp3uJNqGyg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Context.nuspec",
+ "lib/netcore50/System.Reflection.Context.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.Reflection.Context.dll",
+ "ref/dotnet/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Context.xml",
+ "ref/dotnet/de/System.Reflection.Context.xml",
+ "ref/dotnet/fr/System.Reflection.Context.xml",
+ "ref/dotnet/it/System.Reflection.Context.xml",
+ "ref/dotnet/ja/System.Reflection.Context.xml",
+ "ref/dotnet/ko/System.Reflection.Context.xml",
+ "ref/dotnet/ru/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Context.xml",
+ "ref/dotnet/es/System.Reflection.Context.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Context.dll",
+ "ref/netcore50/System.Reflection.Context.xml",
+ "package/services/metadata/core-properties/74033787840d4aae975dd0d67066dd89.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "sha512": "Peg4Fc97C/yPFsUyfPV88Dr0e6k1BQCG+PAC+szxxUlPokhv5StlRBNM01JLuoFZeV/VgSJ4pDMXsgaFc9HbYg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.DispatchProxy.nuspec",
+ "lib/net46/System.Reflection.DispatchProxy.dll",
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll",
+ "lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Reflection.DispatchProxy.dll",
+ "ref/dotnet/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/de/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/fr/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/it/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ja/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ko/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ru/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/es/System.Reflection.DispatchProxy.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/b16a6d61e3e1472e88dfe650d0e5aaee.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "sha512": "lTDrB+gsTo3/K9NyKMQjhSfc2gDxepjge7R+EsPT94lbQSNlnOZYvK49RalA8AAtCx+HjcBZgIp2N2aepPyMaA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.dll",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/net45/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Reflection.Emit.dll",
+ "ref/dotnet/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
+ "ref/dotnet/de/System.Reflection.Emit.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.xml",
+ "ref/dotnet/it/System.Reflection.Emit.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
+ "ref/dotnet/es/System.Reflection.Emit.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d25e8bc32cbe4b38b2a75b589ce9214d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "sha512": "DmMIAsXldaPfkqGNlUJgSmW2Gz3uVoZoXWGibDo9JuqmsUsIFeMat4E/AJf9kBqDAqNZCPSIr9cBl54w4b7ofQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.ILGeneration.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/2c73bb843f884e7e89221485e19e74a3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "sha512": "UU4uDLjUyyll8sHE4eIX/TxBTuzDVHhvCC4LMh+5bVfwaVINpEsNOFdpMwjHX5bUXYqQcVHxWDdz+niQfwNSBQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.Lightweight.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/18703fc0ff284d8180cc243d366d8b6b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.0": {
+ "sha512": "dVesN19ilrW2BcJuDwRQsl8pMdkeb49TMwBqFdYOzE6rYvQFasIH9eB5xYrNWdYtcL8uPHSNzzBgYvpq0P5mrA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Extensions.nuspec",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Extensions.dll",
+ "ref/dotnet/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
+ "ref/dotnet/de/System.Reflection.Extensions.xml",
+ "ref/dotnet/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet/it/System.Reflection.Extensions.xml",
+ "ref/dotnet/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet/es/System.Reflection.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c3c66a9aa35748dcb404fce57ff53b4f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Metadata/1.0.22": {
+ "sha512": "55hu1gODZ1qsqEnXPUgkMMD3M/e7c3D0GHKv9rpqGC/s+oIAMdPGy96N40hAlhqPI1QakX2v5qi7Y+vc8uOcWw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Metadata.nuspec",
+ "lib/dotnet/System.Reflection.Metadata.dll",
+ "lib/dotnet/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "package/services/metadata/core-properties/26da3ca698eb4e3f906307c042063c9b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0": {
+ "sha512": "MxktthPaFUHrk2Dw4FJbWc9/PrtwBbCvXv8FJjfGYL1jCyvbyUEBzOSmCqygIOK8ibNBHOUr1sn+3dMli48bdg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Primitives.nuspec",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Primitives.dll",
+ "ref/dotnet/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
+ "ref/dotnet/de/System.Reflection.Primitives.xml",
+ "ref/dotnet/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet/it/System.Reflection.Primitives.xml",
+ "ref/dotnet/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet/es/System.Reflection.Primitives.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/6213080fda2e4dc9aa5b8af4305af659.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.0": {
+ "sha512": "8o1LeG23SeIut80IC6WXCar++mpWBl9l/zXUBzyg8oHwuoL6XloM+RNhGJcn4ARiOpNE1CIQg9c3MZU0slS0SQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.TypeExtensions.nuspec",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/fdbf60947abe44df841351c32bb1045c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Resources.ResourceManager/4.0.0": {
+ "sha512": "kncnPdZsHyPztthxbAW0piheDzOsdFAGGhR1PlYRrw36eFvsqBDOoFhrr8MRbIvEUABkXRJ7y/VA/KMjw7szLQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Resources.ResourceManager.nuspec",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
+ "ref/dotnet/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/dotnet/de/System.Resources.ResourceManager.xml",
+ "ref/dotnet/fr/System.Resources.ResourceManager.xml",
+ "ref/dotnet/it/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ja/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ko/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ru/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/dotnet/es/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/9694c547aeaa495ea66f22d0d9056fe2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime/4.0.20": {
+ "sha512": "HwPEacV5LIFX+CtDJHZ2Vg4Jb/IrWR0DtWkng+id/l1FYxezXQVLAfk1HMq7MEI9/lLlHuwny6G2+lDTIBnrpA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.nuspec",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.dll",
+ "ref/dotnet/System.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.xml",
+ "ref/dotnet/de/System.Runtime.xml",
+ "ref/dotnet/fr/System.Runtime.xml",
+ "ref/dotnet/it/System.Runtime.xml",
+ "ref/dotnet/ja/System.Runtime.xml",
+ "ref/dotnet/ko/System.Runtime.xml",
+ "ref/dotnet/ru/System.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.xml",
+ "ref/dotnet/es/System.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/802e8d5028f44bb189b41d8a071471d6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.10": {
+ "sha512": "nHxlbn5i2euL8q7aVVRsTMvjDXFDJs0T+x/DmrA4Musa2OUCg6XkGZOSaWP6H1xvpGJ5YxPnll0Oh/+aqrzvCA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Extensions.nuspec",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Extensions.dll",
+ "ref/dotnet/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet/de/System.Runtime.Extensions.xml",
+ "ref/dotnet/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet/it/System.Runtime.Extensions.xml",
+ "ref/dotnet/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet/es/System.Runtime.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d2a54219c54549858eac36b72da44fda.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "sha512": "c1rc5UcWuNDVJqtrwY+pmj1tPvMIkZCzsBQ6pw0+7vcsaZJcLdSUze1NqvuywC/NPbpp/VrDHP9LmiCqUvfpxA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Handles.nuspec",
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/592e3c746bbc4c7b8a4a521c3ded0e10.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "sha512": "dZfOloo6zRiANnaVnlxuVh2HzHpwD5f9cczA59LrnMuOeVpeyWIjidIup2rhLf/jFg256vLGBlrsO7C7CNqX9w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.nuspec",
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/898e1e6a1c0b409a82b768c91c667be1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": {
+ "sha512": "xkybQrVaIouYpr8iIQJwCa20aiCsemWkGCHOZqZFlwHqD2LVSJSVNsyoPO+CzGZf0XJ2n7FJhlD56+KfAd1erA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/4e4d74ad5bc94ed2af26e9bdc371dcd3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Numerics/4.0.0": {
+ "sha512": "UfF9gc4eVIjCC1B8IrLHV3qhmlGE4kX54nzJxTRTciD//1hyWhieEEqGMrREwbEjl86LMMLWfKpZr68Sj27NmA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Numerics.nuspec",
+ "lib/dotnet/System.Runtime.Numerics.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Runtime.Numerics.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Numerics.dll",
+ "ref/dotnet/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Numerics.xml",
+ "ref/dotnet/de/System.Runtime.Numerics.xml",
+ "ref/dotnet/fr/System.Runtime.Numerics.xml",
+ "ref/dotnet/it/System.Runtime.Numerics.xml",
+ "ref/dotnet/ja/System.Runtime.Numerics.xml",
+ "ref/dotnet/ko/System.Runtime.Numerics.xml",
+ "ref/dotnet/ru/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Numerics.xml",
+ "ref/dotnet/es/System.Runtime.Numerics.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Numerics.dll",
+ "ref/netcore50/System.Runtime.Numerics.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/47de96118c08428cb2fddf9ce1ddda69.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Json/4.0.0": {
+ "sha512": "4SavMJo9JU3LZiSq2eeV4A4eK1hHU0P/N1WyekL2raRKphcc9947fIgON6Cg/9szRi/9h7jOcz9E6IM5hV5Ndw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Json.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Json.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Serialization.Json.dll",
+ "ref/dotnet/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Json.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/netcore50/System.Runtime.Serialization.Json.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/24d38f4074f644b1a834783a6ae89f7c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10": {
+ "sha512": "3dWbReL+64TC4JjKZibmmdgRDnIhKxGTm6ydbueyprlPuOUL9FNNwzalNwSPmN9aP9/UMpblA0f/1nETcZfQ5A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Primitives.nuspec",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d3318f0bd10b4b5080a635731bcbc059.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "sha512": "EMvlvX1nChEG3e+h7JZ3/EK5jQh/dNSpZMvij4mxMjHyLACRDsyiou/IrOCUtQABpJjp2wtmJtgc5cA3IJMR2g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Xml.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll",
+ "ref/dotnet/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Xml.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/dd6587eae3724e70991c3079f6257faa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime/4.0.10": {
+ "sha512": "XWcaNMDUJSkvIu3aoU2jeCYwptegDTPvN1m/EbT5myh7P5v3MAkoROMqsIYgNmwzX9z9GfRxkWMixKyJqudCEA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/win81/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/aead15d2882b422d9d9ca090fb0e0a6c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": {
+ "sha512": "G07nPeBDtZ8+Q0GvI2iFLuWxf1YdkO12BEFXaaFT/nlg99wB63BoAdMDZ2doQZNKtpozN5lhehMxHLVaWnZuhg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/2f82e0186d8d4f2593d6ce82983aa2c1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Claims/4.0.0": {
+ "sha512": "VfM0MnRTJKjQv4/Gp5YoOegZHH9hNwxwFsYcwl38gBXhXEENbYo8iRqdqjUL/+WIiJcBtmX6Si4DJvLG539EQQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Claims.nuspec",
+ "lib/dotnet/System.Security.Claims.dll",
+ "lib/net46/System.Security.Claims.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Security.Claims.dll",
+ "ref/dotnet/System.Security.Claims.xml",
+ "ref/dotnet/zh-hant/System.Security.Claims.xml",
+ "ref/dotnet/de/System.Security.Claims.xml",
+ "ref/dotnet/fr/System.Security.Claims.xml",
+ "ref/dotnet/it/System.Security.Claims.xml",
+ "ref/dotnet/ja/System.Security.Claims.xml",
+ "ref/dotnet/ko/System.Security.Claims.xml",
+ "ref/dotnet/ru/System.Security.Claims.xml",
+ "ref/dotnet/zh-hans/System.Security.Claims.xml",
+ "ref/dotnet/es/System.Security.Claims.xml",
+ "ref/net46/System.Security.Claims.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/5d7557059b7642d38131ff5ab0ef51a3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Principal/4.0.0": {
+ "sha512": "F2RVK0oavzJLq9ggOilk5JlELowlv6sXe+V+qn1/DHZxL68JTuo0s5HYgIMHWZeYlzy0i/RWXkKR8UuKfGjrMw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Principal.nuspec",
+ "lib/dotnet/System.Security.Principal.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Security.Principal.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Security.Principal.dll",
+ "ref/dotnet/System.Security.Principal.xml",
+ "ref/dotnet/zh-hant/System.Security.Principal.xml",
+ "ref/dotnet/de/System.Security.Principal.xml",
+ "ref/dotnet/fr/System.Security.Principal.xml",
+ "ref/dotnet/it/System.Security.Principal.xml",
+ "ref/dotnet/ja/System.Security.Principal.xml",
+ "ref/dotnet/ko/System.Security.Principal.xml",
+ "ref/dotnet/ru/System.Security.Principal.xml",
+ "ref/dotnet/zh-hans/System.Security.Principal.xml",
+ "ref/dotnet/es/System.Security.Principal.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Security.Principal.dll",
+ "ref/netcore50/System.Security.Principal.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/d2167ecb380c408c860234844cf67d48.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Duplex/4.0.0": {
+ "sha512": "9xrHWt+Si5pIeSl/44CYpTTJKRIfHQrEHR9X5s+w9njCAPllvR0HSq/IdTqDL7bNpHH/pGyARJYzP2skH1oLmw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Duplex.nuspec",
+ "lib/netcore50/System.ServiceModel.Duplex.dll",
+ "lib/DNXCore50/System.ServiceModel.Duplex.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Duplex.dll",
+ "ref/dotnet/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/de/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/fr/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/it/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ja/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ko/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ru/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/es/System.ServiceModel.Duplex.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Duplex.dll",
+ "ref/netcore50/System.ServiceModel.Duplex.xml",
+ "package/services/metadata/core-properties/cf038ac1247e42ae85b95bc37d264dba.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Http/4.0.10": {
+ "sha512": "fIwcLZDBW49SWrHOyx88lzq+ADOylZD92REtpEWuv2Y6XA74AG7XcVd/YSmqaLM8dGby6sGV8j7SL8prd9p++w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Http.nuspec",
+ "lib/netcore50/System.ServiceModel.Http.dll",
+ "lib/DNXCore50/System.ServiceModel.Http.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.ServiceModel.Http.dll",
+ "ref/dotnet/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Http.xml",
+ "ref/dotnet/de/System.ServiceModel.Http.xml",
+ "ref/dotnet/fr/System.ServiceModel.Http.xml",
+ "ref/dotnet/it/System.ServiceModel.Http.xml",
+ "ref/dotnet/ja/System.ServiceModel.Http.xml",
+ "ref/dotnet/ko/System.ServiceModel.Http.xml",
+ "ref/dotnet/ru/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Http.xml",
+ "ref/dotnet/es/System.ServiceModel.Http.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/cade0d9420704a3692b521e1e6597870.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.NetTcp/4.0.0": {
+ "sha512": "lunfsS1obMf4OtADN4sMt4ikP+faoRRAHb5bF6rFCCFqShR/pBzK+uhNih6r4Bfrz2I/LVE3cuE2hdOZ91mCyg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.NetTcp.nuspec",
+ "lib/netcore50/System.ServiceModel.NetTcp.dll",
+ "lib/DNXCore50/System.ServiceModel.NetTcp.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.NetTcp.dll",
+ "ref/dotnet/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/de/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/fr/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/it/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ja/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ko/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ru/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/es/System.ServiceModel.NetTcp.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.NetTcp.dll",
+ "ref/netcore50/System.ServiceModel.NetTcp.xml",
+ "package/services/metadata/core-properties/e0aa9ce2e74b457bb270415c04190532.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Primitives/4.0.0": {
+ "sha512": "s3IIHBjGY2OJBJ+NE9MNAPrxDpZFoRtaIeyASr7S4utiB4XzScF5SIvnyigaoOH0XxKy0k4cvmlqrmE/AQpV/A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Primitives.nuspec",
+ "lib/netcore50/System.ServiceModel.Primitives.dll",
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Primitives.dll",
+ "ref/dotnet/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/de/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/fr/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/it/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ja/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ko/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ru/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/es/System.ServiceModel.Primitives.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Primitives.dll",
+ "ref/netcore50/System.ServiceModel.Primitives.xml",
+ "package/services/metadata/core-properties/a790279c1a0941a085bbac6a1b35346b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Security/4.0.0": {
+ "sha512": "yVhmsaZpzd/eQcF9lVobn7iZl7Kwy34qllKZTRnGo3X2Z1GKvp0e5WZELCVB8b5aR/TJNSF1v0X6nzALrl1Thg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Security.nuspec",
+ "lib/netcore50/System.ServiceModel.Security.dll",
+ "lib/DNXCore50/System.ServiceModel.Security.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Security.dll",
+ "ref/dotnet/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Security.xml",
+ "ref/dotnet/de/System.ServiceModel.Security.xml",
+ "ref/dotnet/fr/System.ServiceModel.Security.xml",
+ "ref/dotnet/it/System.ServiceModel.Security.xml",
+ "ref/dotnet/ja/System.ServiceModel.Security.xml",
+ "ref/dotnet/ko/System.ServiceModel.Security.xml",
+ "ref/dotnet/ru/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Security.xml",
+ "ref/dotnet/es/System.ServiceModel.Security.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Security.dll",
+ "ref/netcore50/System.ServiceModel.Security.xml",
+ "package/services/metadata/core-properties/1ad3533e5ed44d90af69bde78bcdb24b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding/4.0.10": {
+ "sha512": "QRMAwNr44yDSOZnEFIbB3B2/wSlRwjg1Up7mLFdz95qLV6HtwJoF5IDmcPAFDhxeBIXA2xEVgQ6NF/bmz7MvFA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.nuspec",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/99e06dad813b4b0ea6e79635e4aeed2d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.0.0": {
+ "sha512": "G1Kac8BSZeoRkyXy8JhJ+nVR2EiEkYx9JPkyjtS55FEE9Q7+zZm9P1cO3R60TvFw7vEA5d0MvteOqaSs0wfZuA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.CodePages.nuspec",
+ "lib/dotnet/System.Text.Encoding.CodePages.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Text.Encoding.CodePages.dll",
+ "ref/dotnet/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/de/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/fr/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/it/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ja/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ko/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ru/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/es/System.Text.Encoding.CodePages.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/96df9198b75d4e57b6b39ee93e11235b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "sha512": "vmWkQnNeSYMv3Qqi1ZbAYsAaQxMM/nSWzU4I5FD1UoF0gXTKmfPy2B7Yvg+TfJruyUM4J7WnDvPjfqmiDEebcw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.Extensions.nuspec",
+ "lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Text.Encoding.Extensions.dll",
+ "ref/dotnet/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/b8dd74a08aa44361a3a7e7a76cc952e8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.RegularExpressions/4.0.10": {
+ "sha512": "5oE4UK1/DKmfdvn6bXVs2wjGPujHHgPMQ4rIFfE6jOeokvMFqWmm6Smj/On4BLL9ePtl2a1K+1m8PN6sR0R3cQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.RegularExpressions.nuspec",
+ "lib/dotnet/System.Text.RegularExpressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Text.RegularExpressions.dll",
+ "ref/dotnet/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet/es/System.Text.RegularExpressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/31d1e1cfc3e94ad983a84849041f458e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading/4.0.10": {
+ "sha512": "OlRpjfuszymCB/WrD902/k89S6GcEoJGjkP499yv7fhk89ClNTejFUn+gSAL+42BuKaV6DhbNfDEbugpzJ9sjg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.nuspec",
+ "lib/DNXCore50/System.Threading.dll",
+ "lib/netcore50/System.Threading.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Threading.dll",
+ "ref/dotnet/System.Threading.xml",
+ "ref/dotnet/zh-hant/System.Threading.xml",
+ "ref/dotnet/de/System.Threading.xml",
+ "ref/dotnet/fr/System.Threading.xml",
+ "ref/dotnet/it/System.Threading.xml",
+ "ref/dotnet/ja/System.Threading.xml",
+ "ref/dotnet/ko/System.Threading.xml",
+ "ref/dotnet/ru/System.Threading.xml",
+ "ref/dotnet/zh-hans/System.Threading.xml",
+ "ref/dotnet/es/System.Threading.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/55cbec202a024564af14207d5fdbad6e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Overlapped/4.0.0": {
+ "sha512": "JqybuOcjX6pE/oiQNt42RrDE0pEzts/Enx7F3SNKppl1zecJqy/6gxQGNP/w1+06Cv7/wqpTJ5nBx/ilUoBMOQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Overlapped.nuspec",
+ "lib/netcore50/System.Threading.Overlapped.dll",
+ "lib/DNXCore50/System.Threading.Overlapped.dll",
+ "lib/net46/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
+ "ref/dotnet/de/System.Threading.Overlapped.xml",
+ "ref/dotnet/fr/System.Threading.Overlapped.xml",
+ "ref/dotnet/it/System.Threading.Overlapped.xml",
+ "ref/dotnet/ja/System.Threading.Overlapped.xml",
+ "ref/dotnet/ko/System.Threading.Overlapped.xml",
+ "ref/dotnet/ru/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
+ "ref/dotnet/es/System.Threading.Overlapped.xml",
+ "ref/net46/System.Threading.Overlapped.dll",
+ "package/services/metadata/core-properties/8e038e1c6e934eb6b1bc029ecd09f5a9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "sha512": "AyPTUdGW6nvfCWOx+V83QpJOI3MPUX0CR1cG1+tREnrAhxFQRIFtbUTSTKDSxBg3Tf9/FuQJ882zAD0d025Vbw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.nuspec",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/2d44b999137446a6b6f025535c68d5c6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25": {
+ "sha512": "ByzWsin3a67XIehKt3Nzr9cjYe7KpKWPG1JdS4uIzRpJCD5jhmeS7viebv1Ww84/hWbjitj/w8evWAeBcU9Zrg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Dataflow.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "package/services/metadata/core-properties/5dbb2f421aa0488489fb65c68cb65b0a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Parallel/4.0.0": {
+ "sha512": "36odC23GPM+90J43UX7T+0Yq8f2T87dDMLj0/pNJ/iLSqQLCnlPOQmoF3rEBaSc0dRLmXo1H2ez6eAjpXyJAew==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Parallel.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Tasks.Parallel.dll",
+ "ref/dotnet/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/de/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/it/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/es/System.Threading.Tasks.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll",
+ "ref/netcore50/System.Threading.Tasks.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/ef7f055e7fdd43978a411750f945e415.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Timer/4.0.0": {
+ "sha512": "5UgGz7+gYFQ9V72cp0YJGr2cXycEzRz4owRAfzvFO5IvC1mWb99+jw/0qeu++m8oEnNgpzHMaiTn6pomCf864w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Timer.nuspec",
+ "lib/netcore50/System.Threading.Timer.dll",
+ "lib/DNXCore50/System.Threading.Timer.dll",
+ "lib/net451/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Timer.dll",
+ "ref/dotnet/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hant/System.Threading.Timer.xml",
+ "ref/dotnet/de/System.Threading.Timer.xml",
+ "ref/dotnet/fr/System.Threading.Timer.xml",
+ "ref/dotnet/it/System.Threading.Timer.xml",
+ "ref/dotnet/ja/System.Threading.Timer.xml",
+ "ref/dotnet/ko/System.Threading.Timer.xml",
+ "ref/dotnet/ru/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hans/System.Threading.Timer.xml",
+ "ref/dotnet/es/System.Threading.Timer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll",
+ "ref/net451/_._",
+ "ref/win81/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/46f0e60d6ab644148c6118b536eccecf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "sha512": "sf5+y7HK/zl6FhuoWOXWUCxRZaAr8sdIFXkBbz0fy52UD2YDDmW2hgo7juSL0tHCFfDEgx/EMMJk2UJemhNveg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.ReaderWriter.nuspec",
+ "lib/dotnet/System.Xml.ReaderWriter.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Xml.ReaderWriter.dll",
+ "ref/dotnet/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/de/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/fr/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/it/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ja/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ko/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ru/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/es/System.Xml.ReaderWriter.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d91fcc706e71450fa842017251387dea.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XDocument/4.0.10": {
+ "sha512": "KFOoas7lYIR5ywRF93eI1RJmQNrZrerV7pAFuSahRvDAmq4WnovI3m0GVOttXQpnxySHNOPhwCZVhc/PXJPmKw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XDocument.nuspec",
+ "lib/dotnet/System.Xml.XDocument.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Xml.XDocument.dll",
+ "ref/dotnet/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XDocument.xml",
+ "ref/dotnet/de/System.Xml.XDocument.xml",
+ "ref/dotnet/fr/System.Xml.XDocument.xml",
+ "ref/dotnet/it/System.Xml.XDocument.xml",
+ "ref/dotnet/ja/System.Xml.XDocument.xml",
+ "ref/dotnet/ko/System.Xml.XDocument.xml",
+ "ref/dotnet/ru/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XDocument.xml",
+ "ref/dotnet/es/System.Xml.XDocument.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/b3ee51c19456402abb9d1b2dd2a8e10f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlDocument/4.0.0": {
+ "sha512": "AgRrKj6UGQF9m+B3vP5gd8ED4syMIeQO0Y9XkuIFWAZVoYi/+uVv0jLQw1ZvRh4aiEyQMsJbMfLgheINWNLjUg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlDocument.nuspec",
+ "lib/dotnet/System.Xml.XmlDocument.dll",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Xml.XmlDocument.dll",
+ "ref/dotnet/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml",
+ "ref/dotnet/de/System.Xml.XmlDocument.xml",
+ "ref/dotnet/fr/System.Xml.XmlDocument.xml",
+ "ref/dotnet/it/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ja/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ko/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ru/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml",
+ "ref/dotnet/es/System.Xml.XmlDocument.xml",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "package/services/metadata/core-properties/07688b9175f04a0e904fcb1d6112f564.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "sha512": "XJBwDtM3i29T2UDMtxSY2e+hWSD2+cEuqTrxvuKKWeY38DcvT6dFKin5qYpGW8fuhqnP6ndUWYF2WtUi+QCl6A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlSerializer.nuspec",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/DNXCore50/System.Xml.XmlSerializer.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Xml.XmlSerializer.dll",
+ "ref/dotnet/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/de/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/fr/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/it/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ja/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ko/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ru/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/es/System.Xml.XmlSerializer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/da8e7adafa1545449bd2c0bb174dfb44.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "FluentAssertions >= 3.4.1",
+ "Microsoft.ApplicationInsights >= 1.0.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel >= 1.0.0",
+ "Microsoft.ApplicationInsights.WindowsApps >= 1.0.0",
+ "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0"
+ ],
+ "UAP,Version=v10.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs
new file mode 100644
index 0000000..cfab5d1
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs
@@ -0,0 +1,133 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace Microsoft.NuGet.Build.Tasks.Tests.Json {
+ using System;
+
+
+ /// <summary>
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// </summary>
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Json {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Json() {
+ }
+
+ /// <summary>
+ /// Returns the cached ResourceManager instance used by this class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.NuGet.Build.Tasks.Tests.Json.Json", typeof(Json).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ /// <summary>
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] analyzers {
+ get {
+ object obj = ResourceManager.GetObject("analyzers", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] FluentAssertions {
+ get {
+ object obj = ResourceManager.GetObject("FluentAssertions", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] FluentAssertionsAndWin10 {
+ get {
+ object obj = ResourceManager.GetObject("FluentAssertionsAndWin10", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] nativeWinMD {
+ get {
+ object obj = ResourceManager.GetObject("nativeWinMD", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] Win10 {
+ get {
+ object obj = ResourceManager.GetObject("Win10", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] Win10_Edm {
+ get {
+ object obj = ResourceManager.GetObject("Win10_Edm", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized resource of type System.Byte[].
+ /// </summary>
+ internal static byte[] Win10_xunit {
+ get {
+ object obj = ResourceManager.GetObject("Win10_xunit", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx
new file mode 100644
index 0000000..c2cd30d
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
+ <data name="analyzers" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>analyzers.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="Win10" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>Win10.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="FluentAssertions" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>FluentAssertions.lock.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="FluentAssertionsAndWin10" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>FluentAssertionsAndWin10.lock.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="Win10_Edm" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>Win10.Edm.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="Win10_xunit" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>Win10.xunit.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+ <data name="nativeWinMD" type="System.Resources.ResXFileRef, System.Windows.Forms">
+ <value>nativeWinMD.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </data>
+</root> \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json
new file mode 100644
index 0000000..6dff4ab
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json
@@ -0,0 +1,14503 @@
+{
+ "locked": false,
+ "version": 1,
+ "targets": {
+ ".NETCore,Version=v5.0": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-arm": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win8-arm/native/clretwrc.dll": {},
+ "runtimes/win8-arm/native/coreclr.dll": {},
+ "runtimes/win8-arm/native/dbgshim.dll": {},
+ "runtimes/win8-arm/native/mscordaccore.dll": {},
+ "runtimes/win8-arm/native/mscordbi.dll": {},
+ "runtimes/win8-arm/native/mscorrc.debug.dll": {},
+ "runtimes/win8-arm/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-arm-aot": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x86/native/clretwrc.dll": {},
+ "runtimes/win7-x86/native/coreclr.dll": {},
+ "runtimes/win7-x86/native/dbgshim.dll": {},
+ "runtimes/win7-x86/native/mscordaccore.dll": {},
+ "runtimes/win7-x86/native/mscordbi.dll": {},
+ "runtimes/win7-x86/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x86/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86-aot": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x64/native/clretwrc.dll": {},
+ "runtimes/win7-x64/native/coreclr.dll": {},
+ "runtimes/win7-x64/native/dbgshim.dll": {},
+ "runtimes/win7-x64/native/mscordaccore.dll": {},
+ "runtimes/win7-x64/native/mscordbi.dll": {},
+ "runtimes/win7-x64/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x64/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64-aot": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "[1.0.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "[1.0.0, )"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "compile": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {}
+ },
+ "resource": {
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": {
+ "locale": "de"
+ },
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": {
+ "locale": "es"
+ },
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": {
+ "locale": "it"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.ApplicationInsights/1.0.0": {
+ "sha512": "HZ47/thX57SOuIivSvIbsR6L9CCb/Yt3IyB2i4KHmmNlf3DO+lqFwWIKDdbDNWKX+qh0Rg20/JSMPK0dwUsYYw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.dll",
+ "lib/net40/Microsoft.ApplicationInsights.XML",
+ "lib/net45/Microsoft.ApplicationInsights.dll",
+ "lib/net45/Microsoft.ApplicationInsights.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.XML",
+ "package/services/metadata/core-properties/b9e7bc7ab2454491af07046165ff01d0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/1.0.0": {
+ "sha512": "0qQXC+CtbyF2RPuld5pF74fxsnP6ml0LUnzQ6GL9AXXY64LPsLDsPUAymoUffo7LZvPDppZboTYX59TfVxKA7A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.PersistenceChannel.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/portable-win8+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "package/services/metadata/core-properties/dc9ebba80e7343fdbd0a39a3cdeb672c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/1.0.0": {
+ "sha512": "fNCAjIwvbTV+G0dT14bgM5tptsqeSaKQaCrlq7QknOq1Xdm8ZmgsDYddMgXkvykyKLjWyU6fKuOpj6fsQJy+wQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.WindowsApps.nuspec",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "package/services/metadata/core-properties/4f6f732debe548beaa1183418e8d65cc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "sha512": "zq+DgzqylERvM/CkTZ50tzhjoBEdtsumPsbGqVvLKe705tmJEr3sczcUoYXs4XnjAbHoYDB10m0y9CIBhxheHg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.CSharp.nuspec",
+ "lib/dotnet/Microsoft.CSharp.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/Microsoft.CSharp.dll",
+ "ref/dotnet/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hant/Microsoft.CSharp.xml",
+ "ref/dotnet/de/Microsoft.CSharp.xml",
+ "ref/dotnet/fr/Microsoft.CSharp.xml",
+ "ref/dotnet/it/Microsoft.CSharp.xml",
+ "ref/dotnet/ja/Microsoft.CSharp.xml",
+ "ref/dotnet/ko/Microsoft.CSharp.xml",
+ "ref/dotnet/ru/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet/es/Microsoft.CSharp.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/6010bbccaba549d0978968067cab1137.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.Data.Edm/5.6.5-beta": {
+ "sha512": "UmLLrlUv4nLczlF5L2JKstZ1fEOoKxPI0IvpSNGpst/8NLX3PSFjKwAScFZdjvZIZm26nz66cvn062QMTewQ/g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.Data.Edm.nuspec",
+ "lib/net40/de/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/es/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/fr/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/it/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/ja/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/ko/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/ru/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll",
+ "lib/net40/Microsoft.Data.Edm.dll",
+ "lib/net40/Microsoft.Data.Edm.xml",
+ "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.dll",
+ "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.xml",
+ "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll",
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll",
+ "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.xml",
+ "lib/sl4/de/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/es/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/fr/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/it/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/ja/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/ko/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/ru/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/zh-Hans/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/zh-Hant/Microsoft.Data.Edm.resources.dll",
+ "lib/sl4/Microsoft.Data.Edm.dll",
+ "lib/sl4/Microsoft.Data.Edm.xml",
+ "package/services/metadata/core-properties/89c3610ceb9949daad0ec3cdce3c62b9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "sha512": "tzoo+KWtIg3MxpG7wSfXp9UoFNVqgT9g7xUzcSDDusnZYehJMOrVpeRGs1Q5UOlFxZ2Sc5nha7HagNOz2MEeXw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/1ff8ebb0c1d643e7953bd23c315e0cd4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {
+ "sha512": "iO2UeSbUveZKtf/cOh3DcCBAvDmUneAXGaLN6+/VmoHwXbKbLFR5tOq5zDYVFFLYx/0Z1GA5oBfTZqrblavTgQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Platforms.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/61f86d8bc95544d8acfc8bf4463c9ec8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "sha512": "lBj7drfPEWjQSWJpsFzjocES1Ud9EzrBeEAMTqJrdbs9v0SIeBWr4dolyVC/d9QHQSEfeoPoOea1eVR4AzaRoQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Portable.Compatibility.nuspec",
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "lib/netcore50/System.Core.dll",
+ "lib/netcore50/System.dll",
+ "lib/netcore50/System.Net.dll",
+ "lib/netcore50/System.Numerics.dll",
+ "lib/netcore50/System.Runtime.Serialization.dll",
+ "lib/netcore50/System.ServiceModel.dll",
+ "lib/netcore50/System.ServiceModel.Web.dll",
+ "lib/netcore50/System.Windows.dll",
+ "lib/netcore50/System.Xml.dll",
+ "lib/netcore50/System.Xml.Linq.dll",
+ "lib/netcore50/System.Xml.Serialization.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/mscorlib.dll",
+ "ref/dotnet/System.ComponentModel.DataAnnotations.dll",
+ "ref/dotnet/System.Core.dll",
+ "ref/dotnet/System.dll",
+ "ref/dotnet/System.Net.dll",
+ "ref/dotnet/System.Numerics.dll",
+ "ref/dotnet/System.Runtime.Serialization.dll",
+ "ref/dotnet/System.ServiceModel.dll",
+ "ref/dotnet/System.ServiceModel.Web.dll",
+ "ref/dotnet/System.Windows.dll",
+ "ref/dotnet/System.Xml.dll",
+ "ref/dotnet/System.Xml.Linq.dll",
+ "ref/dotnet/System.Xml.Serialization.dll",
+ "runtimes/aot/lib/netcore50/mscorlib.dll",
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "runtimes/aot/lib/netcore50/System.Core.dll",
+ "runtimes/aot/lib/netcore50/System.dll",
+ "runtimes/aot/lib/netcore50/System.Net.dll",
+ "runtimes/aot/lib/netcore50/System.Numerics.dll",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
+ "runtimes/aot/lib/netcore50/System.Windows.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/mscorlib.dll",
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "ref/netcore50/System.Core.dll",
+ "ref/netcore50/System.dll",
+ "ref/netcore50/System.Net.dll",
+ "ref/netcore50/System.Numerics.dll",
+ "ref/netcore50/System.Runtime.Serialization.dll",
+ "ref/netcore50/System.ServiceModel.dll",
+ "ref/netcore50/System.ServiceModel.Web.dll",
+ "ref/netcore50/System.Windows.dll",
+ "ref/netcore50/System.Xml.dll",
+ "ref/netcore50/System.Xml.Linq.dll",
+ "ref/netcore50/System.Xml.Serialization.dll",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/47bd8f682d66401bb1ee91a4542a5f7b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {
+ "sha512": "dttypM1I4cpz3+QzZSu1uKYYbZMTo9tp6Lai+KC/eAV8TN1Teh7RylG7pujOjXHfng1N+v3UnXmoYxfQXEui8A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/37c38541eac4488799d148b36455301a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0-beta-23106": {
+ "sha512": "5G/7xNRVUKASig4cskhcNWYKHmBjsjOFI5sbLljVFShni41d05HnXRE+8L+S0Ir+4y4SbD3lmNOJTc4eN75TEw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec",
+ "runtimes/win8-arm/native/clretwrc.dll",
+ "runtimes/win8-arm/native/coreclr.dll",
+ "runtimes/win8-arm/native/dbgshim.dll",
+ "runtimes/win8-arm/native/mscordaccore.dll",
+ "runtimes/win8-arm/native/mscordbi.dll",
+ "runtimes/win8-arm/native/mscorrc.debug.dll",
+ "runtimes/win8-arm/native/mscorrc.dll",
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/e375d92b758b4c1c941f37c105654769.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23106": {
+ "sha512": "wf0hPk0+5LrhBQhBoVc7FndFbW5eRPynuCkJIeTT6jMqNX/P4VJ24q4O8l1bZM07utTR1tCWuUso63Op2q9q6Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec",
+ "runtimes/win7-x64/native/clretwrc.dll",
+ "runtimes/win7-x64/native/coreclr.dll",
+ "runtimes/win7-x64/native/dbgshim.dll",
+ "runtimes/win7-x64/native/mscordaccore.dll",
+ "runtimes/win7-x64/native/mscordbi.dll",
+ "runtimes/win7-x64/native/mscorrc.debug.dll",
+ "runtimes/win7-x64/native/mscorrc.dll",
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/3b39c87efc28494f8e2132a1b8da9b9e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23106": {
+ "sha512": "gcNM0Hf59bRj1V8serAIieyPqxbYpI/dIVOvEVV1HsM8I7gzbqsyMsw3U7xPLXG5ulzyOcH/gQQ5HVrInPX8ig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec",
+ "runtimes/win7-x86/native/clretwrc.dll",
+ "runtimes/win7-x86/native/coreclr.dll",
+ "runtimes/win7-x86/native/dbgshim.dll",
+ "runtimes/win7-x86/native/mscordaccore.dll",
+ "runtimes/win7-x86/native/mscordbi.dll",
+ "runtimes/win7-x86/native/mscorrc.debug.dll",
+ "runtimes/win7-x86/native/mscorrc.dll",
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/5983a458e1c14375abe887dd67def6df.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "sha512": "t1JvhWK16ZIYU2OJYWMdKZ2hNdKhaczdMkYuwrGpaP474tRcoPDe3h4cO1eNpliHNGJc+UvGTi0p/oNODktteQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.Native.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/a9951ac155814769bd8ad97d6d7add1e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "sha512": "tuIl7DusvT6GoYVJ96Uu92SwUvRj6m96MBmr9XGtwz3/QHYKgBe7JVzEvTlbzHgwgUV7j8SARmrkp3TdK4+tsQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/a89570f33e6041bc81332204ea501630.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "sha512": "ceoC+brZ5mI7Q5EiFZBegnjxl/Rx2a9ZLMVzn9/DBMQEHflY7vbLEQZA8oLWWdMWmSLziei9ttqBMNH2/Wz4QQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/461dab1e93974b6ea284c6dfdbc1b7aa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "sha512": "WUP2umHjW5JQ7akWNMZQLeGM/Y7PMLu9QvmPDUAnl+5RnMhY30UKk2kzPmBHgJfKoQVG9pGgSR0+CHxZON19Mw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/0a9c36c4c228429e9f32e26421e8370a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23106": {
+ "sha512": "F3OvzxPoHFTmecxG7po80Qa0z/qaWpmeVGneT8BJEW6hXIUUn75y23FxadiuRm9O018AeyqJZQtvQfp0JBcTcQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x64.nuspec",
+ "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x64/native/_._",
+ "package/services/metadata/core-properties/bb4d8e7bbadc4fa3987a4fe2fb1711e8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23106": {
+ "sha512": "R/8OE3h7L9BejOCR7GR0oQsjIkCMSzzxJHV5NUEMSf4jxLs5+8KTb4LEBPY6Lrvk13riQ50QBhmQQ5YaNGwUig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x86.nuspec",
+ "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x86/native/_._",
+ "package/services/metadata/core-properties/7c0f763958764e26a4d28baf64013e93.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "sha512": "np+N38Zl4rVnk8ziwdLq3oNUcZQDHuqm9GSXnEu2u3YmUJzVhqyWcNnTidwwt3RxjC1zvT57xaWhjClLThK7vw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.VisualBasic.nuspec",
+ "lib/dotnet/Microsoft.VisualBasic.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.VisualBasic.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/Microsoft.VisualBasic.dll",
+ "ref/dotnet/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml",
+ "ref/dotnet/de/Microsoft.VisualBasic.xml",
+ "ref/dotnet/fr/Microsoft.VisualBasic.xml",
+ "ref/dotnet/it/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ja/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ko/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ru/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml",
+ "ref/dotnet/es/Microsoft.VisualBasic.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.VisualBasic.dll",
+ "ref/netcore50/Microsoft.VisualBasic.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/20741e78b37048c8b1340707fa76a7ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "sha512": "MYvjZ60thkcra1wrsyONtJ/NRvcpMz1VHSoEz+uU9rcB0gxgUpwY0z21PkBlC7kVg5PJ8yTF5Kj0PqwGtC7g0g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.Win32.Primitives.nuspec",
+ "lib/dotnet/Microsoft.Win32.Primitives.dll",
+ "lib/net46/Microsoft.Win32.Primitives.dll",
+ "ref/dotnet/Microsoft.Win32.Primitives.dll",
+ "ref/dotnet/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
+ "ref/net46/Microsoft.Win32.Primitives.dll",
+ "package/services/metadata/core-properties/f4aec608e8534b9586f00d5e96de6fdc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "sha512": "/1n3zY/t2gCQKlT0Qq27ePZoSbkMmpT1QDGvWSIZ/caEaprIPBDr5wre8t1pTYSqtRzfOCv9ZM9w+VA4KWmf6Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.AppContext.nuspec",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/DNXCore50/System.AppContext.dll",
+ "lib/net46/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.xml",
+ "ref/dotnet/zh-hant/System.AppContext.xml",
+ "ref/dotnet/de/System.AppContext.xml",
+ "ref/dotnet/fr/System.AppContext.xml",
+ "ref/dotnet/it/System.AppContext.xml",
+ "ref/dotnet/ja/System.AppContext.xml",
+ "ref/dotnet/ko/System.AppContext.xml",
+ "ref/dotnet/ru/System.AppContext.xml",
+ "ref/dotnet/zh-hans/System.AppContext.xml",
+ "ref/dotnet/es/System.AppContext.xml",
+ "ref/net46/System.AppContext.dll",
+ "package/services/metadata/core-properties/4d9b5cdb2c6e4ff28c41394e2a9a2aad.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "sha512": "XiahRkJ8Wg9CqhvU5fzKQBMQyAHmslpsTUGzwqJu9XGCqlQUJYxNbyQ41qFTyQrPnxConoOumrBWmZ7FErSAvA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.nuspec",
+ "lib/netcore50/System.Collections.dll",
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Collections.dll",
+ "ref/dotnet/System.Collections.xml",
+ "ref/dotnet/zh-hant/System.Collections.xml",
+ "ref/dotnet/de/System.Collections.xml",
+ "ref/dotnet/fr/System.Collections.xml",
+ "ref/dotnet/it/System.Collections.xml",
+ "ref/dotnet/ja/System.Collections.xml",
+ "ref/dotnet/ko/System.Collections.xml",
+ "ref/dotnet/ru/System.Collections.xml",
+ "ref/dotnet/zh-hans/System.Collections.xml",
+ "ref/dotnet/es/System.Collections.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/3841e6b4d37a4d86bdd071326abae74e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "sha512": "2RL8xuDZNhze1C6CpA5qHAFSlNlFw7LMu7Lq+ekaIKqSK7NEQx6s/JqAopmBJLG7ytnaIEsoNz1h6Ovm2rX9BA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Concurrent.nuspec",
+ "lib/dotnet/System.Collections.Concurrent.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Collections.Concurrent.dll",
+ "ref/dotnet/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hant/System.Collections.Concurrent.xml",
+ "ref/dotnet/de/System.Collections.Concurrent.xml",
+ "ref/dotnet/fr/System.Collections.Concurrent.xml",
+ "ref/dotnet/it/System.Collections.Concurrent.xml",
+ "ref/dotnet/ja/System.Collections.Concurrent.xml",
+ "ref/dotnet/ko/System.Collections.Concurrent.xml",
+ "ref/dotnet/ru/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hans/System.Collections.Concurrent.xml",
+ "ref/dotnet/es/System.Collections.Concurrent.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/e3a48eca65cb4e6490b14d86822b30ef.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "sha512": "AXzKY/yibRbcKsopX+tE/L4uoQ3kpIBeWbq2W58lTWg88IlHk/myuG6cfD/nVaULjLlA6NPGqasgk+JX11WO7w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Immutable.nuspec",
+ "lib/dotnet/System.Collections.Immutable.dll",
+ "lib/dotnet/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "package/services/metadata/core-properties/f59eda11b46349c7ad764e995a162d91.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "sha512": "BZdYTKRz5wBvirmpb3JrxEzxfKNwCbO/ACmMnRs3xIAGnlusyHklRXyQK8LwpO+81K2i6ftY3i2JQpez9Wed5w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.NonGeneric.nuspec",
+ "lib/dotnet/System.Collections.NonGeneric.dll",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/dotnet/de/System.Collections.NonGeneric.xml",
+ "ref/dotnet/fr/System.Collections.NonGeneric.xml",
+ "ref/dotnet/it/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ja/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ko/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ru/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/dotnet/es/System.Collections.NonGeneric.xml",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "package/services/metadata/core-properties/4bdd96362f364c3cb0087c8e5a980d39.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "sha512": "27JeTw7ulS8J+MzdFX6BL+mH3TfNU/dFf5+tvnXYiv27rJkCuxSMOpmMNsgCARFa2TMdSL7N2owYEcUycp+fxw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Specialized.nuspec",
+ "lib/dotnet/System.Collections.Specialized.dll",
+ "lib/net46/System.Collections.Specialized.dll",
+ "ref/dotnet/System.Collections.Specialized.dll",
+ "ref/dotnet/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hant/System.Collections.Specialized.xml",
+ "ref/dotnet/de/System.Collections.Specialized.xml",
+ "ref/dotnet/fr/System.Collections.Specialized.xml",
+ "ref/dotnet/it/System.Collections.Specialized.xml",
+ "ref/dotnet/ja/System.Collections.Specialized.xml",
+ "ref/dotnet/ko/System.Collections.Specialized.xml",
+ "ref/dotnet/ru/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hans/System.Collections.Specialized.xml",
+ "ref/dotnet/es/System.Collections.Specialized.xml",
+ "ref/net46/System.Collections.Specialized.dll",
+ "package/services/metadata/core-properties/e9dd5cf36abb4e1aa44719e348ccfa04.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "sha512": "5Itxa1o15332MpLi2dk/yy0jJ4nSZKeVZxo64Jo1JcJHq+6xWLCDHj7br1ZrjjJYmZphEzsij8Q9sDIlvVHpmQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.nuspec",
+ "lib/dotnet/System.ComponentModel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.ComponentModel.dll",
+ "ref/dotnet/System.ComponentModel.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.xml",
+ "ref/dotnet/de/System.ComponentModel.xml",
+ "ref/dotnet/fr/System.ComponentModel.xml",
+ "ref/dotnet/it/System.ComponentModel.xml",
+ "ref/dotnet/ja/System.ComponentModel.xml",
+ "ref/dotnet/ko/System.ComponentModel.xml",
+ "ref/dotnet/ru/System.ComponentModel.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.xml",
+ "ref/dotnet/es/System.ComponentModel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/a9e165e71861467dafa5538361a168b2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "sha512": "GFptTDVh+DdrKsNeWU8vG5uujXH0FmECr5fQ3dvsB11WOqAoL8vOT9lBWXP/d947RDlOWFORKfMWYspK6943hA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.Annotations.nuspec",
+ "lib/dotnet/System.ComponentModel.Annotations.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ComponentModel.Annotations.dll",
+ "ref/dotnet/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/de/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/fr/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/it/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ja/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ko/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ru/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/es/System.ComponentModel.Annotations.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/464dd46742624a13be1eb38508e690fa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "sha512": "vhXuXKur0TU6RTIRQLFY8iwPDGG/OQ+BAuu5s5Ud1+EI3Fry+o7pzhNgfOXPy9YS3ks78OBUTSGaflhuy+xG/w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.EventBasedAsync.nuspec",
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/667164745f2d45ffbeb2f9b3fa6c8a21.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "sha512": "2uoyeLuiG67NcEXLvwTwF8BvGcvt2R7vRzXNwZjCssCFFhvAUYxKOCF0wNEr3+GTEQwYBiUbCXjFpFQd5qdFWg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Data.Common.nuspec",
+ "lib/dotnet/System.Data.Common.dll",
+ "lib/net46/System.Data.Common.dll",
+ "ref/dotnet/System.Data.Common.dll",
+ "ref/dotnet/System.Data.Common.xml",
+ "ref/dotnet/zh-hant/System.Data.Common.xml",
+ "ref/dotnet/de/System.Data.Common.xml",
+ "ref/dotnet/fr/System.Data.Common.xml",
+ "ref/dotnet/it/System.Data.Common.xml",
+ "ref/dotnet/ja/System.Data.Common.xml",
+ "ref/dotnet/ko/System.Data.Common.xml",
+ "ref/dotnet/ru/System.Data.Common.xml",
+ "ref/dotnet/zh-hans/System.Data.Common.xml",
+ "ref/dotnet/es/System.Data.Common.xml",
+ "ref/net46/System.Data.Common.dll",
+ "package/services/metadata/core-properties/f4c4693a219348cd8e0febc5852075ac.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "sha512": "2rLFUjokCFbFTGnk5PIHnpPMhU/etjFxHu680ufzBObT+oQL+yqch96O5U4zNg66hIeJrL4qJE5vE41AdatG/A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Contracts.nuspec",
+ "lib/netcore50/System.Diagnostics.Contracts.dll",
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Contracts.dll",
+ "ref/dotnet/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/de/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/fr/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/it/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ja/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ko/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ru/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/es/System.Diagnostics.Contracts.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/netcore50/System.Diagnostics.Contracts.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/7d3b50a7406042e0863ce22d0764518c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "sha512": "hu0WOq13+c1MK0Cl1n77OXwStdI0Gn6QqCnDlpjtTckaqeIfHMJOBYjfKKK/QJ3Yhp01Yvl2xCVWZXnbRVP7dw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Debug.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/dotnet/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet/es/System.Diagnostics.Debug.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/ef9794a2aca141c9b374d059544985e7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "sha512": "h0mgKXLu3xf/eJDrE/PsbztBTVEYMPmpqDGkc1nxwxXbOghXauEKBWzJWXnRsfMJGmc9skx5v4wxZmS40LZUXw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.StackTrace.nuspec",
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll",
+ "lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "lib/net46/System.Diagnostics.StackTrace.dll",
+ "ref/dotnet/System.Diagnostics.StackTrace.dll",
+ "ref/dotnet/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/de/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/fr/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/it/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ja/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ko/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ru/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/es/System.Diagnostics.StackTrace.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "ref/net46/System.Diagnostics.StackTrace.dll",
+ "package/services/metadata/core-properties/84367f14f0114908936f7af01c6dd3f3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "sha512": "Z5PTgbig6ft1J+LQcZqyNslxhXMSPO3zgNxI7pobAlAsmldRD47sdfBrT6QFVVqhS9jCVw1NCVWFW9SymIkAUQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tools.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Tools.dll",
+ "lib/netcore50/System.Diagnostics.Tools.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Tools.dll",
+ "ref/dotnet/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/dotnet/de/System.Diagnostics.Tools.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tools.xml",
+ "ref/dotnet/it/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/dotnet/es/System.Diagnostics.Tools.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/131fe853c49640a996e163134f6f97ff.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "sha512": "NwlO/v45NEbCEg1FP9JvoyDjp2uuVyORhi6XdZ0dV0ZXOgZ158ktLi9xObDMCgS/QeLkp0eBK25MYjmpJ2Aaug==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tracing.nuspec",
+ "lib/netcore50/System.Diagnostics.Tracing.dll",
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Diagnostics.Tracing.dll",
+ "ref/dotnet/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/de/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/it/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/es/System.Diagnostics.Tracing.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/499e0077b4b64bffa82d13239164705a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "sha512": "u9DdBYiWMP9Fiq4BKouaSYB9zKBEyVrCE3OffrZVHIvEOvpphmpWz8i4F5soj2JQomqnLuCNsBtMlAX8ppp32Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Dynamic.Runtime.nuspec",
+ "lib/netcore50/System.Dynamic.Runtime.dll",
+ "lib/DNXCore50/System.Dynamic.Runtime.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/60b57c78f5064b3786f094496efe28bd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "sha512": "ODB8Cy6Q2qKeQglTqRv6Dna/gNU61cSU8DnKakFjFFcfBRKEVpfK+e1xVDhABHeZCK55XX3+O+8+Clr0rh4vXg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.nuspec",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.xml",
+ "ref/dotnet/zh-hant/System.Globalization.xml",
+ "ref/dotnet/de/System.Globalization.xml",
+ "ref/dotnet/fr/System.Globalization.xml",
+ "ref/dotnet/it/System.Globalization.xml",
+ "ref/dotnet/ja/System.Globalization.xml",
+ "ref/dotnet/ko/System.Globalization.xml",
+ "ref/dotnet/ru/System.Globalization.xml",
+ "ref/dotnet/zh-hans/System.Globalization.xml",
+ "ref/dotnet/es/System.Globalization.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/26fc783df55b4f7a863212db23c4d9a9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "sha512": "oey74NpEoF5J4YXMNiLCxC4XQ077qjFNBo/9cWcyKXj8NSMI7PJUKX250vSlaDTCA4aUifdparRjAASEYCGQrg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Calendars.nuspec",
+ "lib/netcore50/System.Globalization.Calendars.dll",
+ "lib/DNXCore50/System.Globalization.Calendars.dll",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "ref/dotnet/System.Globalization.Calendars.dll",
+ "ref/dotnet/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
+ "ref/dotnet/de/System.Globalization.Calendars.xml",
+ "ref/dotnet/fr/System.Globalization.Calendars.xml",
+ "ref/dotnet/it/System.Globalization.Calendars.xml",
+ "ref/dotnet/ja/System.Globalization.Calendars.xml",
+ "ref/dotnet/ko/System.Globalization.Calendars.xml",
+ "ref/dotnet/ru/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
+ "ref/dotnet/es/System.Globalization.Calendars.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "package/services/metadata/core-properties/81b1c335e1f248cdadc44ac0b0324ace.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "sha512": "rqBFegkfJDr9mwK3bZ7/IVUGn0FJnAVIZnE2h5RBzsOYGUvxGy9Nb1JPeh2jbliU5GyD0aFWXy1N9NKROAxUHw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Extensions.nuspec",
+ "lib/dotnet/System.Globalization.Extensions.dll",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "ref/dotnet/System.Globalization.Extensions.dll",
+ "ref/dotnet/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
+ "ref/dotnet/de/System.Globalization.Extensions.xml",
+ "ref/dotnet/fr/System.Globalization.Extensions.xml",
+ "ref/dotnet/it/System.Globalization.Extensions.xml",
+ "ref/dotnet/ja/System.Globalization.Extensions.xml",
+ "ref/dotnet/ko/System.Globalization.Extensions.xml",
+ "ref/dotnet/ru/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
+ "ref/dotnet/es/System.Globalization.Extensions.xml",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "package/services/metadata/core-properties/16dde173f541453dab94af083ed939fd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "sha512": "C1M2Irm0fIohvwhlSSzHtW9bjgwCfLpdd+4ESDE7KMwp7YjxbTaJfbCfXxxDUyAYH+xE9s7c12huRw9x4p/cRA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.nuspec",
+ "lib/netcore50/System.IO.dll",
+ "lib/DNXCore50/System.IO.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.IO.dll",
+ "ref/dotnet/System.IO.xml",
+ "ref/dotnet/zh-hant/System.IO.xml",
+ "ref/dotnet/de/System.IO.xml",
+ "ref/dotnet/fr/System.IO.xml",
+ "ref/dotnet/it/System.IO.xml",
+ "ref/dotnet/ja/System.IO.xml",
+ "ref/dotnet/ko/System.IO.xml",
+ "ref/dotnet/ru/System.IO.xml",
+ "ref/dotnet/zh-hans/System.IO.xml",
+ "ref/dotnet/es/System.IO.xml",
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/4648135d23104fd4a31f0f708b0551ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "sha512": "CeEoY72ESZfklGan0JZ+ey3uIw2BGN3NOsN+uhmZvjXDJfLvKoIA+V+vKkI5RNAwgr2dJCfDD/bfGCZIQpac5w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.nuspec",
+ "lib/dotnet/System.IO.Compression.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.IO.Compression.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.IO.Compression.dll",
+ "ref/dotnet/System.IO.Compression.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.xml",
+ "ref/dotnet/de/System.IO.Compression.xml",
+ "ref/dotnet/fr/System.IO.Compression.xml",
+ "ref/dotnet/it/System.IO.Compression.xml",
+ "ref/dotnet/ja/System.IO.Compression.xml",
+ "ref/dotnet/ko/System.IO.Compression.xml",
+ "ref/dotnet/ru/System.IO.Compression.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.xml",
+ "ref/dotnet/es/System.IO.Compression.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.xml",
+ "ref/wpa81/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/bc9b28e2a7c6467eaf5d056f808aa0c1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "sha512": "+CYBq0p9agplmskbgeqlnV5F7Vuc4WyYXAZSFxEQS2sfV4rdnLBXjXNQca9tS1HdMDL1xPjif+YCLDozz7PLSQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-arm.nuspec",
+ "runtimes/win7-arm/native/clrcompression.dll",
+ "runtimes/win10-arm/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/7bf64ade629e4793bbf614f89df775bf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "sha512": "m/uRCTVUelHKmtQyAMuLihgc5KfYjWhVpr4C/rjJVNLTthylJAcIfPSisfPxEVBgSGHX5bBKuuRAFUq8Mthf7Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x64.nuspec",
+ "runtimes/win7-x64/native/clrcompression.dll",
+ "runtimes/win10-x64/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/324be69975b3459a96bc20b2918ee3f1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "sha512": "er7FiiyfZQn3LX1+lvdObD49J61s2ydseewcTvedaZSI2uShrfC4u1LAwExHiM7RDWQpnNuCUaYdUuVeKr2KJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x86.nuspec",
+ "runtimes/win7-x86/native/clrcompression.dll",
+ "runtimes/win10-x86/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/c703e204ba9943cd95a8cbac65aa38c3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "sha512": "ympMbivxqbfJVl/QY00tqjjjRq0yUbvrgozvxFv6OBvZH2f5TVnN/4gZ49CfItUtY7s+zwyTvteHhGg8rIdNCg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.ZipFile.nuspec",
+ "lib/dotnet/System.IO.Compression.ZipFile.dll",
+ "lib/net46/System.IO.Compression.ZipFile.dll",
+ "ref/dotnet/System.IO.Compression.ZipFile.dll",
+ "ref/dotnet/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/de/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/fr/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/it/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ja/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ko/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ru/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/es/System.IO.Compression.ZipFile.xml",
+ "ref/net46/System.IO.Compression.ZipFile.dll",
+ "package/services/metadata/core-properties/81ddb455709540598a2515704da230a6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "sha512": "O3fkBA4FfVptM+ujoSUMhsKYrDJEfkHkFbuxcitf/B89Xwu6QM54TxwyCUyZRg9s9qHYGRVKwpevxRovpA9Flg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.nuspec",
+ "lib/DNXCore50/System.IO.FileSystem.dll",
+ "lib/netcore50/System.IO.FileSystem.dll",
+ "lib/net46/System.IO.FileSystem.dll",
+ "ref/dotnet/System.IO.FileSystem.dll",
+ "ref/dotnet/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
+ "ref/dotnet/de/System.IO.FileSystem.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.xml",
+ "ref/dotnet/it/System.IO.FileSystem.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet/es/System.IO.FileSystem.xml",
+ "ref/net46/System.IO.FileSystem.dll",
+ "package/services/metadata/core-properties/941baaa277ee44e1ba9b803425a50e3a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "sha512": "MaUWUJswoe49TLD5loZR1J87puBZDEAEoT6Q/Bg6OrSZJrxfTnfFPB1/xCh7XzTBa54UF/eG0ZhL5io6iEmSqg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.Primitives.nuspec",
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll",
+ "ref/dotnet/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "package/services/metadata/core-properties/f5118ba49d36420abc4c4d539f69fb85.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "sha512": "HhlDjZh25cWTZprj0qEnAQqWGq8qzGcdVIZ2IRo5A7NNK7ObHX6vLMTmNmb0oJIHmKngUKAO7nZ9uFUfzrryOA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.IsolatedStorage.nuspec",
+ "lib/netcore50/System.IO.IsolatedStorage.dll",
+ "ref/dotnet/System.IO.IsolatedStorage.dll",
+ "ref/dotnet/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/de/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/fr/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/it/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ja/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ko/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ru/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/es/System.IO.IsolatedStorage.xml",
+ "package/services/metadata/core-properties/08e03580ebd64be5ae8232c5095cd6fb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "sha512": "jx/fwxCTaoiVd64I6t7JTueU+Xa+iS00sK4nPfHbWlAcsxtlbLefUXevRg80pLu5Ri5NXurmpjBUfu2zW71kBQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.UnmanagedMemoryStream.nuspec",
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "lib/net46/System.IO.UnmanagedMemoryStream.dll",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml",
+ "ref/net46/System.IO.UnmanagedMemoryStream.dll",
+ "package/services/metadata/core-properties/f7cd82def7bd4604b8cf1df71883b0c6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "sha512": "6+Zdp92hCKhqRza6Jf2aiP7KSXmRRr6DRvliGCgx8HFaP9raudpSRz2BYZjeFenncKe+Jex5rqfpjn7+IVKwhQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.nuspec",
+ "lib/dotnet/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.dll",
+ "ref/dotnet/System.Linq.xml",
+ "ref/dotnet/zh-hant/System.Linq.xml",
+ "ref/dotnet/de/System.Linq.xml",
+ "ref/dotnet/fr/System.Linq.xml",
+ "ref/dotnet/it/System.Linq.xml",
+ "ref/dotnet/ja/System.Linq.xml",
+ "ref/dotnet/ko/System.Linq.xml",
+ "ref/dotnet/ru/System.Linq.xml",
+ "ref/dotnet/zh-hans/System.Linq.xml",
+ "ref/dotnet/es/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/17b97dae93de485aac17e3ce64eece2c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "sha512": "drQhshlnZBL0il5VKrB2O/eiIYUFK6vtRzt+Fws+1V3V4ySBMZdNTo/XHjlWiHSovWMZxiR7C3PUbpxfweL7Hg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Expressions.nuspec",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/DNXCore50/System.Linq.Expressions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
+ "ref/dotnet/de/System.Linq.Expressions.xml",
+ "ref/dotnet/fr/System.Linq.Expressions.xml",
+ "ref/dotnet/it/System.Linq.Expressions.xml",
+ "ref/dotnet/ja/System.Linq.Expressions.xml",
+ "ref/dotnet/ko/System.Linq.Expressions.xml",
+ "ref/dotnet/ru/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet/es/System.Linq.Expressions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/5caf14580cc2454b8d5ce770cb3b80af.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "sha512": "pjqvf0sG7MHb6Pkh/NY9bTTzhDEytJKbf12jIqZRNiXYHgcD7sy3CNFj7lBtJv09FhsL9sDZIF+OWx1wv2UXKw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Parallel.nuspec",
+ "lib/dotnet/System.Linq.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Parallel.dll",
+ "ref/dotnet/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Linq.Parallel.xml",
+ "ref/dotnet/de/System.Linq.Parallel.xml",
+ "ref/dotnet/fr/System.Linq.Parallel.xml",
+ "ref/dotnet/it/System.Linq.Parallel.xml",
+ "ref/dotnet/ja/System.Linq.Parallel.xml",
+ "ref/dotnet/ko/System.Linq.Parallel.xml",
+ "ref/dotnet/ru/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Linq.Parallel.xml",
+ "ref/dotnet/es/System.Linq.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Parallel.dll",
+ "ref/netcore50/System.Linq.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c6d41e229782490ca70e645221adcede.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "sha512": "TvjR84HuCqXIW0DoAV2X+0a+2SONJMvSeyAJauWY2o8wasEl/DUVj+mOqvLO2SaD1Z90aLtYxI4xRBI8dzz52g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Queryable.nuspec",
+ "lib/dotnet/System.Linq.Queryable.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Queryable.dll",
+ "ref/dotnet/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hant/System.Linq.Queryable.xml",
+ "ref/dotnet/de/System.Linq.Queryable.xml",
+ "ref/dotnet/fr/System.Linq.Queryable.xml",
+ "ref/dotnet/it/System.Linq.Queryable.xml",
+ "ref/dotnet/ja/System.Linq.Queryable.xml",
+ "ref/dotnet/ko/System.Linq.Queryable.xml",
+ "ref/dotnet/ru/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hans/System.Linq.Queryable.xml",
+ "ref/dotnet/es/System.Linq.Queryable.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/e580a08247154fc8adc6d6b3281a8ccb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "sha512": "4L+kIsMSFcCdx7XlOfvxMxkpUnUiI7G9TBDU9Nak3R90c2HQf+yqHjTB4+5LZAX3leuvb7o2XjXg/v0S0actvA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.nuspec",
+ "lib/netcore50/System.Net.Http.dll",
+ "lib/DNXCore50/System.Net.Http.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Net.Http.dll",
+ "ref/dotnet/System.Net.Http.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.xml",
+ "ref/dotnet/de/System.Net.Http.xml",
+ "ref/dotnet/fr/System.Net.Http.xml",
+ "ref/dotnet/it/System.Net.Http.xml",
+ "ref/dotnet/ja/System.Net.Http.xml",
+ "ref/dotnet/ko/System.Net.Http.xml",
+ "ref/dotnet/ru/System.Net.Http.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.xml",
+ "ref/dotnet/es/System.Net.Http.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/23a19c4719a54a1596b4f11f58753c91.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "sha512": "QBbjp2hQz/Zf4785aidpYqtWFOto3KjGP7nHnmaEaUlXI1KAg1qR8V5Ggh+u1XAJrSvSc3ydUIkNgDVOQ43hPw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.Rtc.nuspec",
+ "lib/netcore50/System.Net.Http.Rtc.dll",
+ "lib/win8/_._",
+ "ref/dotnet/System.Net.Http.Rtc.dll",
+ "ref/dotnet/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml",
+ "ref/dotnet/de/System.Net.Http.Rtc.xml",
+ "ref/dotnet/fr/System.Net.Http.Rtc.xml",
+ "ref/dotnet/it/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ja/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ko/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ru/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml",
+ "ref/dotnet/es/System.Net.Http.Rtc.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.Rtc.dll",
+ "ref/netcore50/System.Net.Http.Rtc.xml",
+ "package/services/metadata/core-properties/ad7e1c0402bb44f7ad4f743928fa092e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "sha512": "Omvmk6A1XdgUWA/1XbbZhtX3IIEYuxKA9l+wuAu9uOneVlq0NUGZVkJ9dy7QPacxKPh2FEvPjWQJBYceo54DAg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.NetworkInformation.nuspec",
+ "lib/netcore50/System.Net.NetworkInformation.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Net.NetworkInformation.dll",
+ "ref/dotnet/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml",
+ "ref/dotnet/de/System.Net.NetworkInformation.xml",
+ "ref/dotnet/fr/System.Net.NetworkInformation.xml",
+ "ref/dotnet/it/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ja/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ko/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ru/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml",
+ "ref/dotnet/es/System.Net.NetworkInformation.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.NetworkInformation.dll",
+ "ref/netcore50/System.Net.NetworkInformation.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/cb222020b27c4651a15d932c22f0298c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "sha512": "tpuHAnpxFaVSKM3MUjhXH66iMsP/7BKF//2jEltejADmZuvWroqskL0lAXoXrYdtaEVfdqgVNROHDYT44RFqOQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Primitives.nuspec",
+ "lib/netcore50/System.Net.Primitives.dll",
+ "lib/DNXCore50/System.Net.Primitives.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.Primitives.dll",
+ "ref/dotnet/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Net.Primitives.xml",
+ "ref/dotnet/de/System.Net.Primitives.xml",
+ "ref/dotnet/fr/System.Net.Primitives.xml",
+ "ref/dotnet/it/System.Net.Primitives.xml",
+ "ref/dotnet/ja/System.Net.Primitives.xml",
+ "ref/dotnet/ko/System.Net.Primitives.xml",
+ "ref/dotnet/ru/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Net.Primitives.xml",
+ "ref/dotnet/es/System.Net.Primitives.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/35760cf30d07403ca2158876043cbda3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "sha512": "ibpcX0vHNn6EUR33D3wv8zfCJDh+ZdDRer+E3aqXKp6NoMv/RQs3NOScYUAI8/uNgSUfuKfIi4FDkwtEqwxgDA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Requests.nuspec",
+ "lib/dotnet/System.Net.Requests.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.Requests.dll",
+ "ref/dotnet/System.Net.Requests.xml",
+ "ref/dotnet/zh-hant/System.Net.Requests.xml",
+ "ref/dotnet/de/System.Net.Requests.xml",
+ "ref/dotnet/fr/System.Net.Requests.xml",
+ "ref/dotnet/it/System.Net.Requests.xml",
+ "ref/dotnet/ja/System.Net.Requests.xml",
+ "ref/dotnet/ko/System.Net.Requests.xml",
+ "ref/dotnet/ru/System.Net.Requests.xml",
+ "ref/dotnet/zh-hans/System.Net.Requests.xml",
+ "ref/dotnet/es/System.Net.Requests.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/c7584aca45554523bf158d9cd4bfc869.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "sha512": "wHc8k2a1etI3rl98LkW2+vYNhTUHvVnRVKAA+FHYinKfdIBH9PCs8kEjgDufbCs/pCmkhbK7n91ekJHO1I/r1Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Sockets.nuspec",
+ "lib/netcore50/System.Net.Sockets.dll",
+ "lib/net46/System.Net.Sockets.dll",
+ "ref/dotnet/System.Net.Sockets.dll",
+ "ref/dotnet/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hant/System.Net.Sockets.xml",
+ "ref/dotnet/de/System.Net.Sockets.xml",
+ "ref/dotnet/fr/System.Net.Sockets.xml",
+ "ref/dotnet/it/System.Net.Sockets.xml",
+ "ref/dotnet/ja/System.Net.Sockets.xml",
+ "ref/dotnet/ko/System.Net.Sockets.xml",
+ "ref/dotnet/ru/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hans/System.Net.Sockets.xml",
+ "ref/dotnet/es/System.Net.Sockets.xml",
+ "ref/net46/System.Net.Sockets.dll",
+ "package/services/metadata/core-properties/77221152f7314d0290dfc6780f578e46.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "sha512": "lw1CkMNZhsXxKlMei2r/WhJXN7PdSb5J7iiJN+vpStNnGObGPaz2rgvzZQCHnpApi+dSR9Mbbi4W/F8Wb2gcXA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.WebHeaderCollection.nuspec",
+ "lib/dotnet/System.Net.WebHeaderCollection.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.WebHeaderCollection.dll",
+ "ref/dotnet/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/de/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/fr/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/it/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ja/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ko/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ru/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/es/System.Net.WebHeaderCollection.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6007bdf3d9b64128932a45a014fce281.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "sha512": "k8xssGyVdxDi0Q15T/3TMcqypXw5z7fe3KF1e+NL6P+q7y6WQ7QaL9XYy+a36Kkbvgnfv6ekEIiH8Y17Q7aGZw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Numerics.Vectors.nuspec",
+ "lib/dotnet/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "ref/dotnet/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "package/services/metadata/core-properties/c5bb799b9fc34115a7bb53607989698f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "sha512": "AlBini72KPo++7XFrFwkUO2GPp9k3nIaQU7vHDmnvYv0Dq4kVf/+3Omy4ZqQtGQHTQ0jRPel2f+b/2fNG7Wieg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ObjectModel.nuspec",
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/f4dc33b8854f4e6a9182e71d0b64dece.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "sha512": "7yGAuNKJp49E4sg8QGAJUKEFTFK8MTYlKsBtdRZfaV6oXMUtNhUby3jiookEMs8QktzUs+HHSSQjQJdeevNYHQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.DataContractSerialization.nuspec",
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll",
+ "lib/netcore50/System.Private.DataContractSerialization.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/f2fad965c58446f9bacd59f6b4a48654.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "sha512": "iqEcTZ7+Hmlpfwb8rg+FQ/F2bD7BjpWPHtTxHLLUN3vN3nSjHWt+Wug6aKa1mY6xubVkYEsUpQ/KSQmF2NKsQA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Networking.nuspec",
+ "lib/netcore50/System.Private.Networking.dll",
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/a7525983c017406bbfb431db7fb2bf5e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "sha512": "DRbPhyXKZ53D9pEnhvOEvusMlo7bskZElxWLqADNoShQln8ziSRWA+881gpBRCEX5jCbGo7iERcZYagpHUQOuw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.ServiceModel.nuspec",
+ "lib/netcore50/System.Private.ServiceModel.dll",
+ "lib/DNXCore50/System.Private.ServiceModel.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/820dbbde2abe4da7910bba7bc8bb5ae7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "sha512": "8zmc081m0YrbFgbbbVhcpuN+BPwYfah9z0B/9+9wesFfYRZ9kaRMGD/qEA3W9G8oofseAhAkR4ZSnoMjp36BVw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Uri.nuspec",
+ "lib/netcore50/System.Private.Uri.dll",
+ "lib/DNXCore50/System.Private.Uri.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll",
+ "package/services/metadata/core-properties/5cda8304109f4749aab528f2ed1cec5e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "sha512": "jlwpnpeuKz/9Hc6E0mHR+uLazc6MR/+osOMAWw1sK7Ih6Fw3RXaG5bKZMgnpoolZbG/nsqaJE+MKf53t2VWKJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.nuspec",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.xml",
+ "ref/dotnet/zh-hant/System.Reflection.xml",
+ "ref/dotnet/de/System.Reflection.xml",
+ "ref/dotnet/fr/System.Reflection.xml",
+ "ref/dotnet/it/System.Reflection.xml",
+ "ref/dotnet/ja/System.Reflection.xml",
+ "ref/dotnet/ko/System.Reflection.xml",
+ "ref/dotnet/ru/System.Reflection.xml",
+ "ref/dotnet/zh-hans/System.Reflection.xml",
+ "ref/dotnet/es/System.Reflection.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/9d688ab470eb42ae8a1af6f56d429ed8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "sha512": "5+S0uWv7ch1JUpbzgvMciGlzOuJo+SEi1Jjba8SIXnkT6aF0aHCyiURwVqQDj8cII0IAf4UUrHDPm9zXsJI97w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Context.nuspec",
+ "lib/netcore50/System.Reflection.Context.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.Reflection.Context.dll",
+ "ref/dotnet/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Context.xml",
+ "ref/dotnet/de/System.Reflection.Context.xml",
+ "ref/dotnet/fr/System.Reflection.Context.xml",
+ "ref/dotnet/it/System.Reflection.Context.xml",
+ "ref/dotnet/ja/System.Reflection.Context.xml",
+ "ref/dotnet/ko/System.Reflection.Context.xml",
+ "ref/dotnet/ru/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Context.xml",
+ "ref/dotnet/es/System.Reflection.Context.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Context.dll",
+ "ref/netcore50/System.Reflection.Context.xml",
+ "package/services/metadata/core-properties/bf32e0886e9b4fa08ba39357149cc080.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "sha512": "k81NYVZrEygx73H0HkRxUO1Vwpw0Zl2H/DW9yIGHgYaeCOVkFepquoHDU35wFsTA30r7eXFdp+xSGJuPFLK8zg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.DispatchProxy.nuspec",
+ "lib/net46/System.Reflection.DispatchProxy.dll",
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll",
+ "lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "ref/dotnet/System.Reflection.DispatchProxy.dll",
+ "ref/dotnet/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/de/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/fr/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/it/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ja/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ko/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ru/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/es/System.Reflection.DispatchProxy.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/b4ee8b9c1c684c99b009dd16f9e8a46c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "sha512": "jrpx6vch/g7Dow9D3fB7xPkYRmoZDRdwli6jgbm1i4YDum5CL9zxsMvocIixG8EE7IbXdDSaxrB2q4fpOceMEg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.dll",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/net45/_._",
+ "ref/dotnet/System.Reflection.Emit.dll",
+ "ref/dotnet/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
+ "ref/dotnet/de/System.Reflection.Emit.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.xml",
+ "ref/dotnet/it/System.Reflection.Emit.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
+ "ref/dotnet/es/System.Reflection.Emit.xml",
+ "ref/net45/_._",
+ "package/services/metadata/core-properties/b53bcaeeac444034b6089d737ecac06b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "sha512": "PjQMuALxRkv0VaP+89NmfVdErwyimZo4D+LgfRssjyVuLp97WO5vhsa4a0C6K+AIXNSPl1Y5nY0SfrlvOeozxw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.ILGeneration.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/7afe3e944bfa413abd9a97611237609c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "sha512": "Tb+uqTG00NsZOKvxkedn+3emi0ozlSoM6eCeDm5qyPkZLj/qxSfiYOVqjBIQrdM9CTy4BOpeFJwxlWpdguMgvQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.Lightweight.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/9ade939e22b743e099c9cdb123dfecf3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "sha512": "pZUERDlwtdOCTcRhjZSoq8G6bSw4X1iyasaq/CqC2+EP0A2NnHkHjpuwLrUeWaIt9QtiisVxBiwq62oLTZHJjQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Extensions.nuspec",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Extensions.dll",
+ "ref/dotnet/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
+ "ref/dotnet/de/System.Reflection.Extensions.xml",
+ "ref/dotnet/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet/it/System.Reflection.Extensions.xml",
+ "ref/dotnet/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet/es/System.Reflection.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/8df91ec744ca47cba9bb9ed1e154ec73.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "sha512": "1AUUvxR4j18EHZgTICgqdEld4Qp90F9wExTX8a1KMWXKZPS8FzNPNJeHycMRVg0395DwSe0KqJx5hb7i7NARnQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Metadata.nuspec",
+ "lib/dotnet/System.Reflection.Metadata.dll",
+ "lib/dotnet/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "package/services/metadata/core-properties/eeae52e43a6f47419c6ed4e3d9d9cce5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "sha512": "nOlCR3qXrpfToSq7Z+nFkt8yjGN3CNyz34JVWXXBrALqgg09vnsvUIlQzqiWTvE8LDBKIVTskT5bHL+0btX6zw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Primitives.nuspec",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Primitives.dll",
+ "ref/dotnet/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
+ "ref/dotnet/de/System.Reflection.Primitives.xml",
+ "ref/dotnet/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet/it/System.Reflection.Primitives.xml",
+ "ref/dotnet/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet/es/System.Reflection.Primitives.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f5b2ed5bd01d47cfb8a63ca2936a623e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "sha512": "CAAvEZl2EURbPQEhZ3Eh3/VzsV7zGFBjbv/cflWnrhw1xSQ5KdA/hstqkNCXKpTH791IuWmc0t6cEFgRUiB9UA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.TypeExtensions.nuspec",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "package/services/metadata/core-properties/a19d217af17f4e4e9739703ab7d0ee5a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "sha512": "1igID8DOpxK4ZZjQT64xtnj9ZrYP6aSAKCYVmnRyqRpZqjvSg4y8vTukNpa9Z6ZcHMhCynSuhJK1lRVglxEDFA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Resources.ResourceManager.nuspec",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
+ "ref/dotnet/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/dotnet/de/System.Resources.ResourceManager.xml",
+ "ref/dotnet/fr/System.Resources.ResourceManager.xml",
+ "ref/dotnet/it/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ja/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ko/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ru/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/dotnet/es/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/4446bf8886334dc098e23989368b245d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "sha512": "J/xLQkCm+SKmFVGgXugVcyAiDyDAHV7tayhK0ntgH5GS6+zIcRNJKKeUTu2xyJX9Jgw2V4Y6vUqFdn7LL33atg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.nuspec",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.dll",
+ "ref/dotnet/System.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.xml",
+ "ref/dotnet/de/System.Runtime.xml",
+ "ref/dotnet/fr/System.Runtime.xml",
+ "ref/dotnet/it/System.Runtime.xml",
+ "ref/dotnet/ja/System.Runtime.xml",
+ "ref/dotnet/ko/System.Runtime.xml",
+ "ref/dotnet/ru/System.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.xml",
+ "ref/dotnet/es/System.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/da73a9c6f83e4863bc08a77f3eb83613.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "sha512": "EuARSd4k87Ul34YDgBFi1q7e12jM/jc2I63Js1QPRTOKdvhzlxIIJx3G4xzCAPvWZIN8uf4adxV5TONZ5FJ3XA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Extensions.nuspec",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Extensions.dll",
+ "ref/dotnet/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet/de/System.Runtime.Extensions.xml",
+ "ref/dotnet/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet/it/System.Runtime.Extensions.xml",
+ "ref/dotnet/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet/es/System.Runtime.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/46f3b08e5708494dbf4dbe1b13613fe6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "sha512": "HpEy5mCPvDL+Bj5X63dpmmamTLRyRgrCny9fJ9Z4RWuxOwVbor0FSqdqKyfNvFnjCr3jAdhAg+mKN/43AKWEAw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Handles.nuspec",
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/c15cd660a13e4f86a14ed72f3dcd8de1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "sha512": "kfg/YMDY7sffqw9+r24WU5HuLRC4IBXTgvEDGyZHieENKBUnAhCryqCA9siqN8AvJlnmPDMeEhSWeRL9SR6P/Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.nuspec",
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/80aae8e9c2c64e1da3a5d0b0737b6ee9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "sha512": "UOOzjO+erGH3HlP3YliO2c9PAKNhlWz7toV2ICOyfdVrCS6qduBdUxDaYtw0zKGuvrxj0ZMhp0Jn7GZzpmB0vQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f53bcc1d77214589ae159c2be9ca9dbf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "sha512": "rZUyoYej0ucrmIth/pTDsSeam+l/dQgPB7v50RYBqswzhktjkfSrhQoCnRswKT6kVMwDERTP/GG7RCA1w91dmQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Numerics.nuspec",
+ "lib/dotnet/System.Runtime.Numerics.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Runtime.Numerics.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Numerics.dll",
+ "ref/dotnet/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Numerics.xml",
+ "ref/dotnet/de/System.Runtime.Numerics.xml",
+ "ref/dotnet/fr/System.Runtime.Numerics.xml",
+ "ref/dotnet/it/System.Runtime.Numerics.xml",
+ "ref/dotnet/ja/System.Runtime.Numerics.xml",
+ "ref/dotnet/ko/System.Runtime.Numerics.xml",
+ "ref/dotnet/ru/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Numerics.xml",
+ "ref/dotnet/es/System.Runtime.Numerics.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Numerics.dll",
+ "ref/netcore50/System.Runtime.Numerics.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/24464de74d7f4d719a646b95743a2001.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "sha512": "oQhGKdmfginWAFOElK87+CUyTRxwKx/G22PE1ctioTdb41S4ehuJg37hoM3HshJIhF6OhqQ9gY5wB+8bIHuZcA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Json.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Json.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Serialization.Json.dll",
+ "ref/dotnet/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Json.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/netcore50/System.Runtime.Serialization.Json.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/6d123d3eb0094041a5a29c79eaceeef3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "sha512": "AJl0dVozkZTE0iAaXIZjRfuBxtu/6VbLLHuyWfww5Z8LEe8Nw0vRzoa3wRN4XfHy5tqlujB1Tq1fsAxI2zF76Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Primitives.nuspec",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/985506fdb2f14a8c97718bf9e2d4f54b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "sha512": "A2DmSziwYau8dxH1FZgFxXWraFLIKbE8bl+jsNUfFbd/8kI4uUItoEINQl7B451V+aStgHI4Ksbxy7WJV2cTZQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Xml.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll",
+ "ref/dotnet/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Xml.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/9f398d259732466db85777c747b1adc0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "sha512": "WDWWdz4HVxK5jqAjBW66DUJ9RT2ZP3uTUPTip4QX9pjf5TUweSBlfaBfa8yqbDatDBjkIrf1yQQNpedCcGxDgQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/win81/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f178e37fa62c486dbb2e4a388aafa46b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "sha512": "1LvZWF4oa3hgOyEeRJLSNY2dB6aoukYK/tozymxgF+k9bLAMBhgM1pdYi/VNcIF2eZobkF2xF9Nrx7SIeUDHJg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/2dc5faa929804f9281c5a3dbc4ee8eff.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "sha512": "c0O3FFVFj6bdi1J+qCKRZgLIr3aGn+j1d1u0vL4PjeMoWiff1uJVbRooE3shkx+/WefqWYCJHhQVeJuK733TUw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Claims.nuspec",
+ "lib/dotnet/System.Security.Claims.dll",
+ "lib/net46/System.Security.Claims.dll",
+ "ref/dotnet/System.Security.Claims.dll",
+ "ref/dotnet/System.Security.Claims.xml",
+ "ref/dotnet/zh-hant/System.Security.Claims.xml",
+ "ref/dotnet/de/System.Security.Claims.xml",
+ "ref/dotnet/fr/System.Security.Claims.xml",
+ "ref/dotnet/it/System.Security.Claims.xml",
+ "ref/dotnet/ja/System.Security.Claims.xml",
+ "ref/dotnet/ko/System.Security.Claims.xml",
+ "ref/dotnet/ru/System.Security.Claims.xml",
+ "ref/dotnet/zh-hans/System.Security.Claims.xml",
+ "ref/dotnet/es/System.Security.Claims.xml",
+ "ref/net46/System.Security.Claims.dll",
+ "package/services/metadata/core-properties/cf70091e08d241449452c9ee811b83c7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "sha512": "EB8T/MdUTB1y5lnWTRozPgoCe671zvJ5WEb7famYIDFSssa2LTuSHMY/giLqGp2UZRPNjpDuJJ2bW9OTkZyXBg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Principal.nuspec",
+ "lib/dotnet/System.Security.Principal.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Security.Principal.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Security.Principal.dll",
+ "ref/dotnet/System.Security.Principal.xml",
+ "ref/dotnet/zh-hant/System.Security.Principal.xml",
+ "ref/dotnet/de/System.Security.Principal.xml",
+ "ref/dotnet/fr/System.Security.Principal.xml",
+ "ref/dotnet/it/System.Security.Principal.xml",
+ "ref/dotnet/ja/System.Security.Principal.xml",
+ "ref/dotnet/ko/System.Security.Principal.xml",
+ "ref/dotnet/ru/System.Security.Principal.xml",
+ "ref/dotnet/zh-hans/System.Security.Principal.xml",
+ "ref/dotnet/es/System.Security.Principal.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Security.Principal.dll",
+ "ref/netcore50/System.Security.Principal.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/e4fc722a7b8e4ed7b68fdd20ef084ffc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "sha512": "EOZg57Q6gsBM8yKmTBPxM53Yq2ELamtWSMN1z2rOv4T/IquiffUWidrpcM7XJoBfWseYtK5dhU0fPa9JEjgfpQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Duplex.nuspec",
+ "lib/netcore50/System.ServiceModel.Duplex.dll",
+ "lib/DNXCore50/System.ServiceModel.Duplex.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Duplex.dll",
+ "ref/dotnet/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/de/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/fr/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/it/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ja/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ko/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ru/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/es/System.ServiceModel.Duplex.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Duplex.dll",
+ "ref/netcore50/System.ServiceModel.Duplex.xml",
+ "package/services/metadata/core-properties/26d515bbc6e04fb4b9eec8d5c47f3de5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "sha512": "4IXt3gRA8nVR/nG0iCGI99mdLgAbyxLNIQ8ymSvg/4Cm2tER0NKQknewQG61C17UDxLUIfBsz7JHpQz4RD9qEg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Http.nuspec",
+ "lib/netcore50/System.ServiceModel.Http.dll",
+ "lib/DNXCore50/System.ServiceModel.Http.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ServiceModel.Http.dll",
+ "ref/dotnet/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Http.xml",
+ "ref/dotnet/de/System.ServiceModel.Http.xml",
+ "ref/dotnet/fr/System.ServiceModel.Http.xml",
+ "ref/dotnet/it/System.ServiceModel.Http.xml",
+ "ref/dotnet/ja/System.ServiceModel.Http.xml",
+ "ref/dotnet/ko/System.ServiceModel.Http.xml",
+ "ref/dotnet/ru/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Http.xml",
+ "ref/dotnet/es/System.ServiceModel.Http.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/20c9be0230964a5191fb81766c4d0ccf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "sha512": "u2lnUen71IErVBZakJeTZvi3CBH5iPFQOnz+iJLGCDzgvtosZyCSoYJLIWQBTNKfTmBO7wpQbuJL/bmH1rFwzA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.NetTcp.nuspec",
+ "lib/netcore50/System.ServiceModel.NetTcp.dll",
+ "lib/DNXCore50/System.ServiceModel.NetTcp.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.NetTcp.dll",
+ "ref/dotnet/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/de/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/fr/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/it/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ja/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ko/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ru/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/es/System.ServiceModel.NetTcp.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.NetTcp.dll",
+ "ref/netcore50/System.ServiceModel.NetTcp.xml",
+ "package/services/metadata/core-properties/be7fee24fb1940639c1047c8866932d6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "sha512": "4jc1vMZaiMVW0//IJqm8mjUHwA4SqNUlIwIP2b0XdXQ3QfzOAhjTBI0Xp7Psj0U+uuLTJgXap96gRmlAQmBCVQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Primitives.nuspec",
+ "lib/netcore50/System.ServiceModel.Primitives.dll",
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Primitives.dll",
+ "ref/dotnet/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/de/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/fr/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/it/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ja/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ko/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ru/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/es/System.ServiceModel.Primitives.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Primitives.dll",
+ "ref/netcore50/System.ServiceModel.Primitives.xml",
+ "package/services/metadata/core-properties/65c4a6ec2bcc4d658d07ba4043f48d19.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "sha512": "2I2FrNHpfcL6K9yLypldzV4hljJxlU8laA74kFCAUpNPEjqdn1XQKvOuzX1qlim6Qa7tUayp+8OgGDb53Xnyig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Security.nuspec",
+ "lib/netcore50/System.ServiceModel.Security.dll",
+ "lib/DNXCore50/System.ServiceModel.Security.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Security.dll",
+ "ref/dotnet/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Security.xml",
+ "ref/dotnet/de/System.ServiceModel.Security.xml",
+ "ref/dotnet/fr/System.ServiceModel.Security.xml",
+ "ref/dotnet/it/System.ServiceModel.Security.xml",
+ "ref/dotnet/ja/System.ServiceModel.Security.xml",
+ "ref/dotnet/ko/System.ServiceModel.Security.xml",
+ "ref/dotnet/ru/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Security.xml",
+ "ref/dotnet/es/System.ServiceModel.Security.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Security.dll",
+ "ref/netcore50/System.ServiceModel.Security.xml",
+ "package/services/metadata/core-properties/70adcd646ef24dfcb536556d2c15d4d9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "sha512": "JTF8153jIwE4VwMo5O1o44eGtpVL8qK8KZf6OWueE2AFhcchyLmYoXMHbbfk9Gaxg8DU8JUYVf+cXBdolt9C+A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.nuspec",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6221a8d8917940fb95e0e100c2960c69.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "sha512": "Pi64qTjyINI1vIXhzhGJKew5+8duWTDP0WLxMOZnM8k69skZg+dhXt8kobddCiZytYMCXoC/5F2l+GIDh7QcRg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.CodePages.nuspec",
+ "lib/dotnet/System.Text.Encoding.CodePages.dll",
+ "ref/dotnet/System.Text.Encoding.CodePages.dll",
+ "ref/dotnet/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/de/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/fr/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/it/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ja/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ko/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ru/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/es/System.Text.Encoding.CodePages.xml",
+ "package/services/metadata/core-properties/954b1f8d6b3b437d98a19c28e6455efb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "sha512": "zMxXXIkeAuySfWrBdN2MDry2Kmi0Htnxf764lKutN6vzNwN1mOcD0l8KO6kzSljzTJPF4nVcSFOCRb2DVxNXVg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.Extensions.nuspec",
+ "lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.Encoding.Extensions.dll",
+ "ref/dotnet/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/71378309a75a44649b951fc37b99ea81.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "sha512": "JjisR+L5NMfjf2NJE2eC7LaIT6xBxniAGrD9Yxh5jsRlczVRn0v4bvIhzLthXPbkuPxYsGBmK8ipkIMJun4Yow==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.RegularExpressions.nuspec",
+ "lib/dotnet/System.Text.RegularExpressions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.RegularExpressions.dll",
+ "ref/dotnet/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet/es/System.Text.RegularExpressions.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/b4b848fb2a6a4870aca5cc0b136af4bb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "sha512": "DopL8QQymbzkT7rsu5f9Vg9ef8c9EQh7qRXW1RMOy7/C82IPbbXquJBojKbMcqPkKgUfZKguryP40WAxDo1Aqg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.nuspec",
+ "lib/DNXCore50/System.Threading.dll",
+ "lib/netcore50/System.Threading.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Threading.dll",
+ "ref/dotnet/System.Threading.xml",
+ "ref/dotnet/zh-hant/System.Threading.xml",
+ "ref/dotnet/de/System.Threading.xml",
+ "ref/dotnet/fr/System.Threading.xml",
+ "ref/dotnet/it/System.Threading.xml",
+ "ref/dotnet/ja/System.Threading.xml",
+ "ref/dotnet/ko/System.Threading.xml",
+ "ref/dotnet/ru/System.Threading.xml",
+ "ref/dotnet/zh-hans/System.Threading.xml",
+ "ref/dotnet/es/System.Threading.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/d435264688c741e79c6b32e7817cc9c4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "sha512": "85jPKjIdvNwejBt8QSbS1+S+x37WJaIpc1L3m4UCG2NHNqbWVKwGJBtm7YcVoLDRzOxAjFl5/xWVcr2Cf9HdJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Overlapped.nuspec",
+ "lib/netcore50/System.Threading.Overlapped.dll",
+ "lib/DNXCore50/System.Threading.Overlapped.dll",
+ "lib/net46/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
+ "ref/dotnet/de/System.Threading.Overlapped.xml",
+ "ref/dotnet/fr/System.Threading.Overlapped.xml",
+ "ref/dotnet/it/System.Threading.Overlapped.xml",
+ "ref/dotnet/ja/System.Threading.Overlapped.xml",
+ "ref/dotnet/ko/System.Threading.Overlapped.xml",
+ "ref/dotnet/ru/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
+ "ref/dotnet/es/System.Threading.Overlapped.xml",
+ "ref/net46/System.Threading.Overlapped.dll",
+ "package/services/metadata/core-properties/f8993666a36b48959925a0cea1ea3849.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "sha512": "qXWbc75PdnrWeR3zNyH8yAfDAIHsibkXv/Tey3w/s9uU2QRFsnqD6QzjFqYHk1HHUipN1QIsfzMIw0+9BR8sHw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.nuspec",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6ffef357bd6a420982aa3f6eb7cc9748.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "sha512": "L1Z4dGLQKu2cyYVRfOkEA0vziXW/aq704KhLGJIqdC9ryususWoAgKJXyeO9fFFw6ies2u966/UK0qTT+XyzDw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Dataflow.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "package/services/metadata/core-properties/e7a71f6bd0054d13b5c13f0b264a8ac6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "sha512": "L5PD8PFFG5WRpp2fFE8Xbkjcd08GwS6ET0ph7Pz+Gl9st/Q7e9+OJ3urX92b0P37vcruVJAdbpxjJpOdo6NI1Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Parallel.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Tasks.Parallel.dll",
+ "ref/dotnet/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/de/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/it/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/es/System.Threading.Tasks.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll",
+ "ref/netcore50/System.Threading.Tasks.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c4f906c2c0aa4ad08e228c71feac4344.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "sha512": "OhE9/OTzQf23Wd/RGl3hRj3/sW2Jx6jauFEDkTcClScnJAWxIbnttadWuXf8BFFmmuj34RAX7eK0a4UdCnJu1A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Timer.nuspec",
+ "lib/netcore50/System.Threading.Timer.dll",
+ "lib/DNXCore50/System.Threading.Timer.dll",
+ "lib/net451/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Timer.dll",
+ "ref/dotnet/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hant/System.Threading.Timer.xml",
+ "ref/dotnet/de/System.Threading.Timer.xml",
+ "ref/dotnet/fr/System.Threading.Timer.xml",
+ "ref/dotnet/it/System.Threading.Timer.xml",
+ "ref/dotnet/ja/System.Threading.Timer.xml",
+ "ref/dotnet/ko/System.Threading.Timer.xml",
+ "ref/dotnet/ru/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hans/System.Threading.Timer.xml",
+ "ref/dotnet/es/System.Threading.Timer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll",
+ "ref/net451/_._",
+ "ref/win81/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/d13b77603b8f44aa99d9ca288d9f4fda.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "sha512": "04TvN532OQysbnLrmhdderWxFWpEj2/4xXWEsFQHJ53MMDVR8tWILY9mTqF9sxdLkw4p7Lh6x2HAvetPFP/TtA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.ReaderWriter.nuspec",
+ "lib/dotnet/System.Xml.ReaderWriter.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.ReaderWriter.dll",
+ "ref/dotnet/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/de/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/fr/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/it/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ja/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ko/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ru/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/es/System.Xml.ReaderWriter.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/2c57a7880d344cfb97ace09e13258e59.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "sha512": "KMxXSyx1tZh22QVrXSaCtdtNsDz9jdv/PvrTLfYAlSdWK/fWe1IK5FsNoS+RNj94ZAuLwLp9W5myRrZMZ1iFSw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XDocument.nuspec",
+ "lib/dotnet/System.Xml.XDocument.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.XDocument.dll",
+ "ref/dotnet/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XDocument.xml",
+ "ref/dotnet/de/System.Xml.XDocument.xml",
+ "ref/dotnet/fr/System.Xml.XDocument.xml",
+ "ref/dotnet/it/System.Xml.XDocument.xml",
+ "ref/dotnet/ja/System.Xml.XDocument.xml",
+ "ref/dotnet/ko/System.Xml.XDocument.xml",
+ "ref/dotnet/ru/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XDocument.xml",
+ "ref/dotnet/es/System.Xml.XDocument.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/f9712e14298a4edd92916c22f7184760.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "sha512": "quRfoWi4tHLA1INcpiFduzMSUVqWT8O8kJJsydY1b8K9trHtXQ1UGpZDx+4enIPpy1/vz1fE6qA4MxkC87IUjQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlDocument.nuspec",
+ "lib/dotnet/System.Xml.XmlDocument.dll",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "ref/dotnet/System.Xml.XmlDocument.dll",
+ "ref/dotnet/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml",
+ "ref/dotnet/de/System.Xml.XmlDocument.xml",
+ "ref/dotnet/fr/System.Xml.XmlDocument.xml",
+ "ref/dotnet/it/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ja/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ko/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ru/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml",
+ "ref/dotnet/es/System.Xml.XmlDocument.xml",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "package/services/metadata/core-properties/101e3cb24bbe45069e9b9513d525cd78.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "sha512": "RHpHZGG7soaaSUhaUKk42xv7QcQy7E6AYS5uSHhHrRszHTqzD2t0MukF1ILX+OTE3id3xhCdT5E4nNh6KgSiwA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlSerializer.nuspec",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/DNXCore50/System.Xml.XmlSerializer.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.XmlSerializer.dll",
+ "ref/dotnet/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/de/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/fr/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/it/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ja/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ko/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ru/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/es/System.Xml.XmlSerializer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/d8f5eae3fb504da294ba3795c1cbd6ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "Microsoft.ApplicationInsights >= 1.0.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel >= 1.0.0",
+ "Microsoft.ApplicationInsights.WindowsApps >= 1.0.0",
+ "Microsoft.NETCore.UniversalWindowsPlatform >= 1.0.0-beta-23106",
+ "Microsoft.Data.Edm >= 5.6.5-beta"
+ ],
+ ".NETCore,Version=v5.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json
new file mode 100644
index 0000000..0d0c8c4
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json
@@ -0,0 +1,10418 @@
+{
+ "locked": false,
+ "version": -9996,
+ "targets": {
+ ".NETCore,Version=v5.0": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "0.17.0"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36",
+ "System.Reflection.Metadata": "1.0.21",
+ "Microsoft.CSharp": "4.0.0-beta-23003",
+ "Microsoft.VisualBasic": "10.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.AppContext": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Annotations": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.ComponentModel.TypeConverter": "4.0.0-beta-23003",
+ "System.Console": "4.0.0-beta-23003",
+ "System.Data.Common": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Diagnostics.Tools": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Globalization.Calendars": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.IO.Compression.ZipFile": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.UnmanagedMemoryStream": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq.Parallel": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Net.NetworkInformation": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Numerics.Vectors": "4.1.0-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Numerics": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Json": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.ServiceModel.Duplex": "4.0.0-beta-23003",
+ "System.ServiceModel.Http": "4.0.10-beta-23003",
+ "System.ServiceModel.Primitives": "4.0.0-beta-23003",
+ "System.ServiceModel.Security": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Text.Encoding.CodePages": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Threading.Tasks.Parallel": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XPath.XDocument": "4.0.0-beta-23003",
+ "System.Xml.XPath.XmlDocument": "4.0.0-beta-23003",
+ "Microsoft.NETCore.Targets": "1.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "1.0.0-beta-23003",
+ "Microsoft.NETCore": "5.0.0-beta-23003",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.0-beta-23003",
+ "System.IO.IsolatedStorage": "4.0.0-beta-23003",
+ "System.Net.Http.Rtc": "4.0.0-beta-23003",
+ "System.Net.Requests": "4.0.10-beta-23003",
+ "System.Reflection.Context": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0-beta-23003"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "compile": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.TypeConverter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Console.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.Networking": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Collections.Concurrent": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Reflection.DispatchProxy": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36"
+ },
+ "compile": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Private.Uri": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.dll": {}
+ }
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XmlDocument.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "0.17.0"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36",
+ "System.Reflection.Metadata": "1.0.21",
+ "Microsoft.CSharp": "4.0.0-beta-23003",
+ "Microsoft.VisualBasic": "10.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.AppContext": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Annotations": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.ComponentModel.TypeConverter": "4.0.0-beta-23003",
+ "System.Console": "4.0.0-beta-23003",
+ "System.Data.Common": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Diagnostics.Tools": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Globalization.Calendars": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.IO.Compression.ZipFile": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.UnmanagedMemoryStream": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq.Parallel": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Net.NetworkInformation": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Numerics.Vectors": "4.1.0-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Numerics": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Json": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.ServiceModel.Duplex": "4.0.0-beta-23003",
+ "System.ServiceModel.Http": "4.0.10-beta-23003",
+ "System.ServiceModel.Primitives": "4.0.0-beta-23003",
+ "System.ServiceModel.Security": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Text.Encoding.CodePages": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Threading.Tasks.Parallel": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XPath.XDocument": "4.0.0-beta-23003",
+ "System.Xml.XPath.XmlDocument": "4.0.0-beta-23003",
+ "Microsoft.NETCore.Targets": "1.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Globalization": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.IO": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.ObjectModel": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Reflection": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading.Tasks": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.Handles": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Threading.Timer": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Private.Uri": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23003, 4.0.20-beta-23003]"
+ },
+ "compile": {
+ "ref/any/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x86/lib/any/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x86/native/clretwrc.dll": {},
+ "runtimes/win7-x86/native/coreclr.dll": {},
+ "runtimes/win7-x86/native/dbgshim.dll": {},
+ "runtimes/win7-x86/native/mscordaccore.dll": {},
+ "runtimes/win7-x86/native/mscordbi.dll": {},
+ "runtimes/win7-x86/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x86/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "1.0.0-beta-23003",
+ "Microsoft.NETCore": "5.0.0-beta-23003",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.0-beta-23003",
+ "System.IO.IsolatedStorage": "4.0.0-beta-23003",
+ "System.Net.Http.Rtc": "4.0.0-beta-23003",
+ "System.Net.Requests": "4.0.10-beta-23003",
+ "System.Reflection.Context": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.UWPHost-x86/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win8-x86/native/UWPShim.exe": {},
+ "runtimes/win8-x86/native/UWPHost.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win10-x86/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "compile": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.TypeConverter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Console.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23003": {
+ "native": {
+ "runtimes/win7-x86/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.Networking": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Emit.Lightweight": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Collections.Concurrent": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Reflection.DispatchProxy": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36"
+ },
+ "compile": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Private.Uri": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.dll": {}
+ }
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XmlDocument.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86-aot": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "0.17.0"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36",
+ "System.Reflection.Metadata": "1.0.21",
+ "Microsoft.CSharp": "4.0.0-beta-23003",
+ "Microsoft.VisualBasic": "10.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.AppContext": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Annotations": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.ComponentModel.TypeConverter": "4.0.0-beta-23003",
+ "System.Console": "4.0.0-beta-23003",
+ "System.Data.Common": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Diagnostics.Tools": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Globalization.Calendars": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.IO.Compression.ZipFile": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.UnmanagedMemoryStream": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq.Parallel": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Net.NetworkInformation": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Numerics.Vectors": "4.1.0-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Numerics": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Json": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.ServiceModel.Duplex": "4.0.0-beta-23003",
+ "System.ServiceModel.Http": "4.0.10-beta-23003",
+ "System.ServiceModel.Primitives": "4.0.0-beta-23003",
+ "System.ServiceModel.Security": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Text.Encoding.CodePages": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Threading.Tasks.Parallel": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XPath.XDocument": "4.0.0-beta-23003",
+ "System.Xml.XPath.XmlDocument": "4.0.0-beta-23003",
+ "Microsoft.NETCore.Targets": "1.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Globalization": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.IO": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.ObjectModel": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Reflection": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading.Tasks": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.Handles": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Threading.Timer": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Private.Uri": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23003, 4.0.20-beta-23003]"
+ },
+ "compile": {
+ "ref/any/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-aot/lib/any/System.Private.CompilerServices.ICastable.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Augments.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.CompilerServices.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DeveloperExperience.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DynamicDelegate.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.InteropServices.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Reflection.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Threading.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.WinRTInterop.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.DispatchProxy.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.ILToolchain.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Interop.Extensions.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.MCG.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Augments.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Extensibility.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.MissingMetadataException.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Threading.AsyncCausalitySupport.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.WinRTInterop.CoreLib.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.DeveloperExperience.AppX.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CompatQuirks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Metadata.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.TypeLoader.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Interop.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.PortableThunks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.PortableServiceModelThunks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Core.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Execution.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.StackTraceGenerator.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Threading.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "1.0.0-beta-23003",
+ "Microsoft.NETCore": "5.0.0-beta-23003",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.0-beta-23003",
+ "System.IO.IsolatedStorage": "4.0.0-beta-23003",
+ "System.Net.Http.Rtc": "4.0.0-beta-23003",
+ "System.Net.Requests": "4.0.10-beta-23003",
+ "System.Reflection.Context": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.UWPHost-x86/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win8-x86/native/UWPShim.exe": {},
+ "runtimes/win8-x86/native/UWPHost.dll": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "compile": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.TypeConverter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Console.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23003": {
+ "native": {
+ "runtimes/win7-x86/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.Networking": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Collections.Concurrent": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Reflection.DispatchProxy": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36"
+ },
+ "compile": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Private.Uri": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.dll": {}
+ }
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XmlDocument.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "0.17.0"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36",
+ "System.Reflection.Metadata": "1.0.21",
+ "Microsoft.CSharp": "4.0.0-beta-23003",
+ "Microsoft.VisualBasic": "10.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.AppContext": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Annotations": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.ComponentModel.TypeConverter": "4.0.0-beta-23003",
+ "System.Console": "4.0.0-beta-23003",
+ "System.Data.Common": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Diagnostics.Tools": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Globalization.Calendars": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.IO.Compression.ZipFile": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.UnmanagedMemoryStream": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq.Parallel": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Net.NetworkInformation": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Numerics.Vectors": "4.1.0-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Numerics": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Json": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.ServiceModel.Duplex": "4.0.0-beta-23003",
+ "System.ServiceModel.Http": "4.0.10-beta-23003",
+ "System.ServiceModel.Primitives": "4.0.0-beta-23003",
+ "System.ServiceModel.Security": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Text.Encoding.CodePages": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Threading.Tasks.Parallel": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XPath.XDocument": "4.0.0-beta-23003",
+ "System.Xml.XPath.XmlDocument": "4.0.0-beta-23003",
+ "Microsoft.NETCore.Targets": "1.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Globalization": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.IO": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.ObjectModel": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Reflection": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading.Tasks": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.Handles": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Threading.Timer": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Private.Uri": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23003, 4.0.20-beta-23003]"
+ },
+ "compile": {
+ "ref/any/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x64/lib/any/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x64/native/clretwrc.dll": {},
+ "runtimes/win7-x64/native/coreclr.dll": {},
+ "runtimes/win7-x64/native/dbgshim.dll": {},
+ "runtimes/win7-x64/native/mscordaccore.dll": {},
+ "runtimes/win7-x64/native/mscordbi.dll": {},
+ "runtimes/win7-x64/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x64/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "1.0.0-beta-23003",
+ "Microsoft.NETCore": "5.0.0-beta-23003",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.0-beta-23003",
+ "System.IO.IsolatedStorage": "4.0.0-beta-23003",
+ "System.Net.Http.Rtc": "4.0.0-beta-23003",
+ "System.Net.Requests": "4.0.10-beta-23003",
+ "System.Reflection.Context": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.UWPHost-x64/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win8-x64/native/UWPShim.exe": {},
+ "runtimes/win8-x64/native/UWPHost.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win10-x64/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "compile": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.TypeConverter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Console.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23003": {
+ "native": {
+ "runtimes/win7-x64/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.Networking": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Emit.Lightweight": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Collections.Concurrent": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Reflection.DispatchProxy": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36"
+ },
+ "compile": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Private.Uri": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.dll": {}
+ }
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XmlDocument.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64-aot": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0"
+ },
+ "compile": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ },
+ "runtime": {
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
+ }
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "0.17.0",
+ "Microsoft.ApplicationInsights.PersistenceChannel": "0.17.0"
+ },
+ "compile": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ },
+ "runtime": {
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36",
+ "System.Reflection.Metadata": "1.0.21",
+ "Microsoft.CSharp": "4.0.0-beta-23003",
+ "Microsoft.VisualBasic": "10.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.AppContext": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Annotations": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.ComponentModel.TypeConverter": "4.0.0-beta-23003",
+ "System.Console": "4.0.0-beta-23003",
+ "System.Data.Common": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Diagnostics.Tools": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Dynamic.Runtime": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Globalization.Calendars": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.IO.Compression.ZipFile": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.UnmanagedMemoryStream": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq.Parallel": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Net.NetworkInformation": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Numerics.Vectors": "4.1.0-beta-23003",
+ "System.ObjectModel": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Numerics": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Json": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.ServiceModel.Duplex": "4.0.0-beta-23003",
+ "System.ServiceModel.Http": "4.0.10-beta-23003",
+ "System.ServiceModel.Primitives": "4.0.0-beta-23003",
+ "System.ServiceModel.Security": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Text.Encoding.CodePages": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Threading.Tasks.Parallel": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XPath.XDocument": "4.0.0-beta-23003",
+ "System.Xml.XPath.XmlDocument": "4.0.0-beta-23003",
+ "Microsoft.NETCore.Targets": "1.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23003": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Globalization": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.IO": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.ObjectModel": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Reflection": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Threading.Tasks": "[4.0.10-beta-23003, 4.0.10-beta-23003]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Runtime.Handles": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Threading.Timer": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Private.Uri": "[4.0.0-beta-23003, 4.0.0-beta-23003]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime": "[4.0.20-beta-23003, 4.0.20-beta-23003]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23003, 4.0.20-beta-23003]"
+ },
+ "compile": {
+ "ref/any/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-aot/lib/any/System.Private.CompilerServices.ICastable.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Augments.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.CompilerServices.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DeveloperExperience.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DynamicDelegate.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.InteropServices.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Reflection.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Threading.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.WinRTInterop.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.DispatchProxy.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.ILToolchain.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Interop.Extensions.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.MCG.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Augments.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Extensibility.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.MissingMetadataException.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Threading.AsyncCausalitySupport.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.WinRTInterop.CoreLib.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.DeveloperExperience.AppX.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.CompatQuirks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Metadata.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.TypeLoader.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Interop.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.PortableThunks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.PortableServiceModelThunks.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Core.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Execution.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.StackTraceGenerator.dll": {},
+ "runtimes/win7-aot/lib/any/System.Private.Threading.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "1.0.0-beta-23003",
+ "Microsoft.NETCore": "5.0.0-beta-23003",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.0-beta-23003",
+ "System.IO.IsolatedStorage": "4.0.0-beta-23003",
+ "System.Net.Http.Rtc": "4.0.0-beta-23003",
+ "System.Net.Requests": "4.0.10-beta-23003",
+ "System.Reflection.Context": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.0-beta-23003"
+ }
+ },
+ "Microsoft.NETCore.UWPHost-x64/1.0.0-beta-23003": {
+ "native": {
+ "runtimes/win8-x64/native/UWPShim.exe": {},
+ "runtimes/win8-x64/native/UWPHost.dll": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Dynamic.Runtime": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "compile": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.ComponentModel": "4.0.0-beta-23003",
+ "System.ComponentModel.Primitives": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ComponentModel.TypeConverter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Console.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23003": {
+ "native": {
+ "runtimes/win7-x64/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Linq.Expressions": "4.0.10-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.Networking": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "Microsoft.Win32.Primitives": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.Threading.Overlapped": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Threading.Timer": "4.0.0-beta-23003",
+ "System.Collections.Specialized": "4.0.0-beta-23003",
+ "System.Collections.NonGeneric": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Collections.Concurrent": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Security.Claims": "4.0.0-beta-23003",
+ "System.Net.Http": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Net.WebHeaderCollection": "4.0.0-beta-23003",
+ "System.Reflection.DispatchProxy": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Linq.Queryable": "4.0.0-beta-23003",
+ "System.Linq.Expressions": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.IO.Compression": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.10-beta-23003",
+ "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23003",
+ "System.Net.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.1.36"
+ },
+ "compile": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Diagnostics.Contracts": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Private.Uri": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Xml": "4.0.10-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Reflection": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Xml.XmlSerializer": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Runtime.Serialization.Primitives": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Runtime.InteropServices": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.ObjectModel": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.WindowsRuntime": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Security.Principal": "4.0.0-beta-23003",
+ "System.IO": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.0-beta-23003",
+ "System.Globalization": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Private.ServiceModel": "4.0.0-beta-23003",
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Threading.Tasks": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Runtime.Handles": "4.0.0-beta-23003",
+ "System.Runtime.Extensions": "4.0.0-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Collections.Concurrent": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Diagnostics.Tracing": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.0-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading.Tasks": "4.0.10-beta-23003",
+ "System.Runtime.InteropServices": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.IO.FileSystem": "4.0.0-beta-23003",
+ "System.IO.FileSystem.Primitives": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Text.Encoding.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Text.Encoding": "4.0.10-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Reflection.TypeExtensions": "4.0.0-beta-23003",
+ "System.Reflection.Extensions": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Reflection": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Reflection.Primitives": "4.0.0-beta-23003",
+ "System.Text.RegularExpressions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.IO": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.dll": {}
+ }
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Xml.XDocument": "4.0.10-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Linq": "4.0.0-beta-23003",
+ "System.Diagnostics.Debug": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-23003",
+ "System.Xml.XmlDocument": "4.0.0-beta-23003",
+ "System.Xml.ReaderWriter": "4.0.10-beta-23003",
+ "System.Xml.XPath": "4.0.0-beta-23003",
+ "System.Resources.ResourceManager": "4.0.0-beta-23003",
+ "System.Collections": "4.0.10-beta-23003",
+ "System.Runtime.Extensions": "4.0.10-beta-23003",
+ "System.Globalization": "4.0.10-beta-23003",
+ "System.Threading": "4.0.10-beta-23003",
+ "System.IO": "4.0.10-beta-23003"
+ },
+ "compile": {
+ "ref/any/System.Xml.XPath.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/any/System.Xml.XPath.XmlDocument.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.ApplicationInsights/0.17.0": {
+ "sha512": "MISqquzErBgCheIG4AF+ItxGltsUW+nowUwqoB7onS3fj3GJ9ElOOOMOh0JXEE0cF1sljSiSGxEEO6aCdIwwaQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.dll",
+ "lib/net40/Microsoft.ApplicationInsights.XML",
+ "lib/net45/Microsoft.ApplicationInsights.dll",
+ "lib/net45/Microsoft.ApplicationInsights.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.XML",
+ "package/services/metadata/core-properties/4510884eb8914fac8ebb4d0a6f36ea08.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.PersistenceChannel/0.17.0": {
+ "sha512": "MrzSyjIvytS2xIwEaL2wWJqX9G5E2DKi5yOHS1SOanO9eC2BZQtdZN/bgrPNih1ZW6h6xSb6SZjKzziB/ziUpw==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.PersistenceChannel.nuspec",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll",
+ "lib/portable-win8+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.XML",
+ "package/services/metadata/core-properties/2a0ece2d376e4c95a175a2f8cb477e19.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.ApplicationInsights.WindowsApps/0.17.0": {
+ "sha512": "y3bZozxBiqumrZDg4qFgiJc9fPFUZO4DsY+sRPzJUL4bSOEmNcDELozzvRM5SXdC/mdBl+QMpE8ncRtSZ3ZaUQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.ApplicationInsights.WindowsApps.nuspec",
+ "content/ApplicationInsights.config.transform",
+ "content/ApplicationInsights.config.install.xdt",
+ "content/ApplicationInsights.config.uninstall.xdt",
+ "tools/install.ps1",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
+ "lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
+ "package/services/metadata/core-properties/cd05c8094d16477088e4b30e2a911a23.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.CSharp/4.0.0-beta-23003": {
+ "sha512": "BkYO4lrhLPWoqDvQBgo/WNK2p/y+osKuEqORE5nC2kx+79Ji2dduWOsxJlb9Uj8ZNEO0YflEhu4XEwuDZ2aEGQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.CSharp.nuspec",
+ "lib/net46/_._",
+ "lib/any/Microsoft.CSharp.dll",
+ "ref/net46/_._",
+ "ref/any/Microsoft.CSharp.dll",
+ "package/services/metadata/core-properties/03aff1e59dd042b5a4e5d322c2d1dcd5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore/5.0.0-beta-23003": {
+ "sha512": "vj6EVbR+HoLgkwVpl6UNZl69QhXz7/ku9U16mPiC2H/o2V2AtORuAn2fIL9fBStkVkJECnTYYWXqW2t0w2Y8MA==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/c09346c84dd348dc8ef0b2019b7a7edd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23003": {
+ "sha512": "AZQroZLSpkpwxZyF/bzcrFTeslSb6JC4PXMF8bbIUc/LxJvC/Q3GfwAl1tOvtHwKqyxjdJlMk4YAPug3uP2RDQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Portable.Compatibility.nuspec",
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "lib/netcore50/System.Core.dll",
+ "lib/netcore50/System.dll",
+ "lib/netcore50/System.Net.dll",
+ "lib/netcore50/System.Numerics.dll",
+ "lib/netcore50/System.Runtime.Serialization.dll",
+ "lib/netcore50/System.ServiceModel.dll",
+ "lib/netcore50/System.ServiceModel.Web.dll",
+ "lib/netcore50/System.Windows.dll",
+ "lib/netcore50/System.Xml.dll",
+ "lib/netcore50/System.Xml.Linq.dll",
+ "lib/netcore50/System.Xml.Serialization.dll",
+ "ref/netcore50/mscorlib.dll",
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "ref/netcore50/System.Core.dll",
+ "ref/netcore50/System.dll",
+ "ref/netcore50/System.Net.dll",
+ "ref/netcore50/System.Numerics.dll",
+ "ref/netcore50/System.Runtime.Serialization.dll",
+ "ref/netcore50/System.ServiceModel.dll",
+ "ref/netcore50/System.ServiceModel.Web.dll",
+ "ref/netcore50/System.Windows.dll",
+ "ref/netcore50/System.Xml.dll",
+ "ref/netcore50/System.Xml.Linq.dll",
+ "ref/netcore50/System.Xml.Serialization.dll",
+ "runtimes/aot/lib/netcore50/mscorlib.dll",
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "runtimes/aot/lib/netcore50/System.Core.dll",
+ "runtimes/aot/lib/netcore50/System.dll",
+ "runtimes/aot/lib/netcore50/System.Net.dll",
+ "runtimes/aot/lib/netcore50/System.Numerics.dll",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
+ "runtimes/aot/lib/netcore50/System.Windows.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
+ "package/services/metadata/core-properties/18906f032db343f4a7bcbfdfc17d05df.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23003": {
+ "sha512": "oOTnZIV590NnKZatl1tawF8B1kYJQlpeQQXbOgH+8poJ8OTM3HYolUoHZOA+SR+10sTmiUKugD4Sf9X6ZWyV/Q==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/b8f4d8340aa54c66a9887d083688f6c7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23003": {
+ "sha512": "KllyLqL/JjjHENL4s3P6vMz4GGZDR9Ou3tCLFMayXPwlwjrQyas9a9bqaapk+9Pkn1lIXQ0se4Lf1pkHvgqaMw==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec",
+ "runtimes/win7-x64/native/clretwrc.dll",
+ "runtimes/win7-x64/native/coreclr.dll",
+ "runtimes/win7-x64/native/dbgshim.dll",
+ "runtimes/win7-x64/native/mscordaccore.dll",
+ "runtimes/win7-x64/native/mscordbi.dll",
+ "runtimes/win7-x64/native/mscorrc.debug.dll",
+ "runtimes/win7-x64/native/mscorrc.dll",
+ "runtimes/win7-x64/lib/any/mscorlib.ni.dll",
+ "ref/any/_._",
+ "package/services/metadata/core-properties/16ce193edb6f4ae5ac895a4e79c8e534.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23003": {
+ "sha512": "buYm+wwDkPihRWsWoiaS2i7XFXcDs30XmGP2uQPeOYEXOkohknZuDyN82IaUOcEffELaYJ+88kYJcNWdTM66wA==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec",
+ "runtimes/win7-x86/native/clretwrc.dll",
+ "runtimes/win7-x86/native/coreclr.dll",
+ "runtimes/win7-x86/native/dbgshim.dll",
+ "runtimes/win7-x86/native/mscordaccore.dll",
+ "runtimes/win7-x86/native/mscordbi.dll",
+ "runtimes/win7-x86/native/mscorrc.debug.dll",
+ "runtimes/win7-x86/native/mscorrc.dll",
+ "runtimes/win7-x86/lib/any/mscorlib.ni.dll",
+ "ref/any/_._",
+ "package/services/metadata/core-properties/ea0762a3bb654180a5e88a134ccb5059.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23003": {
+ "sha512": "HjWJ+jqyGf1GLO08iec34R1xuhLLof2fWRIgoGW8WoXxleQBUzLSdHNj62GLsmWQFJKiwU4Qo2I2bvQTVRp1Ng==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.Native.nuspec",
+ "runtimes/win7-aot/lib/any/System.Private.CompilerServices.ICastable.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Augments.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.CompilerServices.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DeveloperExperience.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.DynamicDelegate.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.InteropServices.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Reflection.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.Threading.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.WinRTInterop.dll",
+ "runtimes/win7-aot/lib/any/System.Private.DispatchProxy.dll",
+ "runtimes/win7-aot/lib/any/System.Private.ILToolchain.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Interop.Extensions.dll",
+ "runtimes/win7-aot/lib/any/System.Private.MCG.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Augments.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Extensibility.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.MissingMetadataException.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Threading.AsyncCausalitySupport.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CoreLib.dll",
+ "runtimes/win7-aot/lib/any/System.Private.WinRTInterop.CoreLib.dll",
+ "runtimes/win7-aot/lib/any/System.Private.DeveloperExperience.AppX.dll",
+ "runtimes/win7-aot/lib/any/System.Private.CompatQuirks.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Metadata.dll",
+ "runtimes/win7-aot/lib/any/System.Private.TypeLoader.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Interop.dll",
+ "runtimes/win7-aot/lib/any/System.Private.PortableThunks.dll",
+ "runtimes/win7-aot/lib/any/System.Private.PortableServiceModelThunks.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Core.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Reflection.Execution.dll",
+ "runtimes/win7-aot/lib/any/System.Private.StackTraceGenerator.dll",
+ "runtimes/win7-aot/lib/any/System.Private.Threading.dll",
+ "ref/any/_._",
+ "package/services/metadata/core-properties/630856a8358c4283a9aff7e207839840.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23003": {
+ "sha512": "5rscfEHfq3KfUfxpI5tgyG5mRukaNlB0nZrWqSu3V6zJyNO71m8sVbc+SUKQvG3+F3lDlKr/uy3xezQprZkLew==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/40882682f0224b019064a894081804f1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23003": {
+ "sha512": "i7uJgbqu9WXqMNOnOynLsbJor4tg7zvYXzD35hbh0XnmzaCnQz1HCFtWsyOztqH39I6ZiGR8aCpgosRZEoboPQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/5675f357c7704630acfbec11119bbf9b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UWPHost-x64/1.0.0-beta-23003": {
+ "sha512": "o/8att8FUbVvwXrg05HeJBz6gv+cHzLuNzzWZz1m3PMYjhQRCikv8UuED85Av2+OZFkpvw3dLKKhliMAH+gfmA==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UWPHost-x64.nuspec",
+ "runtimes/win8-x64/native/UWPShim.exe",
+ "runtimes/win8-x64/native/UWPHost.dll",
+ "package/services/metadata/core-properties/b77c206e92134ab78cf06b1936c233e9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UWPHost-x86/1.0.0-beta-23003": {
+ "sha512": "vKaqApWy3DV+4MrTwHgpnjA4VLsrb8tPXswUIiGdxUyIQ2dpWYVnuFxhJbmIIOUgb3qEOdw99RSJg70r42sWMQ==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UWPHost-x86.nuspec",
+ "runtimes/win8-x86/native/UWPShim.exe",
+ "runtimes/win8-x86/native/UWPHost.dll",
+ "package/services/metadata/core-properties/1d83c3e2cfe94e089f0b1420e4a857ba.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23003": {
+ "sha512": "QetBB2JVkZJuoZioELfvXFJi0XSfrFgY03HlMhPklW4dwOXEi2QsCI2m8zBbsn7vapBE4bh5fmEdbEOQsGRS9A==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x64.nuspec",
+ "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win10-x64/native/_._",
+ "package/services/metadata/core-properties/6cf20f2473044a20ad927064d39d30e6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23003": {
+ "sha512": "977R5SJeHDutMlP/6SDS/HN+dFA3b8qehAIKkcJqlKGHaHOANE7S4QP/+WTT7nHSFbatt1ZIfY5pjVBsqBYvVw==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x86.nuspec",
+ "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win10-x86/native/_._",
+ "package/services/metadata/core-properties/6a05a47d20824857bfd5585ec4eb5b96.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23003": {
+ "sha512": "sWDrlVWbInttOqhO2SccOTtaBsb8qn8H9JMf5f2IzyJoF9WYVU8klR7PBTwqQ/yMCudA0Nc0x0lq+yiZLmqPNA==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.VisualBasic.nuspec",
+ "lib/net46/_._",
+ "lib/any/Microsoft.VisualBasic.dll",
+ "ref/net46/_._",
+ "ref/any/Microsoft.VisualBasic.dll",
+ "package/services/metadata/core-properties/1430e6e611d94aeb88fbda713ef6e2e0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23003": {
+ "sha512": "ZPxcqA4gMxLxT5amjDbtGm5g/dDYUkFey6SD3mwVwvluBhKRlQb4BKuUW8Qcd6FqjFF0mo7Or4dJj55Q7KSzRw==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.Win32.Primitives.nuspec",
+ "lib/any/Microsoft.Win32.Primitives.dll",
+ "lib/net46/Microsoft.Win32.Primitives.dll",
+ "ref/any/Microsoft.Win32.Primitives.dll",
+ "ref/net46/Microsoft.Win32.Primitives.dll",
+ "package/services/metadata/core-properties/da6ce5021ef248f7aee5b1d6e350384b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.AppContext/4.0.0-beta-23003": {
+ "sha512": "er/z55FnN1n+SAZwd/HHeEydT6W2UBSEOu7XgyIb4T8JpAUsSSw6Xilv5t5mPzRrVmlP9Ors8VdRWCtp58dN0g==",
+ "files": [
+ "_rels/.rels",
+ "System.AppContext.nuspec",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/DNXCore50/System.AppContext.dll",
+ "lib/net46/System.AppContext.dll",
+ "ref/any/System.AppContext.dll",
+ "ref/net46/System.AppContext.dll",
+ "package/services/metadata/core-properties/f7c4a784dfc647c1b28e7e8e1c3218ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections/4.0.10-beta-23003": {
+ "sha512": "8jn1WzJsNUIsvF1+qZ/OMFHL3lc8xzw2+kcjZEw/vW4tNJBSrPLt2zWGADspHbjqxGoIr8M6rqmi/7cBKPDqjQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.nuspec",
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/netcore50/System.Collections.dll",
+ "lib/net46/System.Collections.dll",
+ "ref/any/System.Collections.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "ref/net46/System.Collections.dll",
+ "package/services/metadata/core-properties/645be94149c046ae81967a74d01d5aca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23003": {
+ "sha512": "uoXnB6qoq7/FlmRuAWY6Ywu5bU8Avqdqbb/zmXQNAHowO5RXHC5NrPVR/AAtNWm6UV27hzrYrUqtpk4k/a+K8A==",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Concurrent.nuspec",
+ "lib/any/System.Collections.Concurrent.dll",
+ "lib/net46/System.Collections.Concurrent.dll",
+ "ref/any/System.Collections.Concurrent.dll",
+ "ref/net46/System.Collections.Concurrent.dll",
+ "package/services/metadata/core-properties/a01952d50c1e40bfb3798b78ac692d98.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Immutable/1.1.36": {
+ "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Immutable.nuspec",
+ "License-Stable.rtf",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "package/services/metadata/core-properties/c8b7b781850445db852bd2d848380ca6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23003": {
+ "sha512": "m+G0wmNJ5jHB58DdwNeeDxg806g34nEr5y16i5fOzUCYhRFFtLY7jBjafs86yfl8hmC7PdDLM0CGeQ4hLrZaLQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.NonGeneric.nuspec",
+ "lib/any/System.Collections.NonGeneric.dll",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "ref/any/System.Collections.NonGeneric.dll",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "package/services/metadata/core-properties/a58f905a07d848d3a637606cb305f0c7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Specialized/4.0.0-beta-23003": {
+ "sha512": "BBbNMrNPxPi3LaE+DGRGnZg4g6cKZf6SzfRihS6AVZSiqqItUYLUunkXJ/8/gmGqrOEZXj578T9grjwI0NJX8Q==",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Specialized.nuspec",
+ "lib/any/System.Collections.Specialized.dll",
+ "lib/net46/System.Collections.Specialized.dll",
+ "ref/any/System.Collections.Specialized.dll",
+ "ref/net46/System.Collections.Specialized.dll",
+ "package/services/metadata/core-properties/dfbd4eb5c38f417da3119e61f32cf3ac.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel/4.0.0-beta-23003": {
+ "sha512": "45BpWLaXUCyGrRgn1mFavyyQgULORi47YNyQslrt2BnYH2ahtqr/WjfByuGWnz+NuGod2lwFFDPGFormHovLbA==",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.nuspec",
+ "lib/any/System.ComponentModel.dll",
+ "lib/net46/System.ComponentModel.dll",
+ "ref/any/System.ComponentModel.dll",
+ "ref/net46/System.ComponentModel.dll",
+ "package/services/metadata/core-properties/6d660b3614944d0f807a9e5b63e5c3f7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23003": {
+ "sha512": "LBoawVjmZKTiXmWmLGFQepSL41y2iZFnODeVoanWnqg7EW5lCDDJ/ZbcYdgASb44SS3C5kM3nhrJxTyH6nGi3A==",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.Annotations.nuspec",
+ "lib/any/System.ComponentModel.Annotations.dll",
+ "lib/net46/System.ComponentModel.Annotations.dll",
+ "ref/any/System.ComponentModel.Annotations.dll",
+ "ref/net46/System.ComponentModel.Annotations.dll",
+ "package/services/metadata/core-properties/468a32cf71f64febb386fc55fe2bed85.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23003": {
+ "sha512": "IEto0Eznm5Vejb81z2nYcfS2RYXcox4NFpXHXck9WUYIuys43oKKl1+hDBbvYitZMbPLrfKfCmWfQFX31MxNwg==",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.EventBasedAsync.nuspec",
+ "lib/any/System.ComponentModel.EventBasedAsync.dll",
+ "lib/net46/System.ComponentModel.EventBasedAsync.dll",
+ "ref/any/System.ComponentModel.EventBasedAsync.dll",
+ "ref/net46/System.ComponentModel.EventBasedAsync.dll",
+ "package/services/metadata/core-properties/9d42de529b1440a7a395e8e966aa5bea.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.Primitives/4.0.0-beta-23003": {
+ "sha512": "yZMEgErmL7GvS6XjgnACwQBfolVm2yI6X/hHEqjL7nGmtAaocB3LznTHRYTBwV+Mq/RQ5Zx5z9Utg1VKj8pbqQ==",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.Primitives.nuspec",
+ "lib/any/System.ComponentModel.Primitives.dll",
+ "lib/net46/System.ComponentModel.Primitives.dll",
+ "ref/any/System.ComponentModel.Primitives.dll",
+ "ref/net46/System.ComponentModel.Primitives.dll",
+ "package/services/metadata/core-properties/772f690b4ed544e1ac3f55989c65bb3f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.TypeConverter/4.0.0-beta-23003": {
+ "sha512": "j/nprmKLny6aH1J6fMbfyDYSml0cqu5xV2f3nNsQPA3U1OzyuS3Z1nGKmwhb3Nti7NLY/7tLj9EMruFXwb0feg==",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.TypeConverter.nuspec",
+ "lib/any/System.ComponentModel.TypeConverter.dll",
+ "lib/net46/System.ComponentModel.TypeConverter.dll",
+ "ref/any/System.ComponentModel.TypeConverter.dll",
+ "ref/net46/System.ComponentModel.TypeConverter.dll",
+ "package/services/metadata/core-properties/a7b030aa0eec4cbfb1f6d57477d7282c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Console/4.0.0-beta-23003": {
+ "sha512": "8rjZ4faGiDYrZ45gn3dzSN1/r0I5EGmfJgTd3tpo+RJYZ8mzZDnEiT7GITeShHGnthSI01dsPtWnT9Vmb47RnA==",
+ "files": [
+ "_rels/.rels",
+ "System.Console.nuspec",
+ "lib/DNXCore50/System.Console.dll",
+ "lib/net46/System.Console.dll",
+ "ref/any/System.Console.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Console.dll",
+ "ref/net46/System.Console.dll",
+ "package/services/metadata/core-properties/394aa47765184f8c9955540db8b23717.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Data.Common/4.0.0-beta-23003": {
+ "sha512": "Q76BsRgu+8aAtOmvZqJNgeyKg3l9PZYOg+5CkOowGCNqsaCXIrZ6AOovRhPzZ7bdFZLRnxK0oWd3OtW0fkOUrA==",
+ "files": [
+ "_rels/.rels",
+ "System.Data.Common.nuspec",
+ "lib/any/System.Data.Common.dll",
+ "lib/net46/System.Data.Common.dll",
+ "ref/any/System.Data.Common.dll",
+ "ref/net46/System.Data.Common.dll",
+ "package/services/metadata/core-properties/9505fa19cebc45bba2e3ce18036c75a1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23003": {
+ "sha512": "t1EeYss6Ov2qqMi9Xc4TXBTRlG0yhc2DVrflh+Nthvt4K2CTnFWKWzSRop2zOAu/dZTncyYbwxFKaqcv5xD+6w==",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Contracts.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll",
+ "lib/netcore50/System.Diagnostics.Contracts.dll",
+ "lib/net46/System.Diagnostics.Contracts.dll",
+ "ref/any/System.Diagnostics.Contracts.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/net46/System.Diagnostics.Contracts.dll",
+ "package/services/metadata/core-properties/8d2bdd753f82494fa68fa8fd322859b7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23003": {
+ "sha512": "THqv+pYU63rKBrfztj0kM/ysKm2mPoyQd8r5UaqbP2F0v2YF4yyyJuOQ+skpmOeBLX85C0eVoReaPK6YlrLEpg==",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Debug.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/net46/System.Diagnostics.Debug.dll",
+ "ref/any/System.Diagnostics.Debug.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "ref/net46/System.Diagnostics.Debug.dll",
+ "package/services/metadata/core-properties/be8b43b095964595ab3e8b160af9e534.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23003": {
+ "sha512": "48XhkV9F5AegoEGATfu62sgJHHAJ78Kl/HAdBJGdbWbgNs8CBAlGGRixt+QlsJL3Uq80Mr1FdKmVCzwGOkO5Lw==",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.StackTrace.nuspec",
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll",
+ "lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "lib/net46/System.Diagnostics.StackTrace.dll",
+ "ref/any/System.Diagnostics.StackTrace.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "ref/net46/System.Diagnostics.StackTrace.dll",
+ "package/services/metadata/core-properties/6c68db093ab5408185aa11d8ed13f5ab.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23003": {
+ "sha512": "u8msaN/DSlAY2r+IHMh/5ckxAtFOCj6WxokThHfnqmfObDtd+ohTrpFB8j0VTuwgv3msnnc7/tCFZYLncwApLg==",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tools.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Tools.dll",
+ "lib/netcore50/System.Diagnostics.Tools.dll",
+ "lib/net46/System.Diagnostics.Tools.dll",
+ "ref/any/System.Diagnostics.Tools.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll",
+ "ref/net46/System.Diagnostics.Tools.dll",
+ "package/services/metadata/core-properties/4d220f24d9f7429ea9b1848530dec0cc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23003": {
+ "sha512": "bpiwjFUwQJos69zYLPkeleMZmZpo+8ECjZHsjUKj4bJXWzldjkDuIaHhEwGZfB4vYFW/fWQBTkXLh9lADAaH5A==",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tracing.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll",
+ "lib/netcore50/System.Diagnostics.Tracing.dll",
+ "lib/net46/System.Diagnostics.Tracing.dll",
+ "ref/any/System.Diagnostics.Tracing.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/net46/System.Diagnostics.Tracing.dll",
+ "package/services/metadata/core-properties/89b7325115424e2981f519832b845726.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23003": {
+ "sha512": "g/B+PkkDDoHeaTs5jSAxLjaR9fBFcFUotvn9bd4xVEGAva2FFZp3bLSlpvjGcAo2uiuh4Lf3A6GdtIV/4kOK1A==",
+ "files": [
+ "_rels/.rels",
+ "System.Dynamic.Runtime.nuspec",
+ "lib/netcore50/System.Dynamic.Runtime.dll",
+ "lib/DNXCore50/System.Dynamic.Runtime.dll",
+ "lib/net46/System.Dynamic.Runtime.dll",
+ "ref/any/System.Dynamic.Runtime.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll",
+ "ref/net46/System.Dynamic.Runtime.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/6d3e458478624b58a9b53dca0deeac90.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization/4.0.10-beta-23003": {
+ "sha512": "4x2d03uvNh2P8bm2IdXLK7rbe22f47jTz/dYDq03UHOa9p76/1ISXwCtEDrNOmQDeAjVMxKRp2yTvtiGwJbgpQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.nuspec",
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/net46/System.Globalization.dll",
+ "ref/any/System.Globalization.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "ref/net46/System.Globalization.dll",
+ "package/services/metadata/core-properties/3e7fdf11e09f4f048083a1633fbab8fd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23003": {
+ "sha512": "2m5O8+shKFDZ2ADZSlORF4aMSIy330mkeFKLx7ZrSw9mrX9X4vp0TUYQ4IIxbzwQieqUVYoSRJN6YnSjYwmhAg==",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Calendars.nuspec",
+ "lib/DNXCore50/System.Globalization.Calendars.dll",
+ "lib/netcore50/System.Globalization.Calendars.dll",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "ref/any/System.Globalization.Calendars.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "package/services/metadata/core-properties/41d2a5b2808a4322a85b34effc9b3395.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23003": {
+ "sha512": "/0FKVBCAxlXS9mDwKBZde5rXlovOZ4oPITzVdPtBsI4wzlmlqOazNwHuby9YUfPtr0H3U8BuSoRk7xYeUbU3mQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Extensions.nuspec",
+ "lib/any/System.Globalization.Extensions.dll",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "ref/any/System.Globalization.Extensions.dll",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "package/services/metadata/core-properties/41bbec3c4bf542368ede892247bd1f84.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO/4.0.10-beta-23003": {
+ "sha512": "eZorWkssr1kxGi0IIX7eHSbVkfiQUZ7TL6rFJ1P5yNEdz1rBiyIu0u+uDnYhI/CUgR5VM8/QQsCLJSwXUtN58Q==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.nuspec",
+ "lib/DNXCore50/System.IO.dll",
+ "lib/netcore50/System.IO.dll",
+ "lib/net46/System.IO.dll",
+ "ref/any/System.IO.dll",
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll",
+ "ref/net46/System.IO.dll",
+ "package/services/metadata/core-properties/a13dcf8a3521410e935d5d561aeaf115.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression/4.0.0-beta-23003": {
+ "sha512": "2ISAIHnxtH3GdutZzn4wc+6So4yCBHTynGN2Gr/v8y1pcykx8udMjlDtj/wF5zp6B0fJS45CbpEfZFxGzoqFJw==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.nuspec",
+ "lib/net46/_._",
+ "lib/any/System.IO.Compression.dll",
+ "ref/net46/_._",
+ "ref/any/System.IO.Compression.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/aeda056a3a894d85aa01980abf107d5b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23003": {
+ "sha512": "qeM5UG3pzTSX5HTUr/Z+JTCWb4iIBhshPj5uL1wa2lBGU/TqRahOmls2GVTaW0sVQ6eHpfcOeAPN+0HzoSpaBg==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x64.nuspec",
+ "runtimes/win7-x64/native/clrcompression.dll",
+ "package/services/metadata/core-properties/aee59c6f6a6e46ed810e1035ca658302.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23003": {
+ "sha512": "GFUDvuByBj7Yf2eafwtZZEkhUvmj2leWdl5mG31myEnB28kvRZth5PSGb1B8reGE2Qjc1K8EGPgOh9TPtFMOMQ==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x86.nuspec",
+ "runtimes/win7-x86/native/clrcompression.dll",
+ "package/services/metadata/core-properties/59159316e2f64cc9ab561962e21c1ee3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23003": {
+ "sha512": "PoP+sc2t/Wbe8rnwAkGeOP54q6bGJWtRFV1T/nwUeEEbCPYuTM7zSyhUX457YuYzmAyGd2adxgIHDYWm/fETPw==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.ZipFile.nuspec",
+ "lib/any/System.IO.Compression.ZipFile.dll",
+ "lib/net46/System.IO.Compression.ZipFile.dll",
+ "ref/any/System.IO.Compression.ZipFile.dll",
+ "ref/net46/System.IO.Compression.ZipFile.dll",
+ "package/services/metadata/core-properties/1adf62196b0846a29263f203c888032e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem/4.0.0-beta-23003": {
+ "sha512": "KcLy6hv5XlkOUXw3NW0xe4o7rjF9F+49PtoGrf0/zzuI7uEry1mz4iV7iyvUQTROAe72U2WUBdh9qc6uoZlEfQ==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.nuspec",
+ "lib/DNXCore50/System.IO.FileSystem.dll",
+ "lib/netcore50/System.IO.FileSystem.dll",
+ "lib/net46/System.IO.FileSystem.dll",
+ "ref/any/System.IO.FileSystem.dll",
+ "ref/net46/System.IO.FileSystem.dll",
+ "package/services/metadata/core-properties/b267a835cf8a40e78e12de4fc0249260.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23003": {
+ "sha512": "mt8Niw2RhyQbOavBRJsa4+OrJ95gdP7AeQeVICAk6dkQhjpAE2GXdixAQbJ8DWKB4GnCHf4cBdPpZMq8AqfU1A==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.Primitives.nuspec",
+ "lib/any/System.IO.FileSystem.Primitives.dll",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/any/System.IO.FileSystem.Primitives.dll",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "package/services/metadata/core-properties/0104f48fcc824fd9ade7647dcdf938d8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23003": {
+ "sha512": "PtceVdUFZHQK0DdHYgPFhT49gge1Ohu3vQVZ03fT8AqNuALDofb6trAQi5Flaa6NAkCH6dWGvCNsGUl9byXeBw==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.IsolatedStorage.nuspec",
+ "lib/netcore50/System.IO.IsolatedStorage.dll",
+ "lib/net46/System.IO.IsolatedStorage.dll",
+ "ref/any/System.IO.IsolatedStorage.dll",
+ "ref/net46/System.IO.IsolatedStorage.dll",
+ "package/services/metadata/core-properties/c1aa579afb7344e9bcbb130d45043714.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23003": {
+ "sha512": "DCBEdaVKnimY8zDHh+VkeJRtrnKG5/en9Uvou+Hvlj5W3AmtxOKQAELmmcEUqRgdmfMwChEhKMCTNO9hjtHb+g==",
+ "files": [
+ "_rels/.rels",
+ "System.IO.UnmanagedMemoryStream.nuspec",
+ "lib/any/System.IO.UnmanagedMemoryStream.dll",
+ "lib/net46/System.IO.UnmanagedMemoryStream.dll",
+ "ref/any/System.IO.UnmanagedMemoryStream.dll",
+ "ref/net46/System.IO.UnmanagedMemoryStream.dll",
+ "package/services/metadata/core-properties/e419b23b6a4a4bffbc53ed2c700a5dcb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq/4.0.0-beta-23003": {
+ "sha512": "PhJs+kzCWp6YaEQuBF8qJffKoqRhzPNeK5BLUnaQAn8Wp66IHLAkZYtHwWo/fwaFLlF4uLNzh+03vouX7goOZA==",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.nuspec",
+ "lib/any/System.Linq.dll",
+ "lib/net46/System.Linq.dll",
+ "ref/any/System.Linq.dll",
+ "ref/net46/System.Linq.dll",
+ "package/services/metadata/core-properties/61427272a2894d839c599d192a119565.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Expressions/4.0.10-beta-23003": {
+ "sha512": "T3uvHT0HII8WlhPI7Ap0dY9t03kMjRiZsTZSCeKE6P43lonmoQLAxif3knpHrPNbr3iXnJ9EUWazGqNtoOpzeg==",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Expressions.nuspec",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/DNXCore50/System.Linq.Expressions.dll",
+ "lib/net46/System.Linq.Expressions.dll",
+ "ref/any/System.Linq.Expressions.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll",
+ "ref/net46/System.Linq.Expressions.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/9f2850142a0a422d8664ba2d9960b055.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Parallel/4.0.0-beta-23003": {
+ "sha512": "b4SXnIBzHOo0oS+IzR+UiBbHdoV5ojaFN/BM9azxV2scy+86AOiiQw00PV8j6kj/AROjdVgrqG7v900ugQ3R/A==",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Parallel.nuspec",
+ "lib/any/System.Linq.Parallel.dll",
+ "lib/net46/System.Linq.Parallel.dll",
+ "ref/any/System.Linq.Parallel.dll",
+ "ref/net46/System.Linq.Parallel.dll",
+ "package/services/metadata/core-properties/620219ff3e4540a8971657eddbd18df4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Queryable/4.0.0-beta-23003": {
+ "sha512": "40i9Z2B7bQzahcMRt46/IIKps7FyGHmd/0YTsHg1PRlpwmei775rg9MMvDrFFFqHnkqw2LlDrv8z9HM14cHVug==",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Queryable.nuspec",
+ "lib/any/System.Linq.Queryable.dll",
+ "lib/net46/System.Linq.Queryable.dll",
+ "ref/any/System.Linq.Queryable.dll",
+ "ref/net46/System.Linq.Queryable.dll",
+ "package/services/metadata/core-properties/e10f4491fff7495e8139c6df6a1cafbf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http/4.0.0-beta-23003": {
+ "sha512": "6peRjzqftGYn3JC4uyYinIgX61TOv/CVb+HEcN0wTFVIuTdgW+r0glG4pCSAQBO7GtBVVbgFRt1sT67Tdr/60g==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.nuspec",
+ "lib/net46/_._",
+ "lib/netcore50/System.Net.Http.dll",
+ "lib/DNXCore50/System.Net.Http.dll",
+ "ref/net46/_._",
+ "ref/any/System.Net.Http.dll",
+ "package/services/metadata/core-properties/5f3fc49897bd4fd2902134912982b650.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23003": {
+ "sha512": "fC/R12GfmLBbZVK6NE+P+csqpPGB7Gk4/RNecpxvlXg0cHMGMtfZ4jcxOoys2oaDlEQWpv6ukdLORwAiwcxTkA==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.Rtc.nuspec",
+ "lib/netcore50/System.Net.Http.Rtc.dll",
+ "lib/net46/System.Net.Http.Rtc.dll",
+ "ref/any/System.Net.Http.Rtc.dll",
+ "ref/net46/System.Net.Http.Rtc.dll",
+ "package/services/metadata/core-properties/cb30f31dc9974f2a9388dfb72fe84e01.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23003": {
+ "sha512": "c3KnsEDVN5rzk/A0JZc8yJ/rKeUq/a4DsqDg/k3gdw4LVVeMeEKBeD4by62maBIAsaNW2TWHreRyNaZob8fBBw==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.NetworkInformation.nuspec",
+ "lib/netcore50/System.Net.NetworkInformation.dll",
+ "ref/any/System.Net.NetworkInformation.dll",
+ "package/services/metadata/core-properties/5f32aea6760349cd9262933f934ac951.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Primitives/4.0.10-beta-23003": {
+ "sha512": "6fnVaqGlQX8nVXWVtMwc8yDSlh0mDkJ/xIKq6JEjQYWCLBWL9FxfwdnesUfvNCaZJ6ToA6pa715AkF1w+J7RLg==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Primitives.nuspec",
+ "lib/netcore50/System.Net.Primitives.dll",
+ "lib/DNXCore50/System.Net.Primitives.dll",
+ "lib/net46/System.Net.Primitives.dll",
+ "ref/any/System.Net.Primitives.dll",
+ "ref/net46/System.Net.Primitives.dll",
+ "package/services/metadata/core-properties/080ca90dffed4a3abad1c48c8c628b38.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Requests/4.0.10-beta-23003": {
+ "sha512": "FeXC4JM6AeZcKcSDou22AtZFYGHNgdQtkcH412STAmIj1LjhP9SICItIe2Jj62oYCFbmMPKtxHssYBW+ClD9LA==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Requests.nuspec",
+ "lib/any/System.Net.Requests.dll",
+ "lib/net46/System.Net.Requests.dll",
+ "ref/any/System.Net.Requests.dll",
+ "ref/net46/System.Net.Requests.dll",
+ "package/services/metadata/core-properties/bc8b1c0d5e6048bf9597c3f771188d23.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23003": {
+ "sha512": "z9TOgIZv6VreEtgOkIqH7qxgo5/6QO8OMRFWWiMjUA5EPvZbyB0bZDl99Jerpriruhyx9f36pUK0y96A5hopaw==",
+ "files": [
+ "_rels/.rels",
+ "System.Net.WebHeaderCollection.nuspec",
+ "lib/any/System.Net.WebHeaderCollection.dll",
+ "lib/net46/System.Net.WebHeaderCollection.dll",
+ "ref/any/System.Net.WebHeaderCollection.dll",
+ "ref/net46/System.Net.WebHeaderCollection.dll",
+ "package/services/metadata/core-properties/041ff100066749efa72c9842133940d3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23003": {
+ "sha512": "P43c6XRxUw0Lum+kYipyVl9ztLpFoXEvqkvRnUEHGrh4WUPz+ufl13n338WNkxweHQP2xppjhma5ayusZLaUFw==",
+ "files": [
+ "_rels/.rels",
+ "System.Numerics.Vectors.nuspec",
+ "lib/any/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "ref/any/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "package/services/metadata/core-properties/7a74c5c2bf4943708a1511bcc8f239f3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ObjectModel/4.0.10-beta-23003": {
+ "sha512": "urcunyKJav9HjWtdVUaQFAgQ6MZH7dKubDBgVXdQPM1cSMkbtnrBTSSxWNA3mVzDcvGx/2mUHXL4zDp+C0SiyA==",
+ "files": [
+ "_rels/.rels",
+ "System.ObjectModel.nuspec",
+ "lib/any/System.ObjectModel.dll",
+ "lib/net46/System.ObjectModel.dll",
+ "ref/any/System.ObjectModel.dll",
+ "ref/net46/System.ObjectModel.dll",
+ "package/services/metadata/core-properties/fd2252024ca84389a649a2538edbcee2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23003": {
+ "sha512": "6vR2OJC60wqiUy/kB9K/eSIS58HKSL8JbG+7Dj7MH+0lFeqy9YLs8tfHpX11JmkQzRq+LJjK/yV40xLvp+tL0A==",
+ "files": [
+ "_rels/.rels",
+ "System.Private.DataContractSerialization.nuspec",
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll",
+ "lib/netcore50/System.Private.DataContractSerialization.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/a3d7d505a9844eaf8d2c66fa8552804e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Networking/4.0.0-beta-23003": {
+ "sha512": "G5ZfMgdc88LWPIjHSM8EEO8n9IY3DTHPvmHOTMPjUou6ndUNNObtJ01+mOfH2x2IyVmMX4l5h4p5Uf0DsFf1rA==",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Networking.nuspec",
+ "lib/netcore50/System.Private.Networking.dll",
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/9f9154d2fcc2441686aef8ba609c87dc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23003": {
+ "sha512": "jzUWt7cjQuRA3Lce5Uk1oUQSMXn0ro/gDfyXRtcl0RILMrrP+LT20jAeywNBNQLxMVV1lhHvEtb1o1ALPlQXWQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Private.ServiceModel.nuspec",
+ "lib/netcore50/System.Private.ServiceModel.dll",
+ "lib/DNXCore50/System.Private.ServiceModel.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/32a3a23c857f40a5994bbb61b21a4105.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Uri/4.0.0-beta-23003": {
+ "sha512": "ZZORoldarUVmznaYPBSKXNPA8FTHHl9/xCpJj6VRrrWKxgu6PK8KPd0qbs5rj1hl8nx+T3Udmf0gD0ea7NCx/A==",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Uri.nuspec",
+ "lib/DNXCore50/System.Private.Uri.dll",
+ "lib/netcore50/System.Private.Uri.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll",
+ "package/services/metadata/core-properties/6333fe1f411d4b80b9fdd9b7c43e2d2e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection/4.0.10-beta-23003": {
+ "sha512": "yTPly3PkR95w9q/6gFebO2M/qJdBCew4Zlh6JYF2cA4f6VLQsyTbUg1+gr+atOOePFRXCivb5whhtyGzD7sq1w==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.nuspec",
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/net46/System.Reflection.dll",
+ "ref/any/System.Reflection.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "ref/net46/System.Reflection.dll",
+ "package/services/metadata/core-properties/7e84142f4cba4036bd7e78b736efa5f0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Context/4.0.0-beta-23003": {
+ "sha512": "f+XfEvuEI/wmUDK/Jcgeppgu+2Xep+h6FE9baWkQquiExTXIEOPqNBdst04khGj/aN7Aj2u+K51fwrroApgKUw==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Context.nuspec",
+ "lib/net46/_._",
+ "lib/netcore50/System.Reflection.Context.dll",
+ "ref/net46/_._",
+ "ref/any/System.Reflection.Context.dll",
+ "package/services/metadata/core-properties/e251b7ca1a2b4edd9b4f00cfa5138dae.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23003": {
+ "sha512": "5oSz8Vd9DVJ7RXWls/QEE9o9GSRXt9Bs60mDjMJEKl1p3ixECncAkiBHNrLmUCOmAyAvoYy/uydutQx234fMgg==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.DispatchProxy.nuspec",
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll",
+ "lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "ref/any/System.Reflection.DispatchProxy.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/4212279158e147698ef85e25cb7323fa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit/4.0.0-beta-23003": {
+ "sha512": "RqQHHsiAP3Tu3zERoXJ/zVXsh+GVdT0ngLvfqoecE47aIopLSPbqSbOPr+p11kRH3ypKrdGm9GNyRP6gaCa93g==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.dll",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/net46/System.Reflection.Emit.dll",
+ "ref/any/System.Reflection.Emit.dll",
+ "ref/net46/System.Reflection.Emit.dll",
+ "package/services/metadata/core-properties/6a8bd786b28c4a9e8b0e574b6c1bcb76.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23003": {
+ "sha512": "LLE6CPT4gwiW+Hp47nEvHIx54dhuRhmeHNYmrZce6xoLLNJx3VzMK7B5JlRwbasMTOtTuc8yIwHuzVP6+zXkzg==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.ILGeneration.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/net46/System.Reflection.Emit.ILGeneration.dll",
+ "ref/any/System.Reflection.Emit.ILGeneration.dll",
+ "ref/net46/System.Reflection.Emit.ILGeneration.dll",
+ "package/services/metadata/core-properties/658dfa87966d49e9964c89f113ff9d4a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23003": {
+ "sha512": "PIT04pCkUOixo76eNxu0pJ3RITqH5gOvTA19fJuTsIH4VP3fu1HrbdGd225Nv39PpKssO2rBgzsGojiRxH8HnQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.Lightweight.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/net46/System.Reflection.Emit.Lightweight.dll",
+ "ref/any/System.Reflection.Emit.Lightweight.dll",
+ "ref/net46/System.Reflection.Emit.Lightweight.dll",
+ "package/services/metadata/core-properties/b5e1c02a585f432fba35fb5758e70dd0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23003": {
+ "sha512": "jPWAqvJOVnnEiK4MSbyk3pfWEjFS1+c6RNm31m+eGGTCHXxAtu9gYhC10xAOyv8oEpI9MagOhfiLWO6nGgLThw==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Extensions.nuspec",
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/net46/System.Reflection.Extensions.dll",
+ "ref/any/System.Reflection.Extensions.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "ref/net46/System.Reflection.Extensions.dll",
+ "package/services/metadata/core-properties/dcc31daf133143548d2abafb5c309de2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Metadata/1.0.21": {
+ "sha512": "ZmJfrJ0c/R4BQoaHZro4YtE9DabDM8MX+oDZt+MSvbPIAKeyyvO2js5xl+yF9Ty8rSGX6UGEKBPIFR1G7fLk2w==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Metadata.nuspec",
+ "License-Stable.rtf",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "package/services/metadata/core-properties/4acaaa363e1b484791ffe5e6be56a5bd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23003": {
+ "sha512": "fjwbAW9y0cpM8bj8gCGNRHyjdtjSZerQ11V7SKXlM/KW0FtkYn1PHlvSH8LE7pux06boiuj0kFjyjpJeQR8Csw==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Primitives.nuspec",
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/net46/System.Reflection.Primitives.dll",
+ "ref/any/System.Reflection.Primitives.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "ref/net46/System.Reflection.Primitives.dll",
+ "package/services/metadata/core-properties/0eb26f790cf240be9e2ee39d893bf61a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23003": {
+ "sha512": "2WSTuHPAKfQY0p6sW6zRbyPPW0CvrAmgWnv3Bl14oaH5FlC74dQMbyVGnOl+oZexPZeNRrrEprSbvsZ/pzFLaA==",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.TypeExtensions.nuspec",
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "ref/any/System.Reflection.TypeExtensions.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "package/services/metadata/core-properties/0fbf2a12675d4035b112412b825e0026.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23003": {
+ "sha512": "cVrXMrNWYwcR5nJdB8ksnoXVq1qt0p8w0Mgg7E13ZmzVmFcigvTEnp05EUW2Kia3d3O0RfikNCGx0j2jkl75Yg==",
+ "files": [
+ "_rels/.rels",
+ "System.Resources.ResourceManager.nuspec",
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/net46/System.Resources.ResourceManager.dll",
+ "ref/any/System.Resources.ResourceManager.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "ref/net46/System.Resources.ResourceManager.dll",
+ "package/services/metadata/core-properties/61b888845a6e472d92dca587abc2eed9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime/4.0.20-beta-23003": {
+ "sha512": "+MPHmlmHCcY2rrSVT84EoE6EptbQE9oPnvaA6RmJiyahE+nX83QiNZ4MjhpJbJRqmxWNuvBPV9Yqh08CbmxV7Q==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.nuspec",
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/net46/System.Runtime.dll",
+ "ref/any/System.Runtime.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "ref/net46/System.Runtime.dll",
+ "package/services/metadata/core-properties/2d5f0e3e0b3b444a8aee19baa88b8eb5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23003": {
+ "sha512": "KihuaFxUgfiPfv9X0d3IdKzxOfGC8a+cnetTHo+uDRZG6tdGaSoQhI1pmoXJaRaEFYpC8wa3NwRyxOzSGEeUqw==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Extensions.nuspec",
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "lib/net46/System.Runtime.Extensions.dll",
+ "ref/any/System.Runtime.Extensions.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/net46/System.Runtime.Extensions.dll",
+ "package/services/metadata/core-properties/c0339b75864e44a0978c251e47d1cf26.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0-beta-23003": {
+ "sha512": "2C4SljI1Ycw/xVQMiK4NYJzkhCVAUk6zRTo0x0MqK8I+JzPLhwDASdi1x3QlArJNXWSsrVTkC4fKrWkE2qGODw==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Handles.nuspec",
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/net46/System.Runtime.Handles.dll",
+ "ref/any/System.Runtime.Handles.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "ref/net46/System.Runtime.Handles.dll",
+ "package/services/metadata/core-properties/99950606f5b94ec29edfd08c1e329cab.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23003": {
+ "sha512": "92I/eN0yDnZiEuMmJfRwuvHPk12IigPP/hq3Osj2x5wJzIMT8OsLh1MmJWdnlGrckm+B5MmsUvxKgMcnfG0GZw==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.nuspec",
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/net46/System.Runtime.InteropServices.dll",
+ "ref/any/System.Runtime.InteropServices.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "ref/net46/System.Runtime.InteropServices.dll",
+ "package/services/metadata/core-properties/07e58b67425e46b9b230144821e910f3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23003": {
+ "sha512": "UiFkCiVGc1rADgFxdVYkh1NiIfWWhQyIM7YnKrxtFU2h+ioHNMoxCWoXrIFn8LPHo+4HU8TXRQgpy8mg6Le/Wg==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.WindowsRuntime.nuspec",
+ "lib/DNXCore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "lib/net46/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/any/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/net46/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "package/services/metadata/core-properties/3df8ae648c944757a5c18ed36d79c601.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23003": {
+ "sha512": "693NBnqYT5SvVvX4DfGPKlsQiHpcCg+wpKm3VyMYEwwNOwGeD/2R0HlYv2XvnHNlzSXxFDOTbS0tfVqIAWSKjA==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Numerics.nuspec",
+ "lib/any/System.Runtime.Numerics.dll",
+ "lib/net46/System.Runtime.Numerics.dll",
+ "ref/any/System.Runtime.Numerics.dll",
+ "ref/net46/System.Runtime.Numerics.dll",
+ "package/services/metadata/core-properties/7aadbeab308a4e1599c7e7eea24652ce.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23003": {
+ "sha512": "GQIF/lgzLNF3fauQGp9FvPAtT61rmRAD1umcy8u4oasakvBFdpExiiFlCUiK1xRXKzPKSYeJhRuJgFPuwuhwRA==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Json.nuspec",
+ "lib/DNXCore50/System.Runtime.Serialization.Json.dll",
+ "lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "lib/net46/System.Runtime.Serialization.Json.dll",
+ "ref/any/System.Runtime.Serialization.Json.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/net46/System.Runtime.Serialization.Json.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/d32498b967304a05a666bf19cf4166db.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23003": {
+ "sha512": "RGU5BGfxPFD8lCCAd0EmIuHw0t3RIam4midO4ky3CYvFhV/dKMIfIK/7RqFM2Le0xayCVECWIBfU6YcfBwNJDQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Primitives.nuspec",
+ "lib/any/System.Runtime.Serialization.Primitives.dll",
+ "lib/net46/System.Runtime.Serialization.Primitives.dll",
+ "ref/any/System.Runtime.Serialization.Primitives.dll",
+ "ref/net46/System.Runtime.Serialization.Primitives.dll",
+ "package/services/metadata/core-properties/3c364dda4f2b4de58baf4c9de7a303c7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23003": {
+ "sha512": "0IgYgLBxcIBFpGdKfRZtHPMO+/E3rtf30DqG1TgeJyOf/JKoYi5t08FNoUkMQbwIvYoHcB68ZisPmI4DmiF/dg==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Xml.nuspec",
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "lib/net46/System.Runtime.Serialization.Xml.dll",
+ "ref/any/System.Runtime.Serialization.Xml.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "ref/net46/System.Runtime.Serialization.Xml.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/ebedfd0347b646c380ed35c6602f1b7e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23003": {
+ "sha512": "EYn649S+LUPx+6JvWHaKroa5pWhr5SHaro9IYyHcjCYqmhs6YUIt709iuBMA8obfRlaLPLMqU9T7vtnwdz4zXA==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/any/System.Runtime.WindowsRuntime.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "package/services/metadata/core-properties/0309442fff3247ffb7aad8183af1c8ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23003": {
+ "sha512": "78FL2PkRLVXV9JzhvL1pUaD8P+305rBo8VkXKhIdKE/DTAy1HEUVC1XFiXuLQ7iB7l0UJAL91KBRyroNKC8zfA==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/any/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "package/services/metadata/core-properties/4db5c05479d6471c985bb0bc1928d07f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Claims/4.0.0-beta-23003": {
+ "sha512": "Nkd+smyCNFJ93DnUMKSr3phbm3ceNqG23XdSrERrfJccEtvaQJhnUmMVuD5iSFDgF8JQ6eTwPfNe0upyUhShrQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Claims.nuspec",
+ "lib/any/System.Security.Claims.dll",
+ "lib/net46/System.Security.Claims.dll",
+ "ref/any/System.Security.Claims.dll",
+ "ref/net46/System.Security.Claims.dll",
+ "package/services/metadata/core-properties/89d65c99432e48ac87bed7070e89c2b6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Principal/4.0.0-beta-23003": {
+ "sha512": "t1TXPH2x/DQ/vRwjFKWm7pL74f1gAdKNzjyJJz0WhUDU9Y16zbxIN/XWrnq3zCwjJLCBQA1J94g19N53yJe+4g==",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Principal.nuspec",
+ "lib/any/System.Security.Principal.dll",
+ "lib/net46/System.Security.Principal.dll",
+ "ref/any/System.Security.Principal.dll",
+ "ref/net46/System.Security.Principal.dll",
+ "package/services/metadata/core-properties/87f0016810e84d818e9c724954faeaff.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23003": {
+ "sha512": "joEO4tkSGzeSS5hhRCAi1Ng+qNbTG8yFNwgpXEA5qmfmBET5cu1+Tp9nAdpx3ByP4eyEbR3WLhQxisFaFKRc4A==",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Duplex.nuspec",
+ "lib/netcore50/System.ServiceModel.Duplex.dll",
+ "lib/DNXCore50/System.ServiceModel.Duplex.dll",
+ "lib/net46/System.ServiceModel.Duplex.dll",
+ "ref/any/System.ServiceModel.Duplex.dll",
+ "ref/net46/System.ServiceModel.Duplex.dll",
+ "package/services/metadata/core-properties/a3f5d62b8f6a4bb28aa74805fef199f6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23003": {
+ "sha512": "rjY5FyCD2Kk3MFbhDjbrqxIlEI2+awe2tkxNKLWGriIouihKM+avaY43MubZsgk6FWaRRMOlrJwLW7Bt3lE8bg==",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Http.nuspec",
+ "lib/netcore50/System.ServiceModel.Http.dll",
+ "lib/DNXCore50/System.ServiceModel.Http.dll",
+ "lib/net46/System.ServiceModel.Http.dll",
+ "ref/any/System.ServiceModel.Http.dll",
+ "ref/net46/System.ServiceModel.Http.dll",
+ "package/services/metadata/core-properties/29c77e7ab2984f549b59daba577ded7a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23003": {
+ "sha512": "FE8uU1LeNacZ+b3Rd/HD84G/q1gALf03eEjBOQdtt30L2xL+PPhjDxctjOMGFcr4MdkIglHo8nxrtfqkm1gpKQ==",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.NetTcp.nuspec",
+ "lib/netcore50/System.ServiceModel.NetTcp.dll",
+ "lib/DNXCore50/System.ServiceModel.NetTcp.dll",
+ "lib/net46/System.ServiceModel.NetTcp.dll",
+ "ref/any/System.ServiceModel.NetTcp.dll",
+ "ref/net46/System.ServiceModel.NetTcp.dll",
+ "package/services/metadata/core-properties/f1cc0fa51861494b803ab943ccb023a2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23003": {
+ "sha512": "6tQeQvZ0F01nfzCBGevBrbnl/fdjhFxF5R8Eh+eOVjIGvsXEAXqmuEdded0hmBcFh20uiDIqoAsNU1u73Bc1Aw==",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Primitives.nuspec",
+ "lib/netcore50/System.ServiceModel.Primitives.dll",
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll",
+ "lib/net46/System.ServiceModel.Primitives.dll",
+ "ref/any/System.ServiceModel.Primitives.dll",
+ "ref/net46/System.ServiceModel.Primitives.dll",
+ "package/services/metadata/core-properties/7ef2b6a63ed3400d922b55078f0a866d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23003": {
+ "sha512": "WicYRLYV3QXrFV5C7eU9bjm+oykPy2X5Sxr7jBPsvd63P/g5kOBJ6PyIx8zQnr/867j6X5NghEuZ3ZRU0+A9aA==",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Security.nuspec",
+ "lib/netcore50/System.ServiceModel.Security.dll",
+ "lib/DNXCore50/System.ServiceModel.Security.dll",
+ "lib/net46/System.ServiceModel.Security.dll",
+ "ref/any/System.ServiceModel.Security.dll",
+ "ref/net46/System.ServiceModel.Security.dll",
+ "package/services/metadata/core-properties/e6142c41ed704bff8b43e313628ae6e7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding/4.0.10-beta-23003": {
+ "sha512": "WCADuIgJ8oXbvXSe73oA1/FSQpGsOHFW5Z0a2UN+PC2bq2si+Ga120aqf+jc41pAMErYRYRoJUR5ZXAmdbAO+Q==",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.nuspec",
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/net46/System.Text.Encoding.dll",
+ "ref/any/System.Text.Encoding.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll",
+ "ref/net46/System.Text.Encoding.dll",
+ "package/services/metadata/core-properties/9890eb9a3fc948aeb6e8afcd403f2de5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23003": {
+ "sha512": "zfYie6cofkNDJUE9EG4ajup6plNQRsZb5bpm8+9P0/xtnP8mFaiUzxqAX14uspAQl+4fTaGXyQysGA1z//LvkQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.CodePages.nuspec",
+ "lib/any/System.Text.Encoding.CodePages.dll",
+ "ref/any/System.Text.Encoding.CodePages.dll",
+ "package/services/metadata/core-properties/0792e185732d4142a5ec33fc71478775.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23003": {
+ "sha512": "WwAY1xsFuv0pTrDYRA9Jd7+isQNAN+4uIY1GD2OrGGWxIDZTZr96gKRF6/S4k1C5ZNoPorVffzPgzRElr5VxWA==",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.Extensions.nuspec",
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
+ "lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "lib/net46/System.Text.Encoding.Extensions.dll",
+ "ref/any/System.Text.Encoding.Extensions.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/net46/System.Text.Encoding.Extensions.dll",
+ "package/services/metadata/core-properties/8fad89bc7d0f4b81abc58b7b9d78513b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23003": {
+ "sha512": "BmNmCnzaiPf8x5KcbtKVPnou1oCwJJJG94NH0WV0Hd5F0flyb/6PR0xBbv0kGFHjQAYLUarjlKXB84tYgORHag==",
+ "files": [
+ "_rels/.rels",
+ "System.Text.RegularExpressions.nuspec",
+ "lib/any/System.Text.RegularExpressions.dll",
+ "lib/net46/System.Text.RegularExpressions.dll",
+ "ref/any/System.Text.RegularExpressions.dll",
+ "ref/net46/System.Text.RegularExpressions.dll",
+ "package/services/metadata/core-properties/dd40f6e334df451a9201296e3bb97860.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading/4.0.10-beta-23003": {
+ "sha512": "H13NgKtLiGXhJC2185e05A/CARRKSoTbrDrJs3ZUhGIiyTpZkofmMn/qSr41ghrosmJWn4SNEG+oUY/hVb7oeQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.nuspec",
+ "lib/DNXCore50/System.Threading.dll",
+ "lib/netcore50/System.Threading.dll",
+ "lib/net46/System.Threading.dll",
+ "ref/any/System.Threading.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "ref/net46/System.Threading.dll",
+ "package/services/metadata/core-properties/68880ed23e584633a12b4e93edb3f417.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23003": {
+ "sha512": "NERcZnT+6VdLJHM1Y62SF3XBqqrPupgL8LyNYoXjwCKb/+TtCT10Y6hhSTZD9WgzBl4VDaP/H4lBBGDwjOOiEA==",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Overlapped.nuspec",
+ "lib/netcore50/System.Threading.Overlapped.dll",
+ "lib/DNXCore50/System.Threading.Overlapped.dll",
+ "lib/net46/System.Threading.Overlapped.dll",
+ "ref/any/System.Threading.Overlapped.dll",
+ "ref/net46/System.Threading.Overlapped.dll",
+ "package/services/metadata/core-properties/1ca6932ef43e49039f2648bb83098afa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10-beta-23003": {
+ "sha512": "shGb8wVJx3IH6nh1+qn/BwPI0EelWplN/YqUUJGpON/rFqHQagVYghUd7FAUZqo/vFMSQdUVsRx4eQ7dheH2ZA==",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.nuspec",
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/net46/System.Threading.Tasks.dll",
+ "ref/any/System.Threading.Tasks.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "ref/net46/System.Threading.Tasks.dll",
+ "package/services/metadata/core-properties/44c0cab74ec04bb19519f1bbf944e5b7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23003": {
+ "sha512": "mwpJVTcVjTeCzPS3BPOpE+x+MvOIUplpDpV4XmzY1BpR+upxiZdrBZemTw9HZApGb4BUtyqD+1p6BVnY7tRzFw==",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Parallel.nuspec",
+ "lib/any/System.Threading.Tasks.Parallel.dll",
+ "lib/net46/System.Threading.Tasks.Parallel.dll",
+ "ref/any/System.Threading.Tasks.Parallel.dll",
+ "ref/net46/System.Threading.Tasks.Parallel.dll",
+ "package/services/metadata/core-properties/63988e6167264eb89966900b74c703eb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Timer/4.0.0-beta-23003": {
+ "sha512": "OG6cErEEjuTSqfEvv6hwaP9MoBMilC8rTqRbt6Jmjb+S4VJ/fN1AzMqHahc1WaamGBH4eJS6xz3EbuSOsxZLYQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Timer.nuspec",
+ "lib/DNXCore50/System.Threading.Timer.dll",
+ "lib/netcore50/System.Threading.Timer.dll",
+ "lib/net46/System.Threading.Timer.dll",
+ "ref/any/System.Threading.Timer.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll",
+ "ref/net46/System.Threading.Timer.dll",
+ "package/services/metadata/core-properties/b6d8e677cc9b474dbac7c204e9f78c10.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23003": {
+ "sha512": "4b5eVRsQq1Z7njG6L5LCfF14CMqJ2hpqWQCQVdRQSPFiBamtY1orrrGftW0jkWH2xi8BSrNYTD6soCH1/Rh93Q==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.ReaderWriter.nuspec",
+ "lib/any/System.Xml.ReaderWriter.dll",
+ "lib/net46/System.Xml.ReaderWriter.dll",
+ "ref/any/System.Xml.ReaderWriter.dll",
+ "ref/net46/System.Xml.ReaderWriter.dll",
+ "package/services/metadata/core-properties/502b06517017418a8c4e3057ac86aace.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XDocument/4.0.10-beta-23003": {
+ "sha512": "Tv0EorIfHKTIsyvER4YYwmMEkzpg5e+ftBGVPw0ykU46O11rQN9kFom+iKHNgzU1BqlNs64FQV8QEkSgUHWRRg==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XDocument.nuspec",
+ "lib/any/System.Xml.XDocument.dll",
+ "lib/net46/System.Xml.XDocument.dll",
+ "ref/any/System.Xml.XDocument.dll",
+ "ref/net46/System.Xml.XDocument.dll",
+ "package/services/metadata/core-properties/ddc8908cda9e419aa4ba7509f74debe2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23003": {
+ "sha512": "E/KiOcJMdcYroIHQTVNQITFGi2Lzuy1Eg2psi5SR1mmz1Sk5SguklpGyoTRju5KB6kSdiXvREM+p8mfTM1pVVw==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlDocument.nuspec",
+ "lib/any/System.Xml.XmlDocument.dll",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "ref/any/System.Xml.XmlDocument.dll",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "package/services/metadata/core-properties/b834f5c0a9f4480288b17123725716b4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23003": {
+ "sha512": "L+rqYrEP0K+vnZcyxowViwrWymmbAGqZihh2p96K+XG52v5+xq+VTkvzrndIkOQH4eFEbx0r7VdrCQTa4zM9Yg==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlSerializer.nuspec",
+ "lib/DNXCore50/System.Xml.XmlSerializer.dll",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/net46/System.Xml.XmlSerializer.dll",
+ "ref/any/System.Xml.XmlSerializer.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/net46/System.Xml.XmlSerializer.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/b9f7221bed5a439185e03ba3411d903b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XPath/4.0.0-beta-23003": {
+ "sha512": "w1VR00eKxXVJuxbnhgfVDgBwycChVzD0/h2IlYHhxRyFaDj0ETe7Divd9BU6at2pKXxTl4mEK+EYc5PmAh3DFA==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XPath.nuspec",
+ "lib/any/System.Xml.XPath.dll",
+ "lib/net46/System.Xml.XPath.dll",
+ "ref/any/System.Xml.XPath.dll",
+ "ref/net46/System.Xml.XPath.dll",
+ "package/services/metadata/core-properties/c773851499c045f4a4f8a39f8552034c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XPath.XDocument/4.0.0-beta-23003": {
+ "sha512": "lzW8g6CmLiUbO8w+4lgG1M6jt7qrBdI0j3yPoBq9vgwSeodS64dok+6dgRc7NfqwNxpwRIrae6xql0bUDJPEtA==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XPath.XDocument.nuspec",
+ "lib/any/System.Xml.XPath.XDocument.dll",
+ "lib/net46/System.Xml.XPath.XDocument.dll",
+ "ref/any/System.Xml.XPath.XDocument.dll",
+ "ref/net46/System.Xml.XPath.XDocument.dll",
+ "package/services/metadata/core-properties/1dc8254929dc49eca5ceb4a76bcfaa3b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XPath.XmlDocument/4.0.0-beta-23003": {
+ "sha512": "3mK4KfSUPnP4FZb5OS+gs+pl1QZWEXKQ7vWFmOuT6iZz1DDBmA53PBRKN++9Z7Z8s2pqapnmVDcbLCknqBRYnQ==",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XPath.XmlDocument.nuspec",
+ "lib/any/System.Xml.XPath.XmlDocument.dll",
+ "ref/any/System.Xml.XPath.XmlDocument.dll",
+ "package/services/metadata/core-properties/06d1941cedec4bfea08dc1fb13bce84b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "Microsoft.ApplicationInsights [0.17.0, )",
+ "Microsoft.ApplicationInsights.PersistenceChannel [0.17.0, )",
+ "Microsoft.ApplicationInsights.WindowsApps [0.17.0, )",
+ "Microsoft.NETCore.UniversalWindowsPlatform [1.0.0-beta-23003, )",
+ "System.ServiceModel.NetTcp [4.0.0-beta-23003, )"
+ ],
+ ".NETCore,Version=v5.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json
new file mode 100644
index 0000000..25473e1
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json
@@ -0,0 +1,14297 @@
+{
+ "locked": false,
+ "version": 1,
+ "targets": {
+ ".NETCore,Version=v5.0": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-arm": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win8-arm/native/clretwrc.dll": {},
+ "runtimes/win8-arm/native/coreclr.dll": {},
+ "runtimes/win8-arm/native/dbgshim.dll": {},
+ "runtimes/win8-arm/native/mscordaccore.dll": {},
+ "runtimes/win8-arm/native/mscordbi.dll": {},
+ "runtimes/win8-arm/native/mscorrc.debug.dll": {},
+ "runtimes/win8-arm/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-arm-aot": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-arm/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-x86": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x86/native/clretwrc.dll": {},
+ "runtimes/win7-x86/native/coreclr.dll": {},
+ "runtimes/win7-x86/native/dbgshim.dll": {},
+ "runtimes/win7-x86/native/mscordaccore.dll": {},
+ "runtimes/win7-x86/native/mscordbi.dll": {},
+ "runtimes/win7-x86/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x86/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-x86-aot": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x86/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-x64": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "lib/netcore50/System.Core.dll": {},
+ "lib/netcore50/System.dll": {},
+ "lib/netcore50/System.Net.dll": {},
+ "lib/netcore50/System.Numerics.dll": {},
+ "lib/netcore50/System.Runtime.Serialization.dll": {},
+ "lib/netcore50/System.ServiceModel.dll": {},
+ "lib/netcore50/System.ServiceModel.Web.dll": {},
+ "lib/netcore50/System.Windows.dll": {},
+ "lib/netcore50/System.Xml.dll": {},
+ "lib/netcore50/System.Xml.Linq.dll": {},
+ "lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {}
+ },
+ "native": {
+ "runtimes/win7-x64/native/clretwrc.dll": {},
+ "runtimes/win7-x64/native/coreclr.dll": {},
+ "runtimes/win7-x64/native/dbgshim.dll": {},
+ "runtimes/win7-x64/native/mscordaccore.dll": {},
+ "runtimes/win7-x64/native/mscordbi.dll": {},
+ "runtimes/win7-x64/native/mscorrc.debug.dll": {},
+ "runtimes/win7-x64/native/mscorrc.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/_._": {}
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection.Emit.ILGeneration": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ },
+ ".NETCore,Version=v5.0/win10-x64-aot": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.CSharp": "[4.0.0-beta-23106, )",
+ "Microsoft.VisualBasic": "[10.0.0-beta-23106, )",
+ "System.AppContext": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.Annotations": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.IO.Compression.ZipFile": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.UnmanagedMemoryStream": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Linq.Parallel": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Net.NetworkInformation": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Numerics.Vectors": "[4.1.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Metadata": "[1.0.22-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Runtime.Numerics": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks.Dataflow": "[4.5.25-beta-23106, )",
+ "System.Threading.Tasks.Parallel": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Xml.XDocument": "[4.0.10-beta-23106, )",
+ "Microsoft.NETCore.Targets": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/mscorlib.dll": {},
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcore50/System.Core.dll": {},
+ "ref/netcore50/System.dll": {},
+ "ref/netcore50/System.Net.dll": {},
+ "ref/netcore50/System.Numerics.dll": {},
+ "ref/netcore50/System.Runtime.Serialization.dll": {},
+ "ref/netcore50/System.ServiceModel.dll": {},
+ "ref/netcore50/System.ServiceModel.Web.dll": {},
+ "ref/netcore50/System.Windows.dll": {},
+ "ref/netcore50/System.Xml.dll": {},
+ "ref/netcore50/System.Xml.Linq.dll": {},
+ "ref/netcore50/System.Xml.Serialization.dll": {}
+ },
+ "runtime": {
+ "runtimes/aot/lib/netcore50/mscorlib.dll": {},
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
+ "runtimes/aot/lib/netcore50/System.Core.dll": {},
+ "runtimes/aot/lib/netcore50/System.dll": {},
+ "runtimes/aot/lib/netcore50/System.Net.dll": {},
+ "runtimes/aot/lib/netcore50/System.Numerics.dll": {},
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
+ "runtimes/aot/lib/netcore50/System.Windows.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "dependencies": {
+ "System.Collections": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Globalization": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.IO": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.ObjectModel": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Reflection": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, 4.0.10-beta-23106]",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tools": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Globalization.Calendars": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Threading.Timer": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Private.Uri": "[4.0.0-beta-23106, 4.0.0-beta-23106]",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime": "[4.0.20-beta-23106, 4.0.20-beta-23106]",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, 4.0.20-beta-23106]"
+ }
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore.Platforms": "[1.0.0-beta-23106, )"
+ }
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {},
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "dependencies": {
+ "Microsoft.NETCore.Runtime": "[1.0.0-beta-23106, )",
+ "Microsoft.NETCore": "[5.0.0-beta-23106, )",
+ "Microsoft.NETCore.Portable.Compatibility": "[1.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Data.Common": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.StackTrace": "[4.0.0-beta-23106, )",
+ "System.IO.IsolatedStorage": "[4.0.0-beta-23106, )",
+ "System.Net.Http.Rtc": "[4.0.0-beta-23106, )",
+ "System.Net.Requests": "[4.0.10-beta-23106, )",
+ "System.Net.Sockets": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Context": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Json": "[4.0.0-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Duplex": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Http": "[4.0.10-beta-23106, )",
+ "System.ServiceModel.NetTcp": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Primitives": "[4.0.0-beta-23106, )",
+ "System.ServiceModel.Security": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.CodePages": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ }
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/Microsoft.VisualBasic.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.VisualBasic.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Globalization.Extensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.Specialized.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.ComponentModel": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ }
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Data.Common.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Data.Common.dll": {}
+ }
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Contracts.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.StackTrace.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {}
+ }
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {}
+ }
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Globalization.Extensions.dll": {}
+ }
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "native": {
+ "runtimes/win10-x64/native/ClrCompression.dll": {}
+ }
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.ZipFile.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.ZipFile.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.FileSystem.dll": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.IsolatedStorage.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.IO.IsolatedStorage.dll": {}
+ }
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {}
+ }
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Parallel.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Primitives": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.dll": {}
+ }
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.Http.Rtc.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Http.Rtc.dll": {}
+ }
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Net.NetworkInformation.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.NetworkInformation.dll": {}
+ }
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Requests.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.Requests.dll": {}
+ }
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.Networking": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Sockets.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "Microsoft.Win32.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.Threading.Overlapped": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Threading.Timer": "[4.0.0-beta-23106, )",
+ "System.Collections.Specialized": "[4.0.0-beta-23106, )",
+ "System.Collections.NonGeneric": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Security.Claims": "[4.0.0-beta-23106, )",
+ "System.Net.Http": "[4.0.0-beta-23106, )",
+ "System.Net.WebHeaderCollection": "[4.0.0-beta-23106, )",
+ "System.Reflection.DispatchProxy": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Linq.Queryable": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.IO.Compression": "[4.0.0-beta-23106, )",
+ "System.ObjectModel": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Xml": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Xml.XmlSerializer": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.ComponentModel.EventBasedAsync": "[4.0.10-beta-23106, )",
+ "System.Net.Primitives": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Linq.Expressions": "[4.0.10-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Private.ServiceModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/_._": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Reflection.Context.dll": {}
+ }
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.0-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Collections.Immutable": "[1.1.37-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Reflection.Metadata.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Contracts": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Private.Uri": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Reflection": "[4.0.0-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Numerics.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.Serialization.Json.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime.Serialization.Primitives": "[4.0.10-beta-23106, )",
+ "System.Private.DataContractSerialization": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.ObjectModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
+ }
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.WindowsRuntime": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
+ }
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Security.Principal": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Globalization": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Security.Claims.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Security.Claims.dll": {}
+ }
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Security.Principal.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Security.Principal.dll": {}
+ }
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Duplex.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Duplex.dll": {}
+ }
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.ServiceModel.Http.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Http.dll": {}
+ }
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.NetTcp.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.NetTcp.dll": {}
+ }
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Primitives.dll": {}
+ }
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Private.ServiceModel": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.ServiceModel.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.ServiceModel.Security.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.Encoding.CodePages.dll": {}
+ }
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Runtime.Handles": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Overlapped.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.0-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.0-beta-23106, )",
+ "System.Dynamic.Runtime": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.0-beta-23106, )",
+ "System.Threading": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.0-beta-23106, )"
+ },
+ "compile": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Diagnostics.Tracing": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Collections.Concurrent": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ },
+ "runtime": {
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
+ }
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "compile": {
+ "ref/netcore50/System.Threading.Timer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading.Tasks": "[4.0.10-beta-23106, )",
+ "System.Runtime.InteropServices": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem": "[4.0.0-beta-23106, )",
+ "System.IO.FileSystem.Primitives": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Text.Encoding": "[4.0.10-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "dependencies": {
+ "System.Runtime": "[4.0.20-beta-23106, )",
+ "System.Resources.ResourceManager": "[4.0.0-beta-23106, )",
+ "System.Xml.XmlDocument": "[4.0.0-beta-23106, )",
+ "System.Reflection.TypeExtensions": "[4.0.0-beta-23106, )",
+ "System.Reflection.Extensions": "[4.0.0-beta-23106, )",
+ "System.Linq": "[4.0.0-beta-23106, )",
+ "System.Collections": "[4.0.10-beta-23106, )",
+ "System.Diagnostics.Debug": "[4.0.10-beta-23106, )",
+ "System.Globalization": "[4.0.10-beta-23106, )",
+ "System.Xml.ReaderWriter": "[4.0.10-beta-23106, )",
+ "System.Reflection": "[4.0.10-beta-23106, )",
+ "System.IO": "[4.0.10-beta-23106, )",
+ "System.Threading": "[4.0.10-beta-23106, )",
+ "System.Runtime.Extensions": "[4.0.10-beta-23106, )",
+ "System.Reflection.Primitives": "[4.0.0-beta-23106, )",
+ "System.Text.RegularExpressions": "[4.0.10-beta-23106, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ },
+ "runtime": {
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
+ }
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]",
+ "xunit.assert": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0-beta3-build3029, 2.1.0-beta3-build3029]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0, 2.0.0]"
+ },
+ "compile": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {}
+ }
+ },
+ "libraries": {
+ "Microsoft.CSharp/4.0.0-beta-23106": {
+ "sha512": "zq+DgzqylERvM/CkTZ50tzhjoBEdtsumPsbGqVvLKe705tmJEr3sczcUoYXs4XnjAbHoYDB10m0y9CIBhxheHg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.CSharp.nuspec",
+ "lib/dotnet/Microsoft.CSharp.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/Microsoft.CSharp.dll",
+ "ref/dotnet/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hant/Microsoft.CSharp.xml",
+ "ref/dotnet/de/Microsoft.CSharp.xml",
+ "ref/dotnet/fr/Microsoft.CSharp.xml",
+ "ref/dotnet/it/Microsoft.CSharp.xml",
+ "ref/dotnet/ja/Microsoft.CSharp.xml",
+ "ref/dotnet/ko/Microsoft.CSharp.xml",
+ "ref/dotnet/ru/Microsoft.CSharp.xml",
+ "ref/dotnet/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet/es/Microsoft.CSharp.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/6010bbccaba549d0978968067cab1137.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore/5.0.0-beta-23106": {
+ "sha512": "tzoo+KWtIg3MxpG7wSfXp9UoFNVqgT9g7xUzcSDDusnZYehJMOrVpeRGs1Q5UOlFxZ2Sc5nha7HagNOz2MEeXw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/1ff8ebb0c1d643e7953bd23c315e0cd4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.0.0-beta-23106": {
+ "sha512": "iO2UeSbUveZKtf/cOh3DcCBAvDmUneAXGaLN6+/VmoHwXbKbLFR5tOq5zDYVFFLYx/0Z1GA5oBfTZqrblavTgQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Platforms.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/61f86d8bc95544d8acfc8bf4463c9ec8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Portable.Compatibility/1.0.0-beta-23106": {
+ "sha512": "lBj7drfPEWjQSWJpsFzjocES1Ud9EzrBeEAMTqJrdbs9v0SIeBWr4dolyVC/d9QHQSEfeoPoOea1eVR4AzaRoQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Portable.Compatibility.nuspec",
+ "lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "lib/netcore50/System.Core.dll",
+ "lib/netcore50/System.dll",
+ "lib/netcore50/System.Net.dll",
+ "lib/netcore50/System.Numerics.dll",
+ "lib/netcore50/System.Runtime.Serialization.dll",
+ "lib/netcore50/System.ServiceModel.dll",
+ "lib/netcore50/System.ServiceModel.Web.dll",
+ "lib/netcore50/System.Windows.dll",
+ "lib/netcore50/System.Xml.dll",
+ "lib/netcore50/System.Xml.Linq.dll",
+ "lib/netcore50/System.Xml.Serialization.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/mscorlib.dll",
+ "ref/dotnet/System.ComponentModel.DataAnnotations.dll",
+ "ref/dotnet/System.Core.dll",
+ "ref/dotnet/System.dll",
+ "ref/dotnet/System.Net.dll",
+ "ref/dotnet/System.Numerics.dll",
+ "ref/dotnet/System.Runtime.Serialization.dll",
+ "ref/dotnet/System.ServiceModel.dll",
+ "ref/dotnet/System.ServiceModel.Web.dll",
+ "ref/dotnet/System.Windows.dll",
+ "ref/dotnet/System.Xml.dll",
+ "ref/dotnet/System.Xml.Linq.dll",
+ "ref/dotnet/System.Xml.Serialization.dll",
+ "runtimes/aot/lib/netcore50/mscorlib.dll",
+ "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "runtimes/aot/lib/netcore50/System.Core.dll",
+ "runtimes/aot/lib/netcore50/System.dll",
+ "runtimes/aot/lib/netcore50/System.Net.dll",
+ "runtimes/aot/lib/netcore50/System.Numerics.dll",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.dll",
+ "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
+ "runtimes/aot/lib/netcore50/System.Windows.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
+ "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/mscorlib.dll",
+ "ref/netcore50/System.ComponentModel.DataAnnotations.dll",
+ "ref/netcore50/System.Core.dll",
+ "ref/netcore50/System.dll",
+ "ref/netcore50/System.Net.dll",
+ "ref/netcore50/System.Numerics.dll",
+ "ref/netcore50/System.Runtime.Serialization.dll",
+ "ref/netcore50/System.ServiceModel.dll",
+ "ref/netcore50/System.ServiceModel.Web.dll",
+ "ref/netcore50/System.Windows.dll",
+ "ref/netcore50/System.Xml.dll",
+ "ref/netcore50/System.Xml.Linq.dll",
+ "ref/netcore50/System.Xml.Serialization.dll",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/47bd8f682d66401bb1ee91a4542a5f7b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime/1.0.0-beta-23106": {
+ "sha512": "dttypM1I4cpz3+QzZSu1uKYYbZMTo9tp6Lai+KC/eAV8TN1Teh7RylG7pujOjXHfng1N+v3UnXmoYxfQXEui8A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/37c38541eac4488799d148b36455301a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0-beta-23106": {
+ "sha512": "5G/7xNRVUKASig4cskhcNWYKHmBjsjOFI5sbLljVFShni41d05HnXRE+8L+S0Ir+4y4SbD3lmNOJTc4eN75TEw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec",
+ "runtimes/win8-arm/native/clretwrc.dll",
+ "runtimes/win8-arm/native/coreclr.dll",
+ "runtimes/win8-arm/native/dbgshim.dll",
+ "runtimes/win8-arm/native/mscordaccore.dll",
+ "runtimes/win8-arm/native/mscordbi.dll",
+ "runtimes/win8-arm/native/mscorrc.debug.dll",
+ "runtimes/win8-arm/native/mscorrc.dll",
+ "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/e375d92b758b4c1c941f37c105654769.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0-beta-23106": {
+ "sha512": "wf0hPk0+5LrhBQhBoVc7FndFbW5eRPynuCkJIeTT6jMqNX/P4VJ24q4O8l1bZM07utTR1tCWuUso63Op2q9q6Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec",
+ "runtimes/win7-x64/native/clretwrc.dll",
+ "runtimes/win7-x64/native/coreclr.dll",
+ "runtimes/win7-x64/native/dbgshim.dll",
+ "runtimes/win7-x64/native/mscordaccore.dll",
+ "runtimes/win7-x64/native/mscordbi.dll",
+ "runtimes/win7-x64/native/mscorrc.debug.dll",
+ "runtimes/win7-x64/native/mscorrc.dll",
+ "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/3b39c87efc28494f8e2132a1b8da9b9e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0-beta-23106": {
+ "sha512": "gcNM0Hf59bRj1V8serAIieyPqxbYpI/dIVOvEVV1HsM8I7gzbqsyMsw3U7xPLXG5ulzyOcH/gQQ5HVrInPX8ig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec",
+ "runtimes/win7-x86/native/clretwrc.dll",
+ "runtimes/win7-x86/native/coreclr.dll",
+ "runtimes/win7-x86/native/dbgshim.dll",
+ "runtimes/win7-x86/native/mscordaccore.dll",
+ "runtimes/win7-x86/native/mscordbi.dll",
+ "runtimes/win7-x86/native/mscorrc.debug.dll",
+ "runtimes/win7-x86/native/mscorrc.dll",
+ "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll",
+ "ref/dotnet/_._",
+ "package/services/metadata/core-properties/5983a458e1c14375abe887dd67def6df.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Runtime.Native/1.0.0-beta-23106": {
+ "sha512": "t1JvhWK16ZIYU2OJYWMdKZ2hNdKhaczdMkYuwrGpaP474tRcoPDe3h4cO1eNpliHNGJc+UvGTi0p/oNODktteQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Runtime.Native.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/a9951ac155814769bd8ad97d6d7add1e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.0.0-beta-23106": {
+ "sha512": "tuIl7DusvT6GoYVJ96Uu92SwUvRj6m96MBmr9XGtwz3/QHYKgBe7JVzEvTlbzHgwgUV7j8SARmrkp3TdK4+tsQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/a89570f33e6041bc81332204ea501630.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "sha512": "ceoC+brZ5mI7Q5EiFZBegnjxl/Rx2a9ZLMVzn9/DBMQEHflY7vbLEQZA8oLWWdMWmSLziei9ttqBMNH2/Wz4QQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/461dab1e93974b6ea284c6dfdbc1b7aa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.UniversalWindowsPlatform/1.0.0-beta-23106": {
+ "sha512": "WUP2umHjW5JQ7akWNMZQLeGM/Y7PMLu9QvmPDUAnl+5RnMhY30UKk2kzPmBHgJfKoQVG9pGgSR0+CHxZON19Mw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
+ "_._",
+ "package/services/metadata/core-properties/0a9c36c4c228429e9f32e26421e8370a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0-beta-23106": {
+ "sha512": "F3OvzxPoHFTmecxG7po80Qa0z/qaWpmeVGneT8BJEW6hXIUUn75y23FxadiuRm9O018AeyqJZQtvQfp0JBcTcQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x64.nuspec",
+ "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x64/native/_._",
+ "package/services/metadata/core-properties/bb4d8e7bbadc4fa3987a4fe2fb1711e8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0-beta-23106": {
+ "sha512": "R/8OE3h7L9BejOCR7GR0oQsjIkCMSzzxJHV5NUEMSf4jxLs5+8KTb4LEBPY6Lrvk13riQ50QBhmQQ5YaNGwUig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Windows.ApiSets-x86.nuspec",
+ "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll",
+ "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll",
+ "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll",
+ "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll",
+ "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll",
+ "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll",
+ "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll",
+ "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll",
+ "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll",
+ "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll",
+ "runtimes/win10-x86/native/_._",
+ "package/services/metadata/core-properties/7c0f763958764e26a4d28baf64013e93.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.VisualBasic/10.0.0-beta-23106": {
+ "sha512": "np+N38Zl4rVnk8ziwdLq3oNUcZQDHuqm9GSXnEu2u3YmUJzVhqyWcNnTidwwt3RxjC1zvT57xaWhjClLThK7vw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.VisualBasic.nuspec",
+ "lib/dotnet/Microsoft.VisualBasic.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/Microsoft.VisualBasic.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/Microsoft.VisualBasic.dll",
+ "ref/dotnet/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml",
+ "ref/dotnet/de/Microsoft.VisualBasic.xml",
+ "ref/dotnet/fr/Microsoft.VisualBasic.xml",
+ "ref/dotnet/it/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ja/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ko/Microsoft.VisualBasic.xml",
+ "ref/dotnet/ru/Microsoft.VisualBasic.xml",
+ "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml",
+ "ref/dotnet/es/Microsoft.VisualBasic.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/Microsoft.VisualBasic.dll",
+ "ref/netcore50/Microsoft.VisualBasic.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/20741e78b37048c8b1340707fa76a7ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.Win32.Primitives/4.0.0-beta-23106": {
+ "sha512": "MYvjZ60thkcra1wrsyONtJ/NRvcpMz1VHSoEz+uU9rcB0gxgUpwY0z21PkBlC7kVg5PJ8yTF5Kj0PqwGtC7g0g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.Win32.Primitives.nuspec",
+ "lib/dotnet/Microsoft.Win32.Primitives.dll",
+ "lib/net46/Microsoft.Win32.Primitives.dll",
+ "ref/dotnet/Microsoft.Win32.Primitives.dll",
+ "ref/dotnet/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
+ "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
+ "ref/net46/Microsoft.Win32.Primitives.dll",
+ "package/services/metadata/core-properties/f4aec608e8534b9586f00d5e96de6fdc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.AppContext/4.0.0-beta-23106": {
+ "sha512": "/1n3zY/t2gCQKlT0Qq27ePZoSbkMmpT1QDGvWSIZ/caEaprIPBDr5wre8t1pTYSqtRzfOCv9ZM9w+VA4KWmf6Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.AppContext.nuspec",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/DNXCore50/System.AppContext.dll",
+ "lib/net46/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.xml",
+ "ref/dotnet/zh-hant/System.AppContext.xml",
+ "ref/dotnet/de/System.AppContext.xml",
+ "ref/dotnet/fr/System.AppContext.xml",
+ "ref/dotnet/it/System.AppContext.xml",
+ "ref/dotnet/ja/System.AppContext.xml",
+ "ref/dotnet/ko/System.AppContext.xml",
+ "ref/dotnet/ru/System.AppContext.xml",
+ "ref/dotnet/zh-hans/System.AppContext.xml",
+ "ref/dotnet/es/System.AppContext.xml",
+ "ref/net46/System.AppContext.dll",
+ "package/services/metadata/core-properties/4d9b5cdb2c6e4ff28c41394e2a9a2aad.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections/4.0.10-beta-23106": {
+ "sha512": "XiahRkJ8Wg9CqhvU5fzKQBMQyAHmslpsTUGzwqJu9XGCqlQUJYxNbyQ41qFTyQrPnxConoOumrBWmZ7FErSAvA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.nuspec",
+ "lib/netcore50/System.Collections.dll",
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Collections.dll",
+ "ref/dotnet/System.Collections.xml",
+ "ref/dotnet/zh-hant/System.Collections.xml",
+ "ref/dotnet/de/System.Collections.xml",
+ "ref/dotnet/fr/System.Collections.xml",
+ "ref/dotnet/it/System.Collections.xml",
+ "ref/dotnet/ja/System.Collections.xml",
+ "ref/dotnet/ko/System.Collections.xml",
+ "ref/dotnet/ru/System.Collections.xml",
+ "ref/dotnet/zh-hans/System.Collections.xml",
+ "ref/dotnet/es/System.Collections.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/3841e6b4d37a4d86bdd071326abae74e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Concurrent/4.0.10-beta-23106": {
+ "sha512": "2RL8xuDZNhze1C6CpA5qHAFSlNlFw7LMu7Lq+ekaIKqSK7NEQx6s/JqAopmBJLG7ytnaIEsoNz1h6Ovm2rX9BA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Concurrent.nuspec",
+ "lib/dotnet/System.Collections.Concurrent.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Collections.Concurrent.dll",
+ "ref/dotnet/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hant/System.Collections.Concurrent.xml",
+ "ref/dotnet/de/System.Collections.Concurrent.xml",
+ "ref/dotnet/fr/System.Collections.Concurrent.xml",
+ "ref/dotnet/it/System.Collections.Concurrent.xml",
+ "ref/dotnet/ja/System.Collections.Concurrent.xml",
+ "ref/dotnet/ko/System.Collections.Concurrent.xml",
+ "ref/dotnet/ru/System.Collections.Concurrent.xml",
+ "ref/dotnet/zh-hans/System.Collections.Concurrent.xml",
+ "ref/dotnet/es/System.Collections.Concurrent.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/e3a48eca65cb4e6490b14d86822b30ef.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Immutable/1.1.37-beta-23106": {
+ "sha512": "AXzKY/yibRbcKsopX+tE/L4uoQ3kpIBeWbq2W58lTWg88IlHk/myuG6cfD/nVaULjLlA6NPGqasgk+JX11WO7w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Immutable.nuspec",
+ "lib/dotnet/System.Collections.Immutable.dll",
+ "lib/dotnet/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "package/services/metadata/core-properties/f59eda11b46349c7ad764e995a162d91.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.0-beta-23106": {
+ "sha512": "BZdYTKRz5wBvirmpb3JrxEzxfKNwCbO/ACmMnRs3xIAGnlusyHklRXyQK8LwpO+81K2i6ftY3i2JQpez9Wed5w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.NonGeneric.nuspec",
+ "lib/dotnet/System.Collections.NonGeneric.dll",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/dotnet/de/System.Collections.NonGeneric.xml",
+ "ref/dotnet/fr/System.Collections.NonGeneric.xml",
+ "ref/dotnet/it/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ja/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ko/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ru/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/dotnet/es/System.Collections.NonGeneric.xml",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "package/services/metadata/core-properties/4bdd96362f364c3cb0087c8e5a980d39.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Collections.Specialized/4.0.0-beta-23106": {
+ "sha512": "27JeTw7ulS8J+MzdFX6BL+mH3TfNU/dFf5+tvnXYiv27rJkCuxSMOpmMNsgCARFa2TMdSL7N2owYEcUycp+fxw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Collections.Specialized.nuspec",
+ "lib/dotnet/System.Collections.Specialized.dll",
+ "lib/net46/System.Collections.Specialized.dll",
+ "ref/dotnet/System.Collections.Specialized.dll",
+ "ref/dotnet/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hant/System.Collections.Specialized.xml",
+ "ref/dotnet/de/System.Collections.Specialized.xml",
+ "ref/dotnet/fr/System.Collections.Specialized.xml",
+ "ref/dotnet/it/System.Collections.Specialized.xml",
+ "ref/dotnet/ja/System.Collections.Specialized.xml",
+ "ref/dotnet/ko/System.Collections.Specialized.xml",
+ "ref/dotnet/ru/System.Collections.Specialized.xml",
+ "ref/dotnet/zh-hans/System.Collections.Specialized.xml",
+ "ref/dotnet/es/System.Collections.Specialized.xml",
+ "ref/net46/System.Collections.Specialized.dll",
+ "package/services/metadata/core-properties/e9dd5cf36abb4e1aa44719e348ccfa04.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel/4.0.0-beta-23106": {
+ "sha512": "5Itxa1o15332MpLi2dk/yy0jJ4nSZKeVZxo64Jo1JcJHq+6xWLCDHj7br1ZrjjJYmZphEzsij8Q9sDIlvVHpmQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.nuspec",
+ "lib/dotnet/System.ComponentModel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.ComponentModel.dll",
+ "ref/dotnet/System.ComponentModel.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.xml",
+ "ref/dotnet/de/System.ComponentModel.xml",
+ "ref/dotnet/fr/System.ComponentModel.xml",
+ "ref/dotnet/it/System.ComponentModel.xml",
+ "ref/dotnet/ja/System.ComponentModel.xml",
+ "ref/dotnet/ko/System.ComponentModel.xml",
+ "ref/dotnet/ru/System.ComponentModel.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.xml",
+ "ref/dotnet/es/System.ComponentModel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/a9e165e71861467dafa5538361a168b2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.0.10-beta-23106": {
+ "sha512": "GFptTDVh+DdrKsNeWU8vG5uujXH0FmECr5fQ3dvsB11WOqAoL8vOT9lBWXP/d947RDlOWFORKfMWYspK6943hA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.Annotations.nuspec",
+ "lib/dotnet/System.ComponentModel.Annotations.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ComponentModel.Annotations.dll",
+ "ref/dotnet/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/de/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/fr/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/it/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ja/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ko/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/ru/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/dotnet/es/System.ComponentModel.Annotations.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/464dd46742624a13be1eb38508e690fa.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10-beta-23106": {
+ "sha512": "vhXuXKur0TU6RTIRQLFY8iwPDGG/OQ+BAuu5s5Ud1+EI3Fry+o7pzhNgfOXPy9YS3ks78OBUTSGaflhuy+xG/w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ComponentModel.EventBasedAsync.nuspec",
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll",
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml",
+ "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/667164745f2d45ffbeb2f9b3fa6c8a21.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Data.Common/4.0.0-beta-23106": {
+ "sha512": "2uoyeLuiG67NcEXLvwTwF8BvGcvt2R7vRzXNwZjCssCFFhvAUYxKOCF0wNEr3+GTEQwYBiUbCXjFpFQd5qdFWg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Data.Common.nuspec",
+ "lib/dotnet/System.Data.Common.dll",
+ "lib/net46/System.Data.Common.dll",
+ "ref/dotnet/System.Data.Common.dll",
+ "ref/dotnet/System.Data.Common.xml",
+ "ref/dotnet/zh-hant/System.Data.Common.xml",
+ "ref/dotnet/de/System.Data.Common.xml",
+ "ref/dotnet/fr/System.Data.Common.xml",
+ "ref/dotnet/it/System.Data.Common.xml",
+ "ref/dotnet/ja/System.Data.Common.xml",
+ "ref/dotnet/ko/System.Data.Common.xml",
+ "ref/dotnet/ru/System.Data.Common.xml",
+ "ref/dotnet/zh-hans/System.Data.Common.xml",
+ "ref/dotnet/es/System.Data.Common.xml",
+ "ref/net46/System.Data.Common.dll",
+ "package/services/metadata/core-properties/f4c4693a219348cd8e0febc5852075ac.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Contracts/4.0.0-beta-23106": {
+ "sha512": "2rLFUjokCFbFTGnk5PIHnpPMhU/etjFxHu680ufzBObT+oQL+yqch96O5U4zNg66hIeJrL4qJE5vE41AdatG/A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Contracts.nuspec",
+ "lib/netcore50/System.Diagnostics.Contracts.dll",
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Contracts.dll",
+ "ref/dotnet/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/de/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/fr/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/it/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ja/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ko/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/ru/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml",
+ "ref/dotnet/es/System.Diagnostics.Contracts.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Contracts.dll",
+ "ref/netcore50/System.Diagnostics.Contracts.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/7d3b50a7406042e0863ce22d0764518c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10-beta-23106": {
+ "sha512": "hu0WOq13+c1MK0Cl1n77OXwStdI0Gn6QqCnDlpjtTckaqeIfHMJOBYjfKKK/QJ3Yhp01Yvl2xCVWZXnbRVP7dw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Debug.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/dotnet/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet/es/System.Diagnostics.Debug.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/ef9794a2aca141c9b374d059544985e7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.StackTrace/4.0.0-beta-23106": {
+ "sha512": "h0mgKXLu3xf/eJDrE/PsbztBTVEYMPmpqDGkc1nxwxXbOghXauEKBWzJWXnRsfMJGmc9skx5v4wxZmS40LZUXw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.StackTrace.nuspec",
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll",
+ "lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "lib/net46/System.Diagnostics.StackTrace.dll",
+ "ref/dotnet/System.Diagnostics.StackTrace.dll",
+ "ref/dotnet/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/de/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/fr/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/it/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ja/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ko/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/ru/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml",
+ "ref/dotnet/es/System.Diagnostics.StackTrace.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
+ "ref/net46/System.Diagnostics.StackTrace.dll",
+ "package/services/metadata/core-properties/84367f14f0114908936f7af01c6dd3f3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tools/4.0.0-beta-23106": {
+ "sha512": "Z5PTgbig6ft1J+LQcZqyNslxhXMSPO3zgNxI7pobAlAsmldRD47sdfBrT6QFVVqhS9jCVw1NCVWFW9SymIkAUQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tools.nuspec",
+ "lib/DNXCore50/System.Diagnostics.Tools.dll",
+ "lib/netcore50/System.Diagnostics.Tools.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Diagnostics.Tools.dll",
+ "ref/dotnet/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/dotnet/de/System.Diagnostics.Tools.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tools.xml",
+ "ref/dotnet/it/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/dotnet/es/System.Diagnostics.Tools.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/131fe853c49640a996e163134f6f97ff.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.0.20-beta-23106": {
+ "sha512": "NwlO/v45NEbCEg1FP9JvoyDjp2uuVyORhi6XdZ0dV0ZXOgZ158ktLi9xObDMCgS/QeLkp0eBK25MYjmpJ2Aaug==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Diagnostics.Tracing.nuspec",
+ "lib/netcore50/System.Diagnostics.Tracing.dll",
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Diagnostics.Tracing.dll",
+ "ref/dotnet/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/de/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/it/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/es/System.Diagnostics.Tracing.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/499e0077b4b64bffa82d13239164705a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.10-beta-23106": {
+ "sha512": "u9DdBYiWMP9Fiq4BKouaSYB9zKBEyVrCE3OffrZVHIvEOvpphmpWz8i4F5soj2JQomqnLuCNsBtMlAX8ppp32Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Dynamic.Runtime.nuspec",
+ "lib/netcore50/System.Dynamic.Runtime.dll",
+ "lib/DNXCore50/System.Dynamic.Runtime.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/60b57c78f5064b3786f094496efe28bd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization/4.0.10-beta-23106": {
+ "sha512": "ODB8Cy6Q2qKeQglTqRv6Dna/gNU61cSU8DnKakFjFFcfBRKEVpfK+e1xVDhABHeZCK55XX3+O+8+Clr0rh4vXg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.nuspec",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.xml",
+ "ref/dotnet/zh-hant/System.Globalization.xml",
+ "ref/dotnet/de/System.Globalization.xml",
+ "ref/dotnet/fr/System.Globalization.xml",
+ "ref/dotnet/it/System.Globalization.xml",
+ "ref/dotnet/ja/System.Globalization.xml",
+ "ref/dotnet/ko/System.Globalization.xml",
+ "ref/dotnet/ru/System.Globalization.xml",
+ "ref/dotnet/zh-hans/System.Globalization.xml",
+ "ref/dotnet/es/System.Globalization.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/26fc783df55b4f7a863212db23c4d9a9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Calendars/4.0.0-beta-23106": {
+ "sha512": "oey74NpEoF5J4YXMNiLCxC4XQ077qjFNBo/9cWcyKXj8NSMI7PJUKX250vSlaDTCA4aUifdparRjAASEYCGQrg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Calendars.nuspec",
+ "lib/netcore50/System.Globalization.Calendars.dll",
+ "lib/DNXCore50/System.Globalization.Calendars.dll",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "ref/dotnet/System.Globalization.Calendars.dll",
+ "ref/dotnet/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
+ "ref/dotnet/de/System.Globalization.Calendars.xml",
+ "ref/dotnet/fr/System.Globalization.Calendars.xml",
+ "ref/dotnet/it/System.Globalization.Calendars.xml",
+ "ref/dotnet/ja/System.Globalization.Calendars.xml",
+ "ref/dotnet/ko/System.Globalization.Calendars.xml",
+ "ref/dotnet/ru/System.Globalization.Calendars.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
+ "ref/dotnet/es/System.Globalization.Calendars.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "package/services/metadata/core-properties/81b1c335e1f248cdadc44ac0b0324ace.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Globalization.Extensions/4.0.0-beta-23106": {
+ "sha512": "rqBFegkfJDr9mwK3bZ7/IVUGn0FJnAVIZnE2h5RBzsOYGUvxGy9Nb1JPeh2jbliU5GyD0aFWXy1N9NKROAxUHw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Globalization.Extensions.nuspec",
+ "lib/dotnet/System.Globalization.Extensions.dll",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "ref/dotnet/System.Globalization.Extensions.dll",
+ "ref/dotnet/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
+ "ref/dotnet/de/System.Globalization.Extensions.xml",
+ "ref/dotnet/fr/System.Globalization.Extensions.xml",
+ "ref/dotnet/it/System.Globalization.Extensions.xml",
+ "ref/dotnet/ja/System.Globalization.Extensions.xml",
+ "ref/dotnet/ko/System.Globalization.Extensions.xml",
+ "ref/dotnet/ru/System.Globalization.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
+ "ref/dotnet/es/System.Globalization.Extensions.xml",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "package/services/metadata/core-properties/16dde173f541453dab94af083ed939fd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO/4.0.10-beta-23106": {
+ "sha512": "C1M2Irm0fIohvwhlSSzHtW9bjgwCfLpdd+4ESDE7KMwp7YjxbTaJfbCfXxxDUyAYH+xE9s7c12huRw9x4p/cRA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.nuspec",
+ "lib/netcore50/System.IO.dll",
+ "lib/DNXCore50/System.IO.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.IO.dll",
+ "ref/dotnet/System.IO.xml",
+ "ref/dotnet/zh-hant/System.IO.xml",
+ "ref/dotnet/de/System.IO.xml",
+ "ref/dotnet/fr/System.IO.xml",
+ "ref/dotnet/it/System.IO.xml",
+ "ref/dotnet/ja/System.IO.xml",
+ "ref/dotnet/ko/System.IO.xml",
+ "ref/dotnet/ru/System.IO.xml",
+ "ref/dotnet/zh-hans/System.IO.xml",
+ "ref/dotnet/es/System.IO.xml",
+ "runtimes/win8-aot/lib/netcore50/System.IO.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/4648135d23104fd4a31f0f708b0551ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression/4.0.0-beta-23106": {
+ "sha512": "CeEoY72ESZfklGan0JZ+ey3uIw2BGN3NOsN+uhmZvjXDJfLvKoIA+V+vKkI5RNAwgr2dJCfDD/bfGCZIQpac5w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.nuspec",
+ "lib/dotnet/System.IO.Compression.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.IO.Compression.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.IO.Compression.dll",
+ "ref/dotnet/System.IO.Compression.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.xml",
+ "ref/dotnet/de/System.IO.Compression.xml",
+ "ref/dotnet/fr/System.IO.Compression.xml",
+ "ref/dotnet/it/System.IO.Compression.xml",
+ "ref/dotnet/ja/System.IO.Compression.xml",
+ "ref/dotnet/ko/System.IO.Compression.xml",
+ "ref/dotnet/ru/System.IO.Compression.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.xml",
+ "ref/dotnet/es/System.IO.Compression.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.xml",
+ "ref/wpa81/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/bc9b28e2a7c6467eaf5d056f808aa0c1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-arm/4.0.0-beta-23106": {
+ "sha512": "+CYBq0p9agplmskbgeqlnV5F7Vuc4WyYXAZSFxEQS2sfV4rdnLBXjXNQca9tS1HdMDL1xPjif+YCLDozz7PLSQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-arm.nuspec",
+ "runtimes/win7-arm/native/clrcompression.dll",
+ "runtimes/win10-arm/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/7bf64ade629e4793bbf614f89df775bf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0-beta-23106": {
+ "sha512": "m/uRCTVUelHKmtQyAMuLihgc5KfYjWhVpr4C/rjJVNLTthylJAcIfPSisfPxEVBgSGHX5bBKuuRAFUq8Mthf7Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x64.nuspec",
+ "runtimes/win7-x64/native/clrcompression.dll",
+ "runtimes/win10-x64/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/324be69975b3459a96bc20b2918ee3f1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0-beta-23106": {
+ "sha512": "er7FiiyfZQn3LX1+lvdObD49J61s2ydseewcTvedaZSI2uShrfC4u1LAwExHiM7RDWQpnNuCUaYdUuVeKr2KJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.clrcompression-x86.nuspec",
+ "runtimes/win7-x86/native/clrcompression.dll",
+ "runtimes/win10-x86/native/ClrCompression.dll",
+ "package/services/metadata/core-properties/c703e204ba9943cd95a8cbac65aa38c3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.Compression.ZipFile/4.0.0-beta-23106": {
+ "sha512": "ympMbivxqbfJVl/QY00tqjjjRq0yUbvrgozvxFv6OBvZH2f5TVnN/4gZ49CfItUtY7s+zwyTvteHhGg8rIdNCg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.Compression.ZipFile.nuspec",
+ "lib/dotnet/System.IO.Compression.ZipFile.dll",
+ "lib/net46/System.IO.Compression.ZipFile.dll",
+ "ref/dotnet/System.IO.Compression.ZipFile.dll",
+ "ref/dotnet/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/de/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/fr/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/it/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ja/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ko/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/ru/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml",
+ "ref/dotnet/es/System.IO.Compression.ZipFile.xml",
+ "ref/net46/System.IO.Compression.ZipFile.dll",
+ "package/services/metadata/core-properties/81ddb455709540598a2515704da230a6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem/4.0.0-beta-23106": {
+ "sha512": "O3fkBA4FfVptM+ujoSUMhsKYrDJEfkHkFbuxcitf/B89Xwu6QM54TxwyCUyZRg9s9qHYGRVKwpevxRovpA9Flg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.nuspec",
+ "lib/DNXCore50/System.IO.FileSystem.dll",
+ "lib/netcore50/System.IO.FileSystem.dll",
+ "lib/net46/System.IO.FileSystem.dll",
+ "ref/dotnet/System.IO.FileSystem.dll",
+ "ref/dotnet/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
+ "ref/dotnet/de/System.IO.FileSystem.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.xml",
+ "ref/dotnet/it/System.IO.FileSystem.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet/es/System.IO.FileSystem.xml",
+ "ref/net46/System.IO.FileSystem.dll",
+ "package/services/metadata/core-properties/941baaa277ee44e1ba9b803425a50e3a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.0.0-beta-23106": {
+ "sha512": "MaUWUJswoe49TLD5loZR1J87puBZDEAEoT6Q/Bg6OrSZJrxfTnfFPB1/xCh7XzTBa54UF/eG0ZhL5io6iEmSqg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.FileSystem.Primitives.nuspec",
+ "lib/dotnet/System.IO.FileSystem.Primitives.dll",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/dotnet/System.IO.FileSystem.Primitives.dll",
+ "ref/dotnet/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "package/services/metadata/core-properties/f5118ba49d36420abc4c4d539f69fb85.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.IsolatedStorage/4.0.0-beta-23106": {
+ "sha512": "HhlDjZh25cWTZprj0qEnAQqWGq8qzGcdVIZ2IRo5A7NNK7ObHX6vLMTmNmb0oJIHmKngUKAO7nZ9uFUfzrryOA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.IsolatedStorage.nuspec",
+ "lib/netcore50/System.IO.IsolatedStorage.dll",
+ "ref/dotnet/System.IO.IsolatedStorage.dll",
+ "ref/dotnet/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/de/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/fr/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/it/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ja/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ko/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/ru/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml",
+ "ref/dotnet/es/System.IO.IsolatedStorage.xml",
+ "package/services/metadata/core-properties/08e03580ebd64be5ae8232c5095cd6fb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.IO.UnmanagedMemoryStream/4.0.0-beta-23106": {
+ "sha512": "jx/fwxCTaoiVd64I6t7JTueU+Xa+iS00sK4nPfHbWlAcsxtlbLefUXevRg80pLu5Ri5NXurmpjBUfu2zW71kBQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.IO.UnmanagedMemoryStream.nuspec",
+ "lib/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "lib/net46/System.IO.UnmanagedMemoryStream.dll",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.dll",
+ "ref/dotnet/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml",
+ "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml",
+ "ref/net46/System.IO.UnmanagedMemoryStream.dll",
+ "package/services/metadata/core-properties/f7cd82def7bd4604b8cf1df71883b0c6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq/4.0.0-beta-23106": {
+ "sha512": "6+Zdp92hCKhqRza6Jf2aiP7KSXmRRr6DRvliGCgx8HFaP9raudpSRz2BYZjeFenncKe+Jex5rqfpjn7+IVKwhQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.nuspec",
+ "lib/dotnet/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.dll",
+ "ref/dotnet/System.Linq.xml",
+ "ref/dotnet/zh-hant/System.Linq.xml",
+ "ref/dotnet/de/System.Linq.xml",
+ "ref/dotnet/fr/System.Linq.xml",
+ "ref/dotnet/it/System.Linq.xml",
+ "ref/dotnet/ja/System.Linq.xml",
+ "ref/dotnet/ko/System.Linq.xml",
+ "ref/dotnet/ru/System.Linq.xml",
+ "ref/dotnet/zh-hans/System.Linq.xml",
+ "ref/dotnet/es/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/17b97dae93de485aac17e3ce64eece2c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Expressions/4.0.10-beta-23106": {
+ "sha512": "drQhshlnZBL0il5VKrB2O/eiIYUFK6vtRzt+Fws+1V3V4ySBMZdNTo/XHjlWiHSovWMZxiR7C3PUbpxfweL7Hg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Expressions.nuspec",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/DNXCore50/System.Linq.Expressions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
+ "ref/dotnet/de/System.Linq.Expressions.xml",
+ "ref/dotnet/fr/System.Linq.Expressions.xml",
+ "ref/dotnet/it/System.Linq.Expressions.xml",
+ "ref/dotnet/ja/System.Linq.Expressions.xml",
+ "ref/dotnet/ko/System.Linq.Expressions.xml",
+ "ref/dotnet/ru/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet/es/System.Linq.Expressions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/5caf14580cc2454b8d5ce770cb3b80af.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Parallel/4.0.0-beta-23106": {
+ "sha512": "pjqvf0sG7MHb6Pkh/NY9bTTzhDEytJKbf12jIqZRNiXYHgcD7sy3CNFj7lBtJv09FhsL9sDZIF+OWx1wv2UXKw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Parallel.nuspec",
+ "lib/dotnet/System.Linq.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Parallel.dll",
+ "ref/dotnet/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Linq.Parallel.xml",
+ "ref/dotnet/de/System.Linq.Parallel.xml",
+ "ref/dotnet/fr/System.Linq.Parallel.xml",
+ "ref/dotnet/it/System.Linq.Parallel.xml",
+ "ref/dotnet/ja/System.Linq.Parallel.xml",
+ "ref/dotnet/ko/System.Linq.Parallel.xml",
+ "ref/dotnet/ru/System.Linq.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Linq.Parallel.xml",
+ "ref/dotnet/es/System.Linq.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Parallel.dll",
+ "ref/netcore50/System.Linq.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c6d41e229782490ca70e645221adcede.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Linq.Queryable/4.0.0-beta-23106": {
+ "sha512": "TvjR84HuCqXIW0DoAV2X+0a+2SONJMvSeyAJauWY2o8wasEl/DUVj+mOqvLO2SaD1Z90aLtYxI4xRBI8dzz52g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Linq.Queryable.nuspec",
+ "lib/dotnet/System.Linq.Queryable.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Linq.Queryable.dll",
+ "ref/dotnet/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hant/System.Linq.Queryable.xml",
+ "ref/dotnet/de/System.Linq.Queryable.xml",
+ "ref/dotnet/fr/System.Linq.Queryable.xml",
+ "ref/dotnet/it/System.Linq.Queryable.xml",
+ "ref/dotnet/ja/System.Linq.Queryable.xml",
+ "ref/dotnet/ko/System.Linq.Queryable.xml",
+ "ref/dotnet/ru/System.Linq.Queryable.xml",
+ "ref/dotnet/zh-hans/System.Linq.Queryable.xml",
+ "ref/dotnet/es/System.Linq.Queryable.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/e580a08247154fc8adc6d6b3281a8ccb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http/4.0.0-beta-23106": {
+ "sha512": "4L+kIsMSFcCdx7XlOfvxMxkpUnUiI7G9TBDU9Nak3R90c2HQf+yqHjTB4+5LZAX3leuvb7o2XjXg/v0S0actvA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.nuspec",
+ "lib/netcore50/System.Net.Http.dll",
+ "lib/DNXCore50/System.Net.Http.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Net.Http.dll",
+ "ref/dotnet/System.Net.Http.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.xml",
+ "ref/dotnet/de/System.Net.Http.xml",
+ "ref/dotnet/fr/System.Net.Http.xml",
+ "ref/dotnet/it/System.Net.Http.xml",
+ "ref/dotnet/ja/System.Net.Http.xml",
+ "ref/dotnet/ko/System.Net.Http.xml",
+ "ref/dotnet/ru/System.Net.Http.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.xml",
+ "ref/dotnet/es/System.Net.Http.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/23a19c4719a54a1596b4f11f58753c91.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Http.Rtc/4.0.0-beta-23106": {
+ "sha512": "QBbjp2hQz/Zf4785aidpYqtWFOto3KjGP7nHnmaEaUlXI1KAg1qR8V5Ggh+u1XAJrSvSc3ydUIkNgDVOQ43hPw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Http.Rtc.nuspec",
+ "lib/netcore50/System.Net.Http.Rtc.dll",
+ "lib/win8/_._",
+ "ref/dotnet/System.Net.Http.Rtc.dll",
+ "ref/dotnet/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml",
+ "ref/dotnet/de/System.Net.Http.Rtc.xml",
+ "ref/dotnet/fr/System.Net.Http.Rtc.xml",
+ "ref/dotnet/it/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ja/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ko/System.Net.Http.Rtc.xml",
+ "ref/dotnet/ru/System.Net.Http.Rtc.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml",
+ "ref/dotnet/es/System.Net.Http.Rtc.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.Http.Rtc.dll",
+ "ref/netcore50/System.Net.Http.Rtc.xml",
+ "package/services/metadata/core-properties/ad7e1c0402bb44f7ad4f743928fa092e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.NetworkInformation/4.0.0-beta-23106": {
+ "sha512": "Omvmk6A1XdgUWA/1XbbZhtX3IIEYuxKA9l+wuAu9uOneVlq0NUGZVkJ9dy7QPacxKPh2FEvPjWQJBYceo54DAg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.NetworkInformation.nuspec",
+ "lib/netcore50/System.Net.NetworkInformation.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Net.NetworkInformation.dll",
+ "ref/dotnet/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml",
+ "ref/dotnet/de/System.Net.NetworkInformation.xml",
+ "ref/dotnet/fr/System.Net.NetworkInformation.xml",
+ "ref/dotnet/it/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ja/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ko/System.Net.NetworkInformation.xml",
+ "ref/dotnet/ru/System.Net.NetworkInformation.xml",
+ "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml",
+ "ref/dotnet/es/System.Net.NetworkInformation.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Net.NetworkInformation.dll",
+ "ref/netcore50/System.Net.NetworkInformation.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/cb222020b27c4651a15d932c22f0298c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Primitives/4.0.10-beta-23106": {
+ "sha512": "tpuHAnpxFaVSKM3MUjhXH66iMsP/7BKF//2jEltejADmZuvWroqskL0lAXoXrYdtaEVfdqgVNROHDYT44RFqOQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Primitives.nuspec",
+ "lib/netcore50/System.Net.Primitives.dll",
+ "lib/DNXCore50/System.Net.Primitives.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.Primitives.dll",
+ "ref/dotnet/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Net.Primitives.xml",
+ "ref/dotnet/de/System.Net.Primitives.xml",
+ "ref/dotnet/fr/System.Net.Primitives.xml",
+ "ref/dotnet/it/System.Net.Primitives.xml",
+ "ref/dotnet/ja/System.Net.Primitives.xml",
+ "ref/dotnet/ko/System.Net.Primitives.xml",
+ "ref/dotnet/ru/System.Net.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Net.Primitives.xml",
+ "ref/dotnet/es/System.Net.Primitives.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/35760cf30d07403ca2158876043cbda3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Requests/4.0.10-beta-23106": {
+ "sha512": "ibpcX0vHNn6EUR33D3wv8zfCJDh+ZdDRer+E3aqXKp6NoMv/RQs3NOScYUAI8/uNgSUfuKfIi4FDkwtEqwxgDA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Requests.nuspec",
+ "lib/dotnet/System.Net.Requests.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.Requests.dll",
+ "ref/dotnet/System.Net.Requests.xml",
+ "ref/dotnet/zh-hant/System.Net.Requests.xml",
+ "ref/dotnet/de/System.Net.Requests.xml",
+ "ref/dotnet/fr/System.Net.Requests.xml",
+ "ref/dotnet/it/System.Net.Requests.xml",
+ "ref/dotnet/ja/System.Net.Requests.xml",
+ "ref/dotnet/ko/System.Net.Requests.xml",
+ "ref/dotnet/ru/System.Net.Requests.xml",
+ "ref/dotnet/zh-hans/System.Net.Requests.xml",
+ "ref/dotnet/es/System.Net.Requests.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/c7584aca45554523bf158d9cd4bfc869.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.Sockets/4.0.0-beta-23106": {
+ "sha512": "wHc8k2a1etI3rl98LkW2+vYNhTUHvVnRVKAA+FHYinKfdIBH9PCs8kEjgDufbCs/pCmkhbK7n91ekJHO1I/r1Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.Sockets.nuspec",
+ "lib/netcore50/System.Net.Sockets.dll",
+ "lib/net46/System.Net.Sockets.dll",
+ "ref/dotnet/System.Net.Sockets.dll",
+ "ref/dotnet/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hant/System.Net.Sockets.xml",
+ "ref/dotnet/de/System.Net.Sockets.xml",
+ "ref/dotnet/fr/System.Net.Sockets.xml",
+ "ref/dotnet/it/System.Net.Sockets.xml",
+ "ref/dotnet/ja/System.Net.Sockets.xml",
+ "ref/dotnet/ko/System.Net.Sockets.xml",
+ "ref/dotnet/ru/System.Net.Sockets.xml",
+ "ref/dotnet/zh-hans/System.Net.Sockets.xml",
+ "ref/dotnet/es/System.Net.Sockets.xml",
+ "ref/net46/System.Net.Sockets.dll",
+ "package/services/metadata/core-properties/77221152f7314d0290dfc6780f578e46.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Net.WebHeaderCollection/4.0.0-beta-23106": {
+ "sha512": "lw1CkMNZhsXxKlMei2r/WhJXN7PdSb5J7iiJN+vpStNnGObGPaz2rgvzZQCHnpApi+dSR9Mbbi4W/F8Wb2gcXA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Net.WebHeaderCollection.nuspec",
+ "lib/dotnet/System.Net.WebHeaderCollection.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Net.WebHeaderCollection.dll",
+ "ref/dotnet/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/de/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/fr/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/it/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ja/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ko/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/ru/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml",
+ "ref/dotnet/es/System.Net.WebHeaderCollection.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6007bdf3d9b64128932a45a014fce281.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Numerics.Vectors/4.1.0-beta-23106": {
+ "sha512": "k8xssGyVdxDi0Q15T/3TMcqypXw5z7fe3KF1e+NL6P+q7y6WQ7QaL9XYy+a36Kkbvgnfv6ekEIiH8Y17Q7aGZw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Numerics.Vectors.nuspec",
+ "lib/dotnet/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "ref/dotnet/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "package/services/metadata/core-properties/c5bb799b9fc34115a7bb53607989698f.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ObjectModel/4.0.10-beta-23106": {
+ "sha512": "AlBini72KPo++7XFrFwkUO2GPp9k3nIaQU7vHDmnvYv0Dq4kVf/+3Omy4ZqQtGQHTQ0jRPel2f+b/2fNG7Wieg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ObjectModel.nuspec",
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/f4dc33b8854f4e6a9182e71d0b64dece.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.0.0-beta-23106": {
+ "sha512": "7yGAuNKJp49E4sg8QGAJUKEFTFK8MTYlKsBtdRZfaV6oXMUtNhUby3jiookEMs8QktzUs+HHSSQjQJdeevNYHQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.DataContractSerialization.nuspec",
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll",
+ "lib/netcore50/System.Private.DataContractSerialization.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/f2fad965c58446f9bacd59f6b4a48654.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Networking/4.0.0-beta-23106": {
+ "sha512": "iqEcTZ7+Hmlpfwb8rg+FQ/F2bD7BjpWPHtTxHLLUN3vN3nSjHWt+Wug6aKa1mY6xubVkYEsUpQ/KSQmF2NKsQA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Networking.nuspec",
+ "lib/netcore50/System.Private.Networking.dll",
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/a7525983c017406bbfb431db7fb2bf5e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.ServiceModel/4.0.0-beta-23106": {
+ "sha512": "DRbPhyXKZ53D9pEnhvOEvusMlo7bskZElxWLqADNoShQln8ziSRWA+881gpBRCEX5jCbGo7iERcZYagpHUQOuw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.ServiceModel.nuspec",
+ "lib/netcore50/System.Private.ServiceModel.dll",
+ "lib/DNXCore50/System.Private.ServiceModel.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "package/services/metadata/core-properties/820dbbde2abe4da7910bba7bc8bb5ae7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Private.Uri/4.0.0-beta-23106": {
+ "sha512": "8zmc081m0YrbFgbbbVhcpuN+BPwYfah9z0B/9+9wesFfYRZ9kaRMGD/qEA3W9G8oofseAhAkR4ZSnoMjp36BVw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Private.Uri.nuspec",
+ "lib/netcore50/System.Private.Uri.dll",
+ "lib/DNXCore50/System.Private.Uri.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll",
+ "package/services/metadata/core-properties/5cda8304109f4749aab528f2ed1cec5e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection/4.0.10-beta-23106": {
+ "sha512": "jlwpnpeuKz/9Hc6E0mHR+uLazc6MR/+osOMAWw1sK7Ih6Fw3RXaG5bKZMgnpoolZbG/nsqaJE+MKf53t2VWKJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.nuspec",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.xml",
+ "ref/dotnet/zh-hant/System.Reflection.xml",
+ "ref/dotnet/de/System.Reflection.xml",
+ "ref/dotnet/fr/System.Reflection.xml",
+ "ref/dotnet/it/System.Reflection.xml",
+ "ref/dotnet/ja/System.Reflection.xml",
+ "ref/dotnet/ko/System.Reflection.xml",
+ "ref/dotnet/ru/System.Reflection.xml",
+ "ref/dotnet/zh-hans/System.Reflection.xml",
+ "ref/dotnet/es/System.Reflection.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/9d688ab470eb42ae8a1af6f56d429ed8.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Context/4.0.0-beta-23106": {
+ "sha512": "5+S0uWv7ch1JUpbzgvMciGlzOuJo+SEi1Jjba8SIXnkT6aF0aHCyiURwVqQDj8cII0IAf4UUrHDPm9zXsJI97w==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Context.nuspec",
+ "lib/netcore50/System.Reflection.Context.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.Reflection.Context.dll",
+ "ref/dotnet/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Context.xml",
+ "ref/dotnet/de/System.Reflection.Context.xml",
+ "ref/dotnet/fr/System.Reflection.Context.xml",
+ "ref/dotnet/it/System.Reflection.Context.xml",
+ "ref/dotnet/ja/System.Reflection.Context.xml",
+ "ref/dotnet/ko/System.Reflection.Context.xml",
+ "ref/dotnet/ru/System.Reflection.Context.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Context.xml",
+ "ref/dotnet/es/System.Reflection.Context.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Context.dll",
+ "ref/netcore50/System.Reflection.Context.xml",
+ "package/services/metadata/core-properties/bf32e0886e9b4fa08ba39357149cc080.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.DispatchProxy/4.0.0-beta-23106": {
+ "sha512": "k81NYVZrEygx73H0HkRxUO1Vwpw0Zl2H/DW9yIGHgYaeCOVkFepquoHDU35wFsTA30r7eXFdp+xSGJuPFLK8zg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.DispatchProxy.nuspec",
+ "lib/net46/System.Reflection.DispatchProxy.dll",
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll",
+ "lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "ref/dotnet/System.Reflection.DispatchProxy.dll",
+ "ref/dotnet/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/de/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/fr/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/it/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ja/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ko/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/ru/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml",
+ "ref/dotnet/es/System.Reflection.DispatchProxy.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
+ "runtime.json",
+ "package/services/metadata/core-properties/b4ee8b9c1c684c99b009dd16f9e8a46c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit/4.0.0-beta-23106": {
+ "sha512": "jrpx6vch/g7Dow9D3fB7xPkYRmoZDRdwli6jgbm1i4YDum5CL9zxsMvocIixG8EE7IbXdDSaxrB2q4fpOceMEg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.dll",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/net45/_._",
+ "ref/dotnet/System.Reflection.Emit.dll",
+ "ref/dotnet/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
+ "ref/dotnet/de/System.Reflection.Emit.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.xml",
+ "ref/dotnet/it/System.Reflection.Emit.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
+ "ref/dotnet/es/System.Reflection.Emit.xml",
+ "ref/net45/_._",
+ "package/services/metadata/core-properties/b53bcaeeac444034b6089d737ecac06b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0-beta-23106": {
+ "sha512": "PjQMuALxRkv0VaP+89NmfVdErwyimZo4D+LgfRssjyVuLp97WO5vhsa4a0C6K+AIXNSPl1Y5nY0SfrlvOeozxw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.ILGeneration.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/7afe3e944bfa413abd9a97611237609c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0-beta-23106": {
+ "sha512": "Tb+uqTG00NsZOKvxkedn+3emi0ozlSoM6eCeDm5qyPkZLj/qxSfiYOVqjBIQrdM9CTy4BOpeFJwxlWpdguMgvQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Emit.Lightweight.nuspec",
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/net45/_._",
+ "lib/wp80/_._",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll",
+ "ref/dotnet/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/net45/_._",
+ "ref/wp80/_._",
+ "package/services/metadata/core-properties/9ade939e22b743e099c9cdb123dfecf3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.0-beta-23106": {
+ "sha512": "pZUERDlwtdOCTcRhjZSoq8G6bSw4X1iyasaq/CqC2+EP0A2NnHkHjpuwLrUeWaIt9QtiisVxBiwq62oLTZHJjQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Extensions.nuspec",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Extensions.dll",
+ "ref/dotnet/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
+ "ref/dotnet/de/System.Reflection.Extensions.xml",
+ "ref/dotnet/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet/it/System.Reflection.Extensions.xml",
+ "ref/dotnet/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet/es/System.Reflection.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/8df91ec744ca47cba9bb9ed1e154ec73.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Metadata/1.0.22-beta-23106": {
+ "sha512": "1AUUvxR4j18EHZgTICgqdEld4Qp90F9wExTX8a1KMWXKZPS8FzNPNJeHycMRVg0395DwSe0KqJx5hb7i7NARnQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Metadata.nuspec",
+ "lib/dotnet/System.Reflection.Metadata.dll",
+ "lib/dotnet/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "package/services/metadata/core-properties/eeae52e43a6f47419c6ed4e3d9d9cce5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0-beta-23106": {
+ "sha512": "nOlCR3qXrpfToSq7Z+nFkt8yjGN3CNyz34JVWXXBrALqgg09vnsvUIlQzqiWTvE8LDBKIVTskT5bHL+0btX6zw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.Primitives.nuspec",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Reflection.Primitives.dll",
+ "ref/dotnet/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
+ "ref/dotnet/de/System.Reflection.Primitives.xml",
+ "ref/dotnet/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet/it/System.Reflection.Primitives.xml",
+ "ref/dotnet/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet/es/System.Reflection.Primitives.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f5b2ed5bd01d47cfb8a63ca2936a623e.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.0-beta-23106": {
+ "sha512": "CAAvEZl2EURbPQEhZ3Eh3/VzsV7zGFBjbv/cflWnrhw1xSQ5KdA/hstqkNCXKpTH791IuWmc0t6cEFgRUiB9UA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Reflection.TypeExtensions.nuspec",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.dll",
+ "ref/dotnet/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "package/services/metadata/core-properties/a19d217af17f4e4e9739703ab7d0ee5a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Resources.ResourceManager/4.0.0-beta-23106": {
+ "sha512": "1igID8DOpxK4ZZjQT64xtnj9ZrYP6aSAKCYVmnRyqRpZqjvSg4y8vTukNpa9Z6ZcHMhCynSuhJK1lRVglxEDFA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Resources.ResourceManager.nuspec",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
+ "ref/dotnet/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/dotnet/de/System.Resources.ResourceManager.xml",
+ "ref/dotnet/fr/System.Resources.ResourceManager.xml",
+ "ref/dotnet/it/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ja/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ko/System.Resources.ResourceManager.xml",
+ "ref/dotnet/ru/System.Resources.ResourceManager.xml",
+ "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/dotnet/es/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/4446bf8886334dc098e23989368b245d.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime/4.0.20-beta-23106": {
+ "sha512": "J/xLQkCm+SKmFVGgXugVcyAiDyDAHV7tayhK0ntgH5GS6+zIcRNJKKeUTu2xyJX9Jgw2V4Y6vUqFdn7LL33atg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.nuspec",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.dll",
+ "ref/dotnet/System.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.xml",
+ "ref/dotnet/de/System.Runtime.xml",
+ "ref/dotnet/fr/System.Runtime.xml",
+ "ref/dotnet/it/System.Runtime.xml",
+ "ref/dotnet/ja/System.Runtime.xml",
+ "ref/dotnet/ko/System.Runtime.xml",
+ "ref/dotnet/ru/System.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.xml",
+ "ref/dotnet/es/System.Runtime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/da73a9c6f83e4863bc08a77f3eb83613.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.10-beta-23106": {
+ "sha512": "EuARSd4k87Ul34YDgBFi1q7e12jM/jc2I63Js1QPRTOKdvhzlxIIJx3G4xzCAPvWZIN8uf4adxV5TONZ5FJ3XA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Extensions.nuspec",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Extensions.dll",
+ "ref/dotnet/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet/de/System.Runtime.Extensions.xml",
+ "ref/dotnet/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet/it/System.Runtime.Extensions.xml",
+ "ref/dotnet/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet/es/System.Runtime.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/46f3b08e5708494dbf4dbe1b13613fe6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0-beta-23106": {
+ "sha512": "HpEy5mCPvDL+Bj5X63dpmmamTLRyRgrCny9fJ9Z4RWuxOwVbor0FSqdqKyfNvFnjCr3jAdhAg+mKN/43AKWEAw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Handles.nuspec",
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/c15cd660a13e4f86a14ed72f3dcd8de1.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-23106": {
+ "sha512": "kfg/YMDY7sffqw9+r24WU5HuLRC4IBXTgvEDGyZHieENKBUnAhCryqCA9siqN8AvJlnmPDMeEhSWeRL9SR6P/Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.nuspec",
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/80aae8e9c2c64e1da3a5d0b0737b6ee9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.0-beta-23106": {
+ "sha512": "UOOzjO+erGH3HlP3YliO2c9PAKNhlWz7toV2ICOyfdVrCS6qduBdUxDaYtw0zKGuvrxj0ZMhp0Jn7GZzpmB0vQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f53bcc1d77214589ae159c2be9ca9dbf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Numerics/4.0.0-beta-23106": {
+ "sha512": "rZUyoYej0ucrmIth/pTDsSeam+l/dQgPB7v50RYBqswzhktjkfSrhQoCnRswKT6kVMwDERTP/GG7RCA1w91dmQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Numerics.nuspec",
+ "lib/dotnet/System.Runtime.Numerics.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Runtime.Numerics.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Numerics.dll",
+ "ref/dotnet/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Numerics.xml",
+ "ref/dotnet/de/System.Runtime.Numerics.xml",
+ "ref/dotnet/fr/System.Runtime.Numerics.xml",
+ "ref/dotnet/it/System.Runtime.Numerics.xml",
+ "ref/dotnet/ja/System.Runtime.Numerics.xml",
+ "ref/dotnet/ko/System.Runtime.Numerics.xml",
+ "ref/dotnet/ru/System.Runtime.Numerics.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Numerics.xml",
+ "ref/dotnet/es/System.Runtime.Numerics.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Numerics.dll",
+ "ref/netcore50/System.Runtime.Numerics.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/24464de74d7f4d719a646b95743a2001.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Json/4.0.0-beta-23106": {
+ "sha512": "oQhGKdmfginWAFOElK87+CUyTRxwKx/G22PE1ctioTdb41S4ehuJg37hoM3HshJIhF6OhqQ9gY5wB+8bIHuZcA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Json.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Json.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.Serialization.Json.dll",
+ "ref/dotnet/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Json.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/netcore50/System.Runtime.Serialization.Json.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/6d123d3eb0094041a5a29c79eaceeef3.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.10-beta-23106": {
+ "sha512": "AJl0dVozkZTE0iAaXIZjRfuBxtu/6VbLLHuyWfww5Z8LEe8Nw0vRzoa3wRN4XfHy5tqlujB1Tq1fsAxI2zF76Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Primitives.nuspec",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/985506fdb2f14a8c97718bf9e2d4f54b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Serialization.Xml/4.0.10-beta-23106": {
+ "sha512": "A2DmSziwYau8dxH1FZgFxXWraFLIKbE8bl+jsNUfFbd/8kI4uUItoEINQl7B451V+aStgHI4Ksbxy7WJV2cTZQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Serialization.Xml.nuspec",
+ "lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll",
+ "ref/dotnet/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/de/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/it/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml",
+ "ref/dotnet/es/System.Runtime.Serialization.Xml.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/9f398d259732466db85777c747b1adc0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime/4.0.10-beta-23106": {
+ "sha512": "WDWWdz4HVxK5jqAjBW66DUJ9RT2ZP3uTUPTip4QX9pjf5TUweSBlfaBfa8yqbDatDBjkIrf1yQQNpedCcGxDgQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/win81/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/f178e37fa62c486dbb2e4a388aafa46b.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0-beta-23106": {
+ "sha512": "1LvZWF4oa3hgOyEeRJLSNY2dB6aoukYK/tozymxgF+k9bLAMBhgM1pdYi/VNcIF2eZobkF2xF9Nrx7SIeUDHJg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
+ "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/win8/_._",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
+ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/2dc5faa929804f9281c5a3dbc4ee8eff.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Claims/4.0.0-beta-23106": {
+ "sha512": "c0O3FFVFj6bdi1J+qCKRZgLIr3aGn+j1d1u0vL4PjeMoWiff1uJVbRooE3shkx+/WefqWYCJHhQVeJuK733TUw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Claims.nuspec",
+ "lib/dotnet/System.Security.Claims.dll",
+ "lib/net46/System.Security.Claims.dll",
+ "ref/dotnet/System.Security.Claims.dll",
+ "ref/dotnet/System.Security.Claims.xml",
+ "ref/dotnet/zh-hant/System.Security.Claims.xml",
+ "ref/dotnet/de/System.Security.Claims.xml",
+ "ref/dotnet/fr/System.Security.Claims.xml",
+ "ref/dotnet/it/System.Security.Claims.xml",
+ "ref/dotnet/ja/System.Security.Claims.xml",
+ "ref/dotnet/ko/System.Security.Claims.xml",
+ "ref/dotnet/ru/System.Security.Claims.xml",
+ "ref/dotnet/zh-hans/System.Security.Claims.xml",
+ "ref/dotnet/es/System.Security.Claims.xml",
+ "ref/net46/System.Security.Claims.dll",
+ "package/services/metadata/core-properties/cf70091e08d241449452c9ee811b83c7.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Security.Principal/4.0.0-beta-23106": {
+ "sha512": "EB8T/MdUTB1y5lnWTRozPgoCe671zvJ5WEb7famYIDFSssa2LTuSHMY/giLqGp2UZRPNjpDuJJ2bW9OTkZyXBg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Security.Principal.nuspec",
+ "lib/dotnet/System.Security.Principal.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Security.Principal.dll",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Security.Principal.dll",
+ "ref/dotnet/System.Security.Principal.xml",
+ "ref/dotnet/zh-hant/System.Security.Principal.xml",
+ "ref/dotnet/de/System.Security.Principal.xml",
+ "ref/dotnet/fr/System.Security.Principal.xml",
+ "ref/dotnet/it/System.Security.Principal.xml",
+ "ref/dotnet/ja/System.Security.Principal.xml",
+ "ref/dotnet/ko/System.Security.Principal.xml",
+ "ref/dotnet/ru/System.Security.Principal.xml",
+ "ref/dotnet/zh-hans/System.Security.Principal.xml",
+ "ref/dotnet/es/System.Security.Principal.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Security.Principal.dll",
+ "ref/netcore50/System.Security.Principal.xml",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/e4fc722a7b8e4ed7b68fdd20ef084ffc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Duplex/4.0.0-beta-23106": {
+ "sha512": "EOZg57Q6gsBM8yKmTBPxM53Yq2ELamtWSMN1z2rOv4T/IquiffUWidrpcM7XJoBfWseYtK5dhU0fPa9JEjgfpQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Duplex.nuspec",
+ "lib/netcore50/System.ServiceModel.Duplex.dll",
+ "lib/DNXCore50/System.ServiceModel.Duplex.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Duplex.dll",
+ "ref/dotnet/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/de/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/fr/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/it/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ja/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ko/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/ru/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml",
+ "ref/dotnet/es/System.ServiceModel.Duplex.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Duplex.dll",
+ "ref/netcore50/System.ServiceModel.Duplex.xml",
+ "package/services/metadata/core-properties/26d515bbc6e04fb4b9eec8d5c47f3de5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Http/4.0.10-beta-23106": {
+ "sha512": "4IXt3gRA8nVR/nG0iCGI99mdLgAbyxLNIQ8ymSvg/4Cm2tER0NKQknewQG61C17UDxLUIfBsz7JHpQz4RD9qEg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Http.nuspec",
+ "lib/netcore50/System.ServiceModel.Http.dll",
+ "lib/DNXCore50/System.ServiceModel.Http.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.ServiceModel.Http.dll",
+ "ref/dotnet/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Http.xml",
+ "ref/dotnet/de/System.ServiceModel.Http.xml",
+ "ref/dotnet/fr/System.ServiceModel.Http.xml",
+ "ref/dotnet/it/System.ServiceModel.Http.xml",
+ "ref/dotnet/ja/System.ServiceModel.Http.xml",
+ "ref/dotnet/ko/System.ServiceModel.Http.xml",
+ "ref/dotnet/ru/System.ServiceModel.Http.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Http.xml",
+ "ref/dotnet/es/System.ServiceModel.Http.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/20c9be0230964a5191fb81766c4d0ccf.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.NetTcp/4.0.0-beta-23106": {
+ "sha512": "u2lnUen71IErVBZakJeTZvi3CBH5iPFQOnz+iJLGCDzgvtosZyCSoYJLIWQBTNKfTmBO7wpQbuJL/bmH1rFwzA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.NetTcp.nuspec",
+ "lib/netcore50/System.ServiceModel.NetTcp.dll",
+ "lib/DNXCore50/System.ServiceModel.NetTcp.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.NetTcp.dll",
+ "ref/dotnet/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/de/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/fr/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/it/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ja/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ko/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/ru/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml",
+ "ref/dotnet/es/System.ServiceModel.NetTcp.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.NetTcp.dll",
+ "ref/netcore50/System.ServiceModel.NetTcp.xml",
+ "package/services/metadata/core-properties/be7fee24fb1940639c1047c8866932d6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Primitives/4.0.0-beta-23106": {
+ "sha512": "4jc1vMZaiMVW0//IJqm8mjUHwA4SqNUlIwIP2b0XdXQ3QfzOAhjTBI0Xp7Psj0U+uuLTJgXap96gRmlAQmBCVQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Primitives.nuspec",
+ "lib/netcore50/System.ServiceModel.Primitives.dll",
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Primitives.dll",
+ "ref/dotnet/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/de/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/fr/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/it/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ja/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ko/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/ru/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml",
+ "ref/dotnet/es/System.ServiceModel.Primitives.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Primitives.dll",
+ "ref/netcore50/System.ServiceModel.Primitives.xml",
+ "package/services/metadata/core-properties/65c4a6ec2bcc4d658d07ba4043f48d19.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.ServiceModel.Security/4.0.0-beta-23106": {
+ "sha512": "2I2FrNHpfcL6K9yLypldzV4hljJxlU8laA74kFCAUpNPEjqdn1XQKvOuzX1qlim6Qa7tUayp+8OgGDb53Xnyig==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.ServiceModel.Security.nuspec",
+ "lib/netcore50/System.ServiceModel.Security.dll",
+ "lib/DNXCore50/System.ServiceModel.Security.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "ref/dotnet/System.ServiceModel.Security.dll",
+ "ref/dotnet/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hant/System.ServiceModel.Security.xml",
+ "ref/dotnet/de/System.ServiceModel.Security.xml",
+ "ref/dotnet/fr/System.ServiceModel.Security.xml",
+ "ref/dotnet/it/System.ServiceModel.Security.xml",
+ "ref/dotnet/ja/System.ServiceModel.Security.xml",
+ "ref/dotnet/ko/System.ServiceModel.Security.xml",
+ "ref/dotnet/ru/System.ServiceModel.Security.xml",
+ "ref/dotnet/zh-hans/System.ServiceModel.Security.xml",
+ "ref/dotnet/es/System.ServiceModel.Security.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.ServiceModel.Security.dll",
+ "ref/netcore50/System.ServiceModel.Security.xml",
+ "package/services/metadata/core-properties/70adcd646ef24dfcb536556d2c15d4d9.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding/4.0.10-beta-23106": {
+ "sha512": "JTF8153jIwE4VwMo5O1o44eGtpVL8qK8KZf6OWueE2AFhcchyLmYoXMHbbfk9Gaxg8DU8JUYVf+cXBdolt9C+A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.nuspec",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6221a8d8917940fb95e0e100c2960c69.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.0.0-beta-23106": {
+ "sha512": "Pi64qTjyINI1vIXhzhGJKew5+8duWTDP0WLxMOZnM8k69skZg+dhXt8kobddCiZytYMCXoC/5F2l+GIDh7QcRg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.CodePages.nuspec",
+ "lib/dotnet/System.Text.Encoding.CodePages.dll",
+ "ref/dotnet/System.Text.Encoding.CodePages.dll",
+ "ref/dotnet/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/de/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/fr/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/it/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ja/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ko/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/ru/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/dotnet/es/System.Text.Encoding.CodePages.xml",
+ "package/services/metadata/core-properties/954b1f8d6b3b437d98a19c28e6455efb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.0.10-beta-23106": {
+ "sha512": "zMxXXIkeAuySfWrBdN2MDry2Kmi0Htnxf764lKutN6vzNwN1mOcD0l8KO6kzSljzTJPF4nVcSFOCRb2DVxNXVg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.Encoding.Extensions.nuspec",
+ "lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.Encoding.Extensions.dll",
+ "ref/dotnet/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/71378309a75a44649b951fc37b99ea81.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Text.RegularExpressions/4.0.10-beta-23106": {
+ "sha512": "JjisR+L5NMfjf2NJE2eC7LaIT6xBxniAGrD9Yxh5jsRlczVRn0v4bvIhzLthXPbkuPxYsGBmK8ipkIMJun4Yow==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Text.RegularExpressions.nuspec",
+ "lib/dotnet/System.Text.RegularExpressions.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Text.RegularExpressions.dll",
+ "ref/dotnet/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet/es/System.Text.RegularExpressions.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/b4b848fb2a6a4870aca5cc0b136af4bb.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading/4.0.10-beta-23106": {
+ "sha512": "DopL8QQymbzkT7rsu5f9Vg9ef8c9EQh7qRXW1RMOy7/C82IPbbXquJBojKbMcqPkKgUfZKguryP40WAxDo1Aqg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.nuspec",
+ "lib/DNXCore50/System.Threading.dll",
+ "lib/netcore50/System.Threading.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Threading.dll",
+ "ref/dotnet/System.Threading.xml",
+ "ref/dotnet/zh-hant/System.Threading.xml",
+ "ref/dotnet/de/System.Threading.xml",
+ "ref/dotnet/fr/System.Threading.xml",
+ "ref/dotnet/it/System.Threading.xml",
+ "ref/dotnet/ja/System.Threading.xml",
+ "ref/dotnet/ko/System.Threading.xml",
+ "ref/dotnet/ru/System.Threading.xml",
+ "ref/dotnet/zh-hans/System.Threading.xml",
+ "ref/dotnet/es/System.Threading.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/d435264688c741e79c6b32e7817cc9c4.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Overlapped/4.0.0-beta-23106": {
+ "sha512": "85jPKjIdvNwejBt8QSbS1+S+x37WJaIpc1L3m4UCG2NHNqbWVKwGJBtm7YcVoLDRzOxAjFl5/xWVcr2Cf9HdJQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Overlapped.nuspec",
+ "lib/netcore50/System.Threading.Overlapped.dll",
+ "lib/DNXCore50/System.Threading.Overlapped.dll",
+ "lib/net46/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.dll",
+ "ref/dotnet/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
+ "ref/dotnet/de/System.Threading.Overlapped.xml",
+ "ref/dotnet/fr/System.Threading.Overlapped.xml",
+ "ref/dotnet/it/System.Threading.Overlapped.xml",
+ "ref/dotnet/ja/System.Threading.Overlapped.xml",
+ "ref/dotnet/ko/System.Threading.Overlapped.xml",
+ "ref/dotnet/ru/System.Threading.Overlapped.xml",
+ "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
+ "ref/dotnet/es/System.Threading.Overlapped.xml",
+ "ref/net46/System.Threading.Overlapped.dll",
+ "package/services/metadata/core-properties/f8993666a36b48959925a0cea1ea3849.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10-beta-23106": {
+ "sha512": "qXWbc75PdnrWeR3zNyH8yAfDAIHsibkXv/Tey3w/s9uU2QRFsnqD6QzjFqYHk1HHUipN1QIsfzMIw0+9BR8sHw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.nuspec",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/6ffef357bd6a420982aa3f6eb7cc9748.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Dataflow/4.5.25-beta-23106": {
+ "sha512": "L1Z4dGLQKu2cyYVRfOkEA0vziXW/aq704KhLGJIqdC9ryususWoAgKJXyeO9fFFw6ies2u966/UK0qTT+XyzDw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Dataflow.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.dll",
+ "lib/dotnet/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll",
+ "package/services/metadata/core-properties/e7a71f6bd0054d13b5c13f0b264a8ac6.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Tasks.Parallel/4.0.0-beta-23106": {
+ "sha512": "L5PD8PFFG5WRpp2fFE8Xbkjcd08GwS6ET0ph7Pz+Gl9st/Q7e9+OJ3urX92b0P37vcruVJAdbpxjJpOdo6NI1Q==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Tasks.Parallel.nuspec",
+ "lib/dotnet/System.Threading.Tasks.Parallel.dll",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/netcore50/System.Threading.Tasks.Parallel.dll",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Tasks.Parallel.dll",
+ "ref/dotnet/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/de/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/it/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml",
+ "ref/dotnet/es/System.Threading.Tasks.Parallel.xml",
+ "ref/net45/_._",
+ "ref/win8/_._",
+ "ref/netcore50/System.Threading.Tasks.Parallel.dll",
+ "ref/netcore50/System.Threading.Tasks.Parallel.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/c4f906c2c0aa4ad08e228c71feac4344.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Threading.Timer/4.0.0-beta-23106": {
+ "sha512": "OhE9/OTzQf23Wd/RGl3hRj3/sW2Jx6jauFEDkTcClScnJAWxIbnttadWuXf8BFFmmuj34RAX7eK0a4UdCnJu1A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Threading.Timer.nuspec",
+ "lib/netcore50/System.Threading.Timer.dll",
+ "lib/DNXCore50/System.Threading.Timer.dll",
+ "lib/net451/_._",
+ "lib/win81/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Threading.Timer.dll",
+ "ref/dotnet/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hant/System.Threading.Timer.xml",
+ "ref/dotnet/de/System.Threading.Timer.xml",
+ "ref/dotnet/fr/System.Threading.Timer.xml",
+ "ref/dotnet/it/System.Threading.Timer.xml",
+ "ref/dotnet/ja/System.Threading.Timer.xml",
+ "ref/dotnet/ko/System.Threading.Timer.xml",
+ "ref/dotnet/ru/System.Threading.Timer.xml",
+ "ref/dotnet/zh-hans/System.Threading.Timer.xml",
+ "ref/dotnet/es/System.Threading.Timer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll",
+ "ref/net451/_._",
+ "ref/win81/_._",
+ "ref/netcore50/System.Threading.Timer.dll",
+ "ref/netcore50/System.Threading.Timer.xml",
+ "ref/wpa81/_._",
+ "package/services/metadata/core-properties/d13b77603b8f44aa99d9ca288d9f4fda.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.0.10-beta-23106": {
+ "sha512": "04TvN532OQysbnLrmhdderWxFWpEj2/4xXWEsFQHJ53MMDVR8tWILY9mTqF9sxdLkw4p7Lh6x2HAvetPFP/TtA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.ReaderWriter.nuspec",
+ "lib/dotnet/System.Xml.ReaderWriter.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.ReaderWriter.dll",
+ "ref/dotnet/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/de/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/fr/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/it/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ja/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ko/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/ru/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/dotnet/es/System.Xml.ReaderWriter.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/2c57a7880d344cfb97ace09e13258e59.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XDocument/4.0.10-beta-23106": {
+ "sha512": "KMxXSyx1tZh22QVrXSaCtdtNsDz9jdv/PvrTLfYAlSdWK/fWe1IK5FsNoS+RNj94ZAuLwLp9W5myRrZMZ1iFSw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XDocument.nuspec",
+ "lib/dotnet/System.Xml.XDocument.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.XDocument.dll",
+ "ref/dotnet/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XDocument.xml",
+ "ref/dotnet/de/System.Xml.XDocument.xml",
+ "ref/dotnet/fr/System.Xml.XDocument.xml",
+ "ref/dotnet/it/System.Xml.XDocument.xml",
+ "ref/dotnet/ja/System.Xml.XDocument.xml",
+ "ref/dotnet/ko/System.Xml.XDocument.xml",
+ "ref/dotnet/ru/System.Xml.XDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XDocument.xml",
+ "ref/dotnet/es/System.Xml.XDocument.xml",
+ "ref/net46/_._",
+ "package/services/metadata/core-properties/f9712e14298a4edd92916c22f7184760.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlDocument/4.0.0-beta-23106": {
+ "sha512": "quRfoWi4tHLA1INcpiFduzMSUVqWT8O8kJJsydY1b8K9trHtXQ1UGpZDx+4enIPpy1/vz1fE6qA4MxkC87IUjQ==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlDocument.nuspec",
+ "lib/dotnet/System.Xml.XmlDocument.dll",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "ref/dotnet/System.Xml.XmlDocument.dll",
+ "ref/dotnet/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml",
+ "ref/dotnet/de/System.Xml.XmlDocument.xml",
+ "ref/dotnet/fr/System.Xml.XmlDocument.xml",
+ "ref/dotnet/it/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ja/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ko/System.Xml.XmlDocument.xml",
+ "ref/dotnet/ru/System.Xml.XmlDocument.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml",
+ "ref/dotnet/es/System.Xml.XmlDocument.xml",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "package/services/metadata/core-properties/101e3cb24bbe45069e9b9513d525cd78.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.0.10-beta-23106": {
+ "sha512": "RHpHZGG7soaaSUhaUKk42xv7QcQy7E6AYS5uSHhHrRszHTqzD2t0MukF1ILX+OTE3id3xhCdT5E4nNh6KgSiwA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "System.Xml.XmlSerializer.nuspec",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/DNXCore50/System.Xml.XmlSerializer.dll",
+ "lib/net46/_._",
+ "ref/dotnet/System.Xml.XmlSerializer.dll",
+ "ref/dotnet/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/de/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/fr/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/it/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ja/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ko/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/ru/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/dotnet/es/System.Xml.XmlSerializer.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/net46/_._",
+ "runtime.json",
+ "package/services/metadata/core-properties/d8f5eae3fb504da294ba3795c1cbd6ca.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit/2.1.0-beta3-build3029": {
+ "sha512": "NMFXV0ePe/GrfhMSPGAlWmiUZCzjaatpdAGcavf2B6vYTRyMTpyJT01LI6jemMV/VSDXLrtHp0Ov9xZyR1cLLg==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.nuspec",
+ "package/services/metadata/core-properties/d8f65b6e50974443be49b52c7aaafb11.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit.abstractions/2.0.0": {
+ "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.abstractions.nuspec",
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
+ "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit.assert/2.1.0-beta3-build3029": {
+ "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.assert.nuspec",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml",
+ "package/services/metadata/core-properties/38c52763215f45f28d084a9c1b6e4fa2.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit.core/2.1.0-beta3-build3029": {
+ "sha512": "uDUBbwZSRx226BMwj6VylzXQPVpEIelNIulT+LxbSEH52y2a4btR9d5ptQmkSVjmJXP5/hGCc4cu1DSCu0pgUA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.core.nuspec",
+ "build/_Desktop/xunit.execution.desktop.dll",
+ "build/monoandroid/xunit.core.props",
+ "build/monoandroid/xunit.execution.MonoAndroid.dll",
+ "build/monotouch/xunit.core.props",
+ "build/monotouch/xunit.execution.MonoTouch.dll",
+ "build/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.props",
+ "build/portable-win81+wpa81/xunit.core.props",
+ "build/portable-win81+wpa81/xunit.core.targets",
+ "build/portable-win81+wpa81/xunit.execution.universal.dll",
+ "build/portable-win81+wpa81/xunit.execution.universal.pri",
+ "build/wp8/xunit.core.props",
+ "build/wp8/xunit.core.targets",
+ "build/wp8/xunit.execution.wp8.dll",
+ "build/Xamarin.iOS/xunit.core.props",
+ "build/Xamarin.iOS/xunit.execution.iOS-Universal.dll",
+ "package/services/metadata/core-properties/7cc532c455474d1dac8f8b0cfe0b3522.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit.extensibility.core/2.1.0-beta3-build3029": {
+ "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.extensibility.core.nuspec",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll",
+ "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll",
+ "package/services/metadata/core-properties/40eb326fb1ea4e05a77fef0e7c6571cc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "xunit.runner.visualstudio/2.1.0-beta3-build1069": {
+ "sha512": "92eZ9UC6ap+/mJ/QoRZD/O0sPsKjyIm7bqngYgL42ZHESwMtm3IETSVAaKSZcOjKQsNgwLmAisCwoj4rd9okdA==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "xunit.runner.visualstudio.nuspec",
+ "build/_common/xunit.abstractions.dll",
+ "build/_common/xunit.runner.utility.desktop.dll",
+ "build/_common/xunit.runner.visualstudio.testadapter.dll",
+ "build/_universal/xunit.runner.utility.universal.dll",
+ "build/_universal/xunit.runner.utility.universal.pri",
+ "build/net20/xunit.runner.visualstudio.props",
+ "build/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid/xunit.runner.visualstudio.props",
+ "build/win81/xunit.runner.visualstudio.props",
+ "build/win81/xunit.runner.visualstudio.targets",
+ "build/win81/xunit.runner.visualstudio.win81.dll",
+ "build/win81/xunit.runner.visualstudio.win81.pri",
+ "build/wpa81/xunit.runner.visualstudio.props",
+ "build/wpa81/xunit.runner.visualstudio.targets",
+ "build/wpa81/xunit.runner.visualstudio.wpa81.dll",
+ "build/wpa81/xunit.runner.visualstudio.wpa81.pri",
+ "package/services/metadata/core-properties/eb07e432cb334e4f84145c811f8135fd.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "Microsoft.NETCore.UniversalWindowsPlatform >= 1.0.0-beta-23106",
+ "xunit >= 2.1.0-beta3-build3029",
+ "xunit.runner.visualstudio >= 2.1.0-beta3-build1069"
+ ],
+ ".NETCore,Version=v5.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json
new file mode 100644
index 0000000..cc0eb2e
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json
@@ -0,0 +1,201 @@
+{
+ "locked": false,
+ "version": -9996,
+ "targets": {
+ ".NETCore,Version=v5.0": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+},
+ "System.Runtime.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64-aot": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86-aot": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "frameworkAssemblies": [
+ "System"
+ ]
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AnalyzerPowerPack/1.0.0": {
+ "sha512": "lpBEoZTUdDgs41plPw9X9pmbLCsdqchE0bY0+Nvxo07WxXR76O26MP6Buo46tkCiY1yX6vYEjN7PKX1sAnZ+1A==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.AnalyzerPowerPack.nuspec",
+ "analyzers/dotnet/cs/Microsoft.AnalyzerPowerPack.Common.dll",
+ "analyzers/dotnet/cs/Microsoft.AnalyzerPowerPack.CSharp.dll",
+ "analyzers/dotnet/vb/Microsoft.AnalyzerPowerPack.Common.dll",
+ "analyzers/dotnet/vb/Microsoft.AnalyzerPowerPack.VisualBasic.dll",
+ "build/AnalyzerPowerPack.props",
+ "build/AnalyzerPowerPack.Common.props",
+ "build/AnalyzerPowerPack.CSharp.props",
+ "build/AnalyzerPowerPack.VisualBasic.props",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "ThirdPartyNotices.rtf",
+ "package/services/metadata/core-properties/5573a86c260446399d8bf7377b1ee14c.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/1.0.0": {
+ "sha512": "Wr4wqjbnr4IWe1q11PQ2iUdvrBiasGt2XSiwHFdQJdl2TOfG5cKhGuQxr5s/wURRTCgNjIejlbRlGo7U+iB2zA==",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.CodeAnalysis.Analyzers.nuspec",
+ "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
+ "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
+ "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
+ "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "ThirdPartyNotices.rtf",
+ "package/services/metadata/core-properties/13e529baccc44c33b03965c3db1bd9cc.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.Analyzers/1.0.0": {
+ "sha512": "MnO/DOJigl4DUnaF3gJWmX6Xr2z7ejJRkdvllH7ljRSqcXj5091HVzyEiX/98HFYTbi1IRml+mu4kG4hygrP+A==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.Analyzers.nuspec",
+ "analyzers/dotnet/cs/System.Runtime.Analyzers.dll",
+ "analyzers/dotnet/cs/System.Runtime.CSharp.Analyzers.dll",
+ "analyzers/dotnet/vb/System.Runtime.Analyzers.dll",
+ "analyzers/dotnet/vb/System.Runtime.VisualBasic.Analyzers.dll",
+ "build/System.Runtime.Analyzers.props",
+ "build/System.Runtime.Analyzers.Common.props",
+ "build/System.Runtime.CSharp.Analyzers.props",
+ "build/System.Runtime.VisualBasic.Analyzers.props",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "ThirdPartyNotices.rtf",
+ "package/services/metadata/core-properties/26f8afd54b99434388056543bd1d55d0.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "System.Runtime.InteropServices.Analyzers/1.0.0": {
+ "sha512": "DUHZ0yl7qnI3i5e/wVODDO2aIezTnJ4EvdKZudJn9yNToN9gdMNNTZgjl3rOLcxHIVI8OWQW0WuoqUL7x5sKKg==",
+ "files": [
+ "_rels/.rels",
+ "System.Runtime.InteropServices.Analyzers.nuspec",
+ "analyzers/dotnet/cs/System.Runtime.InteropServices.Analyzers.dll",
+ "analyzers/dotnet/cs/System.Runtime.InteropServices.CSharp.Analyzers.dll",
+ "analyzers/dotnet/vb/System.Runtime.InteropServices.Analyzers.dll",
+ "analyzers/dotnet/vb/System.Runtime.InteropServices.VisualBasic.Analyzers.dll",
+ "build/System.Runtime.InteropServices.Analyzers.props",
+ "build/System.Runtime.InteropServices.Analyzers.Common.props",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "ThirdPartyNotices.rtf",
+ "package/services/metadata/core-properties/70736d925f2649508a5ffd07c1fc71f5.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "Microsoft.AnalyzerPowerPack [1.0.0, )",
+ "Microsoft.CodeAnalysis.Analyzers [1.0.0, )",
+ "System.Runtime.Analyzers [1.0.0, )",
+ "System.Runtime.InteropServices.Analyzers [1.0.0, )"
+ ],
+ ".NETCore,Version=v5.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json
new file mode 100644
index 0000000..d358a1d
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json
@@ -0,0 +1,131 @@
+{
+ "locked": false,
+ "version": 1,
+ "targets": {
+ ".NETCore,Version=v5.0": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-arm": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-arm-aot": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "native": {
+ "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x86-aot": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "native": {
+ "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {}
+ }
+ }
+ },
+ ".NETCore,Version=v5.0/win10-x64-aot": {
+ "Microsoft.NETCore.Platforms/1.0.0": {},
+ "Win2D/0.0.23-local": {
+ "compile": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "runtime": {
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd": {}
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.NETCore.Platforms/1.0.0": {
+ "sha512": "rzZy74xWhF7qnkM20rGRN6ZGfCi1uFni6t+5BApjYyLHHI6cwXGikzBhAZ54Vb1qbqETVt2NrTwTd/qDDvaK0A==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Microsoft.NETCore.Platforms.nuspec",
+ "runtime.json",
+ "package/services/metadata/core-properties/cb27f3417ae44d86a32d013b3c57f71a.psmdcp",
+ "[Content_Types].xml"
+ ]
+ },
+ "Win2D/0.0.23-local": {
+ "sha512": "+pedaGbgsnwa9Q2HwCTYOuXTckbXAO8yWXFrl+5mgB5wws4rez0UDSrYwSrsdaBqnXF7XtZVFjYZ2N2RG4fs8g==",
+ "type": "Package",
+ "files": [
+ "_rels/.rels",
+ "Win2D.nuspec",
+ "lib/netcore50/Microsoft.Graphics.Canvas.winmd",
+ "lib/netcore50/Microsoft.Graphics.Canvas.xml",
+ "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll",
+ "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll",
+ "runtimes/win10-ARM/native/Microsoft.Graphics.Canvas.dll",
+ "Win2D.githash.txt",
+ "package/services/metadata/core-properties/8250b4d691e54c2391ee3f5d91acd796.psmdcp",
+ "[Content_Types].xml"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "Microsoft.NETCore.Platforms >= 1.0.0",
+ "Win2D >= 0.0.23-local"
+ ],
+ ".NETCore,Version=v5.0": []
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj b/src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj
new file mode 100644
index 0000000..9937dc7
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{61443D47-85B6-4519-96C1-2704BDF604BF}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Microsoft.NuGet.Build.Tasks.Tests</RootNamespace>
+ <AssemblyName>Microsoft.NuGet.Build.Tasks.Tests</AssemblyName>
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <TargetFrameworkProfile />
+ <SignAssembly>true</SignAssembly>
+ <DelaySign>true</DelaySign>
+ <AssemblyOriginatorKeyFile>..\..\build\PublicKey.snk</AssemblyOriginatorKeyFile>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="Microsoft.Build.Framework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+ <Reference Include="Microsoft.Build.Utilities.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="Microsoft.CSharp" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="AnalyzerResolutionTests.cs" />
+ <Compile Include="AssertHelpers.cs" />
+ <Compile Include="Helpers\DisposableDirectory.cs" />
+ <Compile Include="Helpers\DisposableFile.cs" />
+ <Compile Include="Helpers\MockBuildEngine.cs" />
+ <Compile Include="Helpers\TempDirectory.cs" />
+ <Compile Include="Helpers\TempFile.cs" />
+ <Compile Include="Helpers\TempRoot.cs" />
+ <Compile Include="Json\Json.Designer.cs">
+ <AutoGen>True</AutoGen>
+ <DesignTime>True</DesignTime>
+ <DependentUpon>Json.resx</DependentUpon>
+ </Compile>
+ <Compile Include="NugetTestHelpers.cs" />
+ <Compile Include="PackageResolutionTestException.cs" />
+ <Compile Include="PreprocessorTests.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="ReferenceResolutionTests.cs" />
+ <Compile Include="ResolvePackagesResult.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\Microsoft.NuGet.Build.Tasks\Microsoft.NuGet.Build.Tasks.csproj">
+ <Project>{55dc2bbf-42ae-4be8-a6e0-351eef51c0fc}</Project>
+ <Name>Microsoft.NuGet.Build.Tasks</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="Json\analyzers.json" />
+ <None Include="Json\FluentAssertions.lock.json" />
+ <None Include="Json\FluentAssertionsAndWin10.lock.json" />
+ <None Include="Json\nativeWinMD.json" />
+ <None Include="Json\Win10.Edm.json" />
+ <None Include="Json\Win10.json" />
+ <None Include="Json\Win10.xunit.json" />
+ <None Include="project.json" />
+ </ItemGroup>
+ <ItemGroup>
+ <EmbeddedResource Include="Json\Json.resx">
+ <Generator>ResXFileCodeGenerator</Generator>
+ <LastGenOutput>Json.Designer.cs</LastGenOutput>
+ </EmbeddedResource>
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project> \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/NugetTestHelpers.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/NugetTestHelpers.cs
new file mode 100644
index 0000000..72f3844
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/NugetTestHelpers.cs
@@ -0,0 +1,149 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using Microsoft.Build.Framework;
+using Microsoft.Build.Utilities;
+using Microsoft.NuGet.Build.Tasks;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using Xunit;
+using Microsoft.NuGet.Build.Tasks.Tests.Helpers;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ internal static class NuGetTestHelpers
+ {
+ public static ResolvePackagesResult ResolvePackagesWithJsonFileContents(
+ string projectLockJsonFileContents,
+ string targetMoniker,
+ string runtimeIdentifier,
+ string projectLanguage = null,
+ bool allowFallbackOnTargetSelection = false,
+ DirectoryExists directoryExists = null,
+ FileExists fileExists = null,
+ TryGetRuntimeVersion tryGetRuntimeVersion = null,
+ bool includeFrameworkReferences = true,
+ string projectJsonFileContents = null)
+ {
+ var filePaths = GetFilePaths(projectLockJsonFileContents).ToArray();
+ var tempPackagesFolder = Path.Combine(Path.GetTempPath(), ".nuget", "packages");
+ var nugetPackageDirectory = new TempRoot(tempPackagesFolder);
+
+ if (fileExists == null)
+ {
+ CreateFiles(nugetPackageDirectory, filePaths);
+ }
+
+ var rootDirectory = new TempRoot();
+ using (rootDirectory)
+ using (nugetPackageDirectory)
+ {
+ var projectLockJsonFile = CreateFile(rootDirectory, "project.lock.json");
+ projectLockJsonFile.WriteAllText(projectLockJsonFileContents);
+
+ if (projectJsonFileContents != null)
+ {
+ var projectJsonFile = CreateFile(rootDirectory, "project.json");
+ projectJsonFile.WriteAllText(projectJsonFileContents);
+ }
+
+ return ResolvePackages(
+ targetMoniker,
+ runtimeIdentifier,
+ projectLockJsonFile.Path,
+ tempPackagesFolder,
+ projectLanguage,
+ allowFallbackOnTargetSelection,
+ directoryExists,
+ fileExists,
+ tryGetRuntimeVersion,
+ includeFrameworkReferences);
+ }
+ }
+
+ public static ResolvePackagesResult ResolvePackages(
+ string targetMoniker,
+ string runtimeIdentifier,
+ string projectLockFile,
+ string packagesDirectory,
+ string projectLanguage = null,
+ bool allowFallbackOnTargetSelection = false,
+ DirectoryExists directoryExists = null,
+ FileExists fileExists = null,
+ TryGetRuntimeVersion tryGetRuntimeVersion = null,
+ bool includeFrameworkReferences = true)
+ {
+ ResolveNuGetPackageAssets task = new ResolveNuGetPackageAssets(directoryExists, fileExists, tryGetRuntimeVersion);
+ var sw = new StringWriter();
+ task.BuildEngine = new MockBuildEngine(sw);
+
+ task.AllowFallbackOnTargetSelection = allowFallbackOnTargetSelection;
+ task.IncludeFrameworkReferences = includeFrameworkReferences;
+ task.NuGetPackagesDirectory = packagesDirectory;
+ task.RuntimeIdentifier = runtimeIdentifier;
+ task.ProjectLockFile = projectLockFile;
+ task.ProjectLanguage = projectLanguage;
+ task.TargetMonikers = new ITaskItem[] { new TaskItem(targetMoniker) };
+
+ if (!task.Execute())
+ {
+ throw new PackageResolutionTestException(sw.ToString());
+ }
+
+ var analyzers = task.ResolvedAnalyzers;
+ var copyLocalItems = task.ResolvedCopyLocalItems;
+ var references = task.ResolvedReferences;
+ var referencedPackages = task.ReferencedPackages;
+
+ return new ResolvePackagesResult(analyzers, copyLocalItems, references, referencedPackages);
+ }
+
+ public static void CreateFiles(TempRoot root, string[] filenames)
+ {
+ foreach (var filename in filenames)
+ {
+ CreateFile(root, filename);
+ }
+ }
+
+ public static TempFile CreateFile(TempRoot root, string filename)
+ {
+ var directory = root.CreateDirectory().CreateDirectory(System.IO.Path.GetDirectoryName(filename));
+ return directory.CreateFile(System.IO.Path.GetFileName(filename));
+ }
+
+ private static IEnumerable<string> GetFilePaths(string jsonFileContents)
+ {
+ JObject lockFile;
+ using (var streamReader = new StringReader(jsonFileContents))
+ {
+ lockFile = JObject.Load(new JsonTextReader(streamReader));
+ }
+
+ var packages = lockFile["libraries"].Children();
+
+ foreach (var package in packages)
+ {
+ var packageNameParts = (package as JProperty)?.Name.Split('/');
+ if (packageNameParts == null)
+ {
+ continue;
+ }
+
+ var packageName = packageNameParts[0];
+ var packageVersion = packageNameParts[1];
+
+ foreach (var file in package.Children()
+ .SelectMany(x => x["files"].Children())
+ .Select(x => x.ToString()))
+ {
+ yield return Path.Combine(packageName, packageVersion, file.Replace('/', '\\'));
+ }
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/PackageResolutionTestException.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/PackageResolutionTestException.cs
new file mode 100644
index 0000000..f3bb441
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/PackageResolutionTestException.cs
@@ -0,0 +1,31 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Runtime.Serialization;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ /// <summary>
+ /// An exception thrown if a helper <see cref="NuGetTestHelpers"/> says package resolution failed.
+ /// </summary>
+ [Serializable]
+ internal class PackageResolutionTestException : Exception
+ {
+ public PackageResolutionTestException()
+ {
+ }
+
+ public PackageResolutionTestException(string message) : base(message)
+ {
+ }
+
+ public PackageResolutionTestException(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+
+ protected PackageResolutionTestException(SerializationInfo info, StreamingContext context) : base(info, context)
+ {
+ }
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs
new file mode 100644
index 0000000..da0d615
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs
@@ -0,0 +1,96 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.NuGet.Build.Tasks;
+using Xunit;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ public class PreprocessorTests
+ {
+ private string Preprocess(string text, IReadOnlyDictionary<string, string> values)
+ {
+ var writer = new StringWriter();
+ Preprocessor.Preprocess(new StringReader(text), writer, values);
+ return writer.ToString();
+ }
+
+ [Fact]
+ public void EmptyStringYieldsEmptyString()
+ {
+ Assert.Equal("", Preprocess("", new Dictionary<string, string>()));
+ }
+
+ [Fact]
+ public void NonEmptyStringWithNoTokensYieldsIdentity()
+ {
+ Assert.Equal("Hello, World!", Preprocess("Hello, World!", new Dictionary<string, string>()));
+ }
+
+ [Fact]
+ public void NonEmptyStringWithNoTokensYieldsIdentityWithValues()
+ {
+ Assert.Equal("Hello, World!", Preprocess("Hello, World!", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void DoubleDollarIsEscape()
+ {
+ Assert.Equal("Pay Jason $42", Preprocess("Pay Jason $$42", new Dictionary<string, string>()));
+ }
+
+ [Fact]
+ public void ReplaceWithSimpleValue()
+ {
+ Assert.Equal("Microsoft", Preprocess("$CompanyName$", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void UnterminatedIsNotAToken()
+ {
+ Assert.Equal("$CompanyName", Preprocess("$CompanyName", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void SimpleDollarIsTrivial()
+ {
+ Assert.Equal("$", Preprocess("$", new Dictionary<string, string>() { }));
+ }
+
+ [Fact]
+ public void UnterminatedIsNotAToken2()
+ {
+ Assert.Equal("$CompanyName $CompanyName", Preprocess("$CompanyName $CompanyName", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void ReplaceWithTwoValues()
+ {
+ Assert.Equal("Microsoft", Preprocess("$CompanyName1$$CompanyName2$", new Dictionary<string, string>() { { "CompanyName1", "Micro" }, { "CompanyName2", "soft" } }));
+ }
+
+ [Fact]
+ public void ReplaceWithSimpleValueTwice()
+ {
+ Assert.Equal("MicrosoftMicrosoft", Preprocess("$CompanyName$$CompanyName$", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void ReplaceWithOtherTextBeforeAndAfter()
+ {
+ Assert.Equal(" Microsoft ", Preprocess(" $CompanyName$ ", new Dictionary<string, string>() { { "CompanyName", "Microsoft" } }));
+ }
+
+ [Fact]
+ public void ReplaceWithInvalidTokenThrows()
+ {
+ Assert.Throws<ExceptionFromResource>(() => Preprocess("$UnknownToken$", new Dictionary<string, string>()));
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/Properties/AssemblyInfo.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..cbeae5e
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/Properties/AssemblyInfo.cs
@@ -0,0 +1,18 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using Xunit;
+
+[assembly: AssemblyVersion("14.0.0.0")]
+[assembly: AssemblyFileVersion("14.0.0.0")]
+
+[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)]
+
+[assembly: AssemblyTitle("Microsoft.NuGet.Build.Tasks.Tests.dll")]
+[assembly: AssemblyDescription("Microsoft.NuGet.Build.Tasks.Tests.dll")]
+[assembly: AssemblyCompany("Microsoft Corporation")]
+[assembly: AssemblyProduct("Microsoft® Visual Studio® 2015")]
+[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs
new file mode 100644
index 0000000..3d58361
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs
@@ -0,0 +1,342 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.IO;
+using System.Linq;
+using Microsoft.NuGet.Build.Tasks;
+using Xunit;
+using static System.Text.Encoding;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ public partial class ReferenceResolutionTests
+ {
+ [Fact]
+ public static void TestReferenceResolutionWithRuntimeIDWin10X86()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86");
+
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(119, result.CopyLocalItems);
+ AssertHelpers.AssertNoTargetPaths(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithRuntimeIDWin10X64()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x64");
+
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(119, result.CopyLocalItems);
+ AssertHelpers.AssertNoTargetPaths(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithRuntimeIDWin10X86Aot()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86-aot");
+
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(141, result.CopyLocalItems);
+ AssertHelpers.AssertNoTargetPaths(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithRuntimeIDWin10X64Aot()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x64-aot");
+
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(141, result.CopyLocalItems);
+ AssertHelpers.AssertNoTargetPaths(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithMissingRuntimeIDAndFallback()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "missing-runtime-identifier",
+ allowFallbackOnTargetSelection: true);
+
+ // We should still have references. We'll assert that CopyLocalItems contains something, but it's purely best
+ // effort and so there's no promise that it'll ever contain any specific items
+ AssertHelpers.AssertCountOf(101, result.References);
+ Assert.NotEmpty(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithMissingRuntimeIDAndNoFallback()
+ {
+ var exception = Assert.Throws<PackageResolutionTestException>(() =>
+ NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "missing-runtime-identifier",
+ allowFallbackOnTargetSelection: false));
+
+ var expected =
+ string.Format(Strings.MissingRuntimeInRuntimesSection,
+ "missing-runtime-identifier", "\"missing-runtime-identifier\": { }");
+
+ Assert.Contains(expected, exception.Message);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithMissingRuntimeIDAndNoFallbackAndNoRuntimesSection()
+ {
+ var exception = Assert.Throws<PackageResolutionTestException>(() =>
+ NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "missing-runtime-identifier",
+ allowFallbackOnTargetSelection: false,
+ projectJsonFileContents: "{ }"));
+
+ var expected =
+ string.Format(Strings.MissingRuntimesSection,
+ "\"runtimes\": { \"missing-runtime-identifier\": { } }");
+
+ Assert.Contains(expected, exception.Message);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithMissingTargetMonikerAndNoFallback()
+ {
+ var exception = Assert.Throws<PackageResolutionTestException>(() =>
+ NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: "Missing,Version=1.0",
+ runtimeIdentifier: "missing-runtime-identifier",
+ allowFallbackOnTargetSelection: false));
+
+ var expected =
+ string.Format(Strings.MissingFramework,
+ "Missing,Version=1.0");
+
+ Assert.Contains(expected, exception.Message);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithMissingTargetFrameworkAndFallback()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: "MissingFrameworkMoniker,Version=v42.0",
+ runtimeIdentifier: "",
+ allowFallbackOnTargetSelection: true);
+
+ // We should still have references. Since we have no runtime ID, we should have no copy local items
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(0, result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestReferenceResolutionWithNoRuntimeID()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "");
+
+ // We should still have references, but no copy local
+ AssertHelpers.AssertCountOf(101, result.References);
+ AssertHelpers.AssertCountOf(0, result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void PackagesHaveMetadataWithPackageIdAndVersion()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86");
+
+ var immutableCopyLocalitem = result.CopyLocalItems.Single(i => i.ItemSpec.EndsWith("System.Collections.Immutable.dll"));
+
+ Assert.Equal("System.Collections.Immutable", immutableCopyLocalitem.GetMetadata(ResolveNuGetPackageAssets.NuGetPackageIdMetadata));
+ Assert.Equal("1.1.36", immutableCopyLocalitem.GetMetadata(ResolveNuGetPackageAssets.NuGetPackageVersionMetadata));
+ }
+
+
+ [Fact]
+ public static void ReferencedPackagesCorrectlyParsed()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "");
+
+ // We should still have references, but no copy local
+ AssertHelpers.AssertCountOf(5, result.ReferencedPackages);
+
+ var packageNames = result.ReferencedPackages.Select(t => t.ItemSpec);
+
+ Assert.Contains("Microsoft.NETCore.UniversalWindowsPlatform", packageNames);
+ }
+
+ [Fact]
+ public static void ExcludingFrameworkReferencesActuallyExcludesFrameworkReferences()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.FluentAssertions),
+ targetMoniker: ".NETFramework,Version=v4.5.2",
+ runtimeIdentifier: "",
+ includeFrameworkReferences: false);
+
+ // We should only have references from the core package
+ AssertHelpers.AssertCountOf(2, result.References);
+ Assert.True(result.References.All(r => r.ItemSpec.Contains("FluentAssertions")));
+
+ // This should still count as the reference to a package
+ var packageNames = result.ReferencedPackages.Select(t => t.ItemSpec);
+ Assert.Contains("FluentAssertions", packageNames);
+ }
+
+ [Fact]
+ public static void IncludingFrameworkReferencesActuallyIncludesFrameworkReferences()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.FluentAssertions),
+ targetMoniker: ".NETFramework,Version=v4.5.2",
+ runtimeIdentifier: "",
+ includeFrameworkReferences: true);
+
+ // We should have references to the package itself plus framework packages
+ AssertHelpers.AssertCountOf(4, result.References);
+ Assert.True(result.References.All(r => r.ItemSpec.Contains("FluentAssertions") ||
+ r.ItemSpec == "System.Xml" ||
+ r.ItemSpec == "System.Xml.Linq"));
+
+ // This should still count as the reference to a package
+ var packageNames = result.ReferencedPackages.Select(t => t.ItemSpec);
+ Assert.Contains("FluentAssertions", packageNames);
+ }
+
+ [Fact]
+ public static void FrameworkReferencesAreNotProvidedIfAlreadyProvidedByAnotherPackage()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.FluentAssertionsAndWin10),
+ targetMoniker: "UAP,Version=v10.0",
+ runtimeIdentifier: "",
+ includeFrameworkReferences: true);
+
+ // There should be exactly one reference to System.Xml.dll, and no other references
+ Assert.Single(result.References.Where(r => r.ItemSpec.EndsWith("System.Xml.dll")));
+ Assert.Empty(result.References.Where(r => r.ItemSpec == "System.Xml"));
+ }
+
+ [Fact]
+ public static void NativeWinMDSetsMetadata()
+ {
+ string imageRuntimeVersion = "WindowsRuntime 1.3";
+ DirectoryExists directoryExists = p => true;
+ FileExists fileExists = p => true;
+ TryGetRuntimeVersion tryGetRuntimeVersion = p => imageRuntimeVersion;
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.nativeWinMD),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86",
+ directoryExists: directoryExists,
+ fileExists:fileExists,
+ tryGetRuntimeVersion: tryGetRuntimeVersion);
+
+ var winmd = result.CopyLocalItems.FirstOrDefault(c =>
+ Path.GetExtension(c.ItemSpec).Equals(".winmd", StringComparison.OrdinalIgnoreCase));
+
+ Assert.NotNull(winmd);
+ Assert.Equal(imageRuntimeVersion, winmd.GetMetadata("ImageRuntime"));
+ Assert.Equal("true", winmd.GetMetadata("WinMDFile"));
+ Assert.Equal("Native", winmd.GetMetadata("WinMDFileType"));
+ Assert.False(string.IsNullOrEmpty(winmd.GetMetadata("Implementation")), "implementation should be set for native winmd");
+ Assert.Equal(Path.GetFileNameWithoutExtension(winmd.ItemSpec) + ".dll", winmd.GetMetadata("Implementation"), StringComparer.OrdinalIgnoreCase);
+ }
+
+ [Fact]
+ public static void ManagedWinMDDoesNotSetsMetadata()
+ {
+ string imageRuntimeVersion = "WindowsRuntime 1.4;CLR v4.0.30319";
+ DirectoryExists directoryExists = p => true;
+ FileExists fileExists = p => true;
+ TryGetRuntimeVersion tryGetRuntimeVersion = p => imageRuntimeVersion;
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.nativeWinMD),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86",
+ directoryExists: directoryExists,
+ fileExists:fileExists,
+ tryGetRuntimeVersion: tryGetRuntimeVersion);
+
+ var winmd = result.CopyLocalItems.FirstOrDefault(c =>
+ Path.GetExtension(c.ItemSpec).Equals(".winmd", StringComparison.OrdinalIgnoreCase));
+
+ Assert.NotNull(winmd);
+ Assert.Equal(imageRuntimeVersion, winmd.GetMetadata("ImageRuntime"));
+ Assert.Equal("true", winmd.GetMetadata("WinMDFile"));
+ Assert.Equal("Managed", winmd.GetMetadata("WinMDFileType"));
+ Assert.True(string.IsNullOrEmpty(winmd.GetMetadata("Implementation")), "implementation should not be set for managed winmd");
+ }
+
+ [Fact]
+ public static void BogusWinMDDoesNotSetImplementation()
+ {
+ string imageRuntimeVersion = "BogusRuntime 1.4;C1R v4.0.30319";
+ DirectoryExists directoryExists = p => true;
+ FileExists fileExists = p => true;
+ TryGetRuntimeVersion tryGetRuntimeVersion = p => imageRuntimeVersion;
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.nativeWinMD),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86",
+ directoryExists: directoryExists,
+ fileExists:fileExists,
+ tryGetRuntimeVersion: tryGetRuntimeVersion);
+
+ var winmd = result.CopyLocalItems.FirstOrDefault(c =>
+ Path.GetExtension(c.ItemSpec).Equals(".winmd", StringComparison.OrdinalIgnoreCase));
+
+ Assert.NotNull(winmd);
+ Assert.Equal(imageRuntimeVersion, winmd.GetMetadata("ImageRuntime"));
+ Assert.True(string.IsNullOrEmpty(winmd.GetMetadata("WinMDFile")));
+ Assert.True(string.IsNullOrEmpty(winmd.GetMetadata("WinMDFileType")));
+ Assert.True(string.IsNullOrEmpty(winmd.GetMetadata("Implementation")), "implementation should not be set for bogus winmd");
+ }
+
+ [Fact]
+ public static void TestTargetPathCollisionsFound()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10_Edm),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86");
+
+ AssertHelpers.AssertConsistentTargetPaths(result.CopyLocalItems);
+ }
+
+ [Fact]
+ public static void TestTargetPathCollisionsFound2()
+ {
+ var result = NuGetTestHelpers.ResolvePackagesWithJsonFileContents(
+ Default.GetString(Json.Json.Win10_xunit),
+ targetMoniker: ".NETCore,Version=v5.0",
+ runtimeIdentifier: "win10-x86");
+
+ AssertHelpers.AssertConsistentTargetPaths(result.CopyLocalItems);
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs b/src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs
new file mode 100644
index 0000000..45da404
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs
@@ -0,0 +1,37 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Build.Framework;
+using Microsoft.Win32.SafeHandles;
+
+namespace Microsoft.NuGet.Build.Tasks.Tests
+{
+ public class ResolvePackagesResult
+ {
+ public ResolvePackagesResult(
+ ITaskItem[] analyzers,
+ ITaskItem[] copyLocalItems,
+ ITaskItem[] references,
+ ITaskItem[] referencedPackages)
+ {
+ Analyzers = analyzers ?? new ITaskItem[] { };
+ CopyLocalItems = copyLocalItems ?? new ITaskItem[] { };
+ References = references ?? new ITaskItem[] { };
+ ReferencedPackages = referencedPackages ?? new ITaskItem[] { };
+ }
+
+ public ITaskItem[] Analyzers { get; }
+ public ITaskItem[] CopyLocalItems { get; }
+ public ITaskItem[] References { get; }
+ public ITaskItem[] ReferencedPackages { get; }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks.Tests/project.json b/src/Microsoft.NuGet.Build.Tasks.Tests/project.json
new file mode 100644
index 0000000..f31dee0
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks.Tests/project.json
@@ -0,0 +1,8 @@
+{
+ "dependencies": {
+ "xunit": "2.1.0",
+ "xunit.runner.visualstudio": "2.1.0"
+ },
+ "frameworks": { "net45": { } },
+ "runtimes": { "win": { } }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/.gitignore b/src/Microsoft.NuGet.Build.Tasks/.gitignore
new file mode 100644
index 0000000..6c9c2b7
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/.gitignore
@@ -0,0 +1,2 @@
+!Microsoft.NuGet.props
+!Microsoft.NuGet.targets
diff --git a/src/Microsoft.NuGet.Build.Tasks/CultureStringUtilities.cs b/src/Microsoft.NuGet.Build.Tasks/CultureStringUtilities.cs
new file mode 100644
index 0000000..d8a2447
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/CultureStringUtilities.cs
@@ -0,0 +1,46 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Globalization;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ internal class CultureStringUtilities
+ {
+ static private Lazy<string[]> cultureInfoStringsLazy = new Lazy<string[]>(GetCultureInfoArray);
+ static private string[] cultureInfoStrings => cultureInfoStringsLazy.Value;
+
+ internal static bool IsValidCultureString(string cultureString)
+ {
+ // Note, it does not matter what kind of comparer we use as long as the comparer
+ // for Array.Sort() [see PopulateCultureInfoArray()] and Array.BinarySearch() is
+ // the same.
+ bool valid = true;
+
+ if (Array.BinarySearch(cultureInfoStrings, cultureString, StringComparer.OrdinalIgnoreCase) < 0)
+ {
+ valid = false;
+ }
+
+ return valid;
+ }
+
+ private static string[] GetCultureInfoArray()
+ {
+ CultureInfo[] cultureInfos = CultureInfo.GetCultures(CultureTypes.AllCultures);
+
+ var cultureInfoArray = new string[cultureInfos.Length];
+ for (int i = 0; i < cultureInfos.Length; i++)
+ {
+ cultureInfoArray[i] = cultureInfos[i].Name;
+ }
+
+ // Note, it does not matter what kind of comparer we use as long as the comparer
+ // for Array.BinarySearch() [see ValidateCultureInfoString()] and Array.Sort() is
+ // the same.
+ Array.Sort(cultureInfoArray, StringComparer.OrdinalIgnoreCase);
+ return cultureInfoArray;
+ }
+ }
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/Delegates.cs b/src/Microsoft.NuGet.Build.Tasks/Delegates.cs
new file mode 100644
index 0000000..56a3dba
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Delegates.cs
@@ -0,0 +1,9 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ internal delegate bool DirectoryExists(string path);
+ internal delegate bool FileExists(string path);
+ internal delegate string TryGetRuntimeVersion(string path);
+} \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs b/src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs
new file mode 100644
index 0000000..07de3c0
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs
@@ -0,0 +1,27 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ /// <summary>
+ /// An exception for reporting errors to the user. Points to a resource in <see cref="Strings"/> so
+ /// we get the proper MSBuild localization handling.
+ /// </summary>
+ internal sealed class ExceptionFromResource : Exception
+ {
+ public string ResourceName { get; private set; }
+ public object[] MessageArgs { get; private set; }
+
+ public ExceptionFromResource(string resourceName, params object[] messageArgs)
+ {
+ ResourceName = resourceName;
+ MessageArgs = messageArgs;
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets b/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets
new file mode 100644
index 0000000..72ce25d
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets
@@ -0,0 +1,17 @@
+<!--
+***********************************************************************************************
+Microsoft.NuGet.ImportAfter.targets
+
+WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
+ created a backup copy. Incorrect changes to this file will make it
+ impossible to load or build your projects from the command-line or the IDE.
+
+Copyright (c) .NET Foundation. All rights reserved.
+***********************************************************************************************
+-->
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <NuGetTargets Condition="'$(NuGetTargets)'==''">$(MSBuildExtensionsPath)\Microsoft\NuGet\Microsoft.NuGet.targets</NuGetTargets>
+ </PropertyGroup>
+ <Import Condition="Exists('$(NuGetTargets)')" Project="$(NuGetTargets)" />
+</Project>
diff --git a/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props b/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props
new file mode 100644
index 0000000..a34517c
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props
@@ -0,0 +1,17 @@
+<!--
+***********************************************************************************************
+Microsoft.NuGet.ImportBefore.props
+
+WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
+ created a backup copy. Incorrect changes to this file will make it
+ impossible to load or build your projects from the command-line or the IDE.
+
+Copyright (c) .NET Foundation. All rights reserved.
+***********************************************************************************************
+-->
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <NuGetProps Condition="'$(NuGetProps)'==''">$(MSBuildExtensionsPath)\Microsoft\NuGet\Microsoft.NuGet.props</NuGetProps>
+ </PropertyGroup>
+ <Import Condition="Exists('$(NuGetProps)')" Project="$(NuGetProps)" />
+</Project>
diff --git a/src/Microsoft.NuGet.Build.Tasks/InternalsVisibleTo.cs b/src/Microsoft.NuGet.Build.Tasks/InternalsVisibleTo.cs
new file mode 100644
index 0000000..1a7af1c
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/InternalsVisibleTo.cs
@@ -0,0 +1,6 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System.Runtime.CompilerServices;
+
+[assembly: InternalsVisibleTo("Microsoft.NuGet.Build.Tasks.Tests, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")] \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj
new file mode 100644
index 0000000..a7be6e4
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{55DC2BBF-42AE-4BE8-A6E0-351EEF51C0FC}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Microsoft.NuGet.Build.Tasks</RootNamespace>
+ <AssemblyName>Microsoft.NuGet.Build.Tasks</AssemblyName>
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <TargetFrameworkProfile />
+ <SignAssembly>true</SignAssembly>
+ <DelaySign>true</DelaySign>
+ <AssemblyOriginatorKeyFile>..\..\build\PublicKey.snk</AssemblyOriginatorKeyFile>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="Microsoft.Build.Framework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+ <Reference Include="Microsoft.Build.Utilities.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="Microsoft.CSharp" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="CultureStringUtilities.cs" />
+ <Compile Include="Delegates.cs" />
+ <Compile Include="ExceptionFromResource.cs" />
+ <Compile Include="InternalsVisibleTo.cs" />
+ <Compile Include="NativeMethods.cs" />
+ <Compile Include="NuGetPackageObject.cs" />
+ <Compile Include="Preprocessor.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="ResolveNuGetPackageAssets.cs" />
+ <Compile Include="Strings.Designer.cs">
+ <AutoGen>True</AutoGen>
+ <DesignTime>True</DesignTime>
+ <DependentUpon>Strings.resx</DependentUpon>
+ </Compile>
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="project.json" />
+ <None Include="ImportBeforeAfter\Microsoft.NuGet.ImportAfter.targets" />
+ <None Include="ImportBeforeAfter\Microsoft.NuGet.ImportBefore.props" />
+ <Content Include="Microsoft.NuGet.props">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="Microsoft.NuGet.targets">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+ <ItemGroup>
+ <EmbeddedResource Include="Strings.resx">
+ <Generator>ResXFileCodeGenerator</Generator>
+ <LastGenOutput>Strings.Designer.cs</LastGenOutput>
+ </EmbeddedResource>
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project> \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props
new file mode 100644
index 0000000..a3b4823
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props
@@ -0,0 +1,14 @@
+<!--
+***********************************************************************************************
+Microsoft.NuGet.props
+
+WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
+ created a backup copy. Incorrect changes to this file will make it
+ impossible to load or build your projects from the command-line or the IDE.
+
+Copyright (c) .NET Foundation. All rights reserved.
+***********************************************************************************************
+-->
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuget.props" Condition="Exists('$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuget.props') AND '$(IncludeNuGetImports)' != 'false'" />
+</Project>
diff --git a/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets
new file mode 100644
index 0000000..ec05626
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets
@@ -0,0 +1,245 @@
+<!--
+***********************************************************************************************
+Microsoft.NuGet.targets
+
+WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
+ created a backup copy. Incorrect changes to this file will make it
+ impossible to load or build your projects from the command-line or the IDE.
+
+Copyright (c) .NET Foundation. All rights reserved.
+***********************************************************************************************
+-->
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <UsingTask TaskName="Microsoft.NuGet.Build.Tasks.ResolveNuGetPackageAssets" AssemblyFile="Microsoft.NuGet.Build.Tasks.dll" />
+
+ <PropertyGroup Condition="'$(ProjectLockFile)' == ''">
+ <_ProjectSpecificProjectJsonFile>$(MSBuildProjectName).project.json</_ProjectSpecificProjectJsonFile>
+ <ProjectLockFile Condition="Exists('$(_ProjectSpecificProjectJsonFile)')">$(MSBuildProjectName).project.lock.json</ProjectLockFile>
+ <ProjectLockFile Condition="!Exists('$(_ProjectSpecificProjectJsonFile)')">project.lock.json</ProjectLockFile>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <ResolveNuGetPackages Condition="'$(ResolveNuGetPackages)' == '' and '$(MSBuildProjectExtension)' != '.xproj'">true</ResolveNuGetPackages>
+
+ <BaseNuGetRuntimeIdentifier Condition="'$(BaseNuGetRuntimeIdentifier)' == '' and '$(TargetPlatformIdentifier)' == 'UAP'">win10</BaseNuGetRuntimeIdentifier>
+ <BaseNuGetRuntimeIdentifier Condition="'$(BaseNuGetRuntimeIdentifier)' == ''">win</BaseNuGetRuntimeIdentifier>
+
+ <UseTargetPlatformAsNuGetTargetMoniker Condition="'$(UseTargetPlatformAsNuGetTargetMoniker)' == '' AND '$(TargetFrameworkMoniker)' == '.NETCore,Version=v5.0'">true</UseTargetPlatformAsNuGetTargetMoniker>
+ <NuGetTargetMoniker Condition="'$(NuGetTargetMoniker)' == '' AND '$(UseTargetPlatformAsNuGetTargetMoniker)' == 'true'">$(TargetPlatformIdentifier),Version=v$([System.Version]::Parse('$(TargetPlatformMinVersion)').ToString(3))</NuGetTargetMoniker>
+ <NuGetTargetMoniker Condition="'$(NuGetTargetMoniker)' == '' AND '$(UseTargetPlatformAsNuGetTargetMoniker)' != 'true'">$(TargetFrameworkMoniker)</NuGetTargetMoniker>
+
+ <CopyNuGetImplementations Condition="'$(CopyNuGetImplementations)' == '' and (('$(OutputType)' != 'library' and ('$(OutputType)' != 'winmdobj' or '$(AppxPackage)' == 'true')) or '$(TargetFrameworkIdentifier)' == '.NETFramework')">true</CopyNuGetImplementations>
+ <IncludeFrameworkReferencesFromNuGet Condition="'$(IncludeFrameworkReferencesFromNuGet)' == ''">true</IncludeFrameworkReferencesFromNuGet>
+
+ <_NuGetRuntimeIdentifierPlatformTargetSuffix Condition="'$(PlatformTarget)' != '' and '$(PlatformTarget)' != 'AnyCPU'">-$(PlatformTarget.ToLower())</_NuGetRuntimeIdentifierPlatformTargetSuffix>
+ <_NuGetRuntimeIdentifierWithoutAot>$(BaseNuGetRuntimeIdentifier)$(_NuGetRuntimeIdentifierPlatformTargetSuffix)</_NuGetRuntimeIdentifierWithoutAot>
+ </PropertyGroup>
+
+ <!-- If a NuGetRuntimeIdentifier wasn't already specified, let's go generate it -->
+ <PropertyGroup Condition="'$(NuGetRuntimeIdentifier)' == '' and '$(CopyNuGetImplementations)' == 'true'">
+ <NuGetRuntimeIdentifier>$(_NuGetRuntimeIdentifierWithoutAot)</NuGetRuntimeIdentifier>
+ <NuGetRuntimeIdentifier Condition="'$(UseDotNetNativeToolchain)' == 'true'">$(_NuGetRuntimeIdentifierWithoutAot)-aot</NuGetRuntimeIdentifier>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <!-- If we are resolving from project.lock.json, we need to consider any edit to it as something that forces a rebuild -->
+ <CustomAdditionalCompileInputs Include="$(ProjectLockFile)" Condition="'$(ResolveNuGetPackages)' == 'true' and Exists('$(ProjectLockFile)')" />
+ </ItemGroup>
+
+ <PropertyGroup Condition="'$(TargetPlatformIdentifier)' == 'UAP'">
+ <_NuGetTargetFallbackMoniker>UAP,Version=v10.0</_NuGetTargetFallbackMoniker>
+ <ImplicitlyExpandTargetFramework>false</ImplicitlyExpandTargetFramework>
+ <EnableAppLocalFXWorkaround>false</EnableAppLocalFXWorkaround>
+ <UseNetNativeCustomFramework>true</UseNetNativeCustomFramework>
+ </PropertyGroup>
+
+ <!--
+ ============================================================
+ GetProjectsReferencingProjectJsonFiles
+ ============================================================
+ -->
+ <Target Name="GetProjectsReferencingProjectJson" DependsOnTargets="_SplitProjectReferencesByFileExistence" Returns="@(_ProjectReferencingProjectJsonFile)">
+ <ItemGroup Condition="'$(ResolveNuGetPackages)' == 'true'">
+ <_ProjectReferencingProjectJsonFile Include="$(MSBuildProjectFullPath)">
+ <ProjectReferences>@(ProjectReference)</ProjectReferences>
+ <ProjectJson>$(MSBuildProjectDirectory)\project.json</ProjectJson>
+ </_ProjectReferencingProjectJsonFile>
+ </ItemGroup>
+
+ <MSBuild
+ Projects="@(_MSBuildProjectReferenceExistent)"
+ Targets="GetProjectsReferencingProjectJson"
+ BuildInParallel="$(BuildInParallel)"
+ Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)"
+ RemoveProperties="%(_MSBuildProjectReferenceExistent.GlobalPropertiesToRemove)">
+
+ <Output TaskParameter="TargetOutputs" ItemName="_ProjectReferencingProjectJsonFile" />
+ </MSBuild>
+ </Target>
+
+ <ItemGroup>
+ <NuGetPreprocessorValue Include="rootnamespace">
+ <Value>$(RootNamespace)</Value>
+ </NuGetPreprocessorValue>
+ <NuGetPreprocessorValue Include="assemblyname">
+ <Value>$(AssemblyName)</Value>
+ </NuGetPreprocessorValue>
+ <NuGetPreprocessorValue Include="fullpath">
+ <Value>$(MSBuildProjectDirectory)</Value>
+ </NuGetPreprocessorValue>
+ <NuGetPreprocessorValue Include="outputfilename">
+ <Value>$(TargetFileName)</Value>
+ </NuGetPreprocessorValue>
+ <NuGetPreprocessorValue Include="filename">
+ <Value>$(MSBuildProjectFile)</Value>
+ </NuGetPreprocessorValue>
+ </ItemGroup>
+
+ <!--
+ ============================================================
+ ResolveNuGetPackageAssets
+
+ Resolve assets from consumed NuGet packages listed in the project.lock.json
+
+ [OUT]
+ @(Analyzer) - Paths to build-time diagnostic analyzers
+ @(Reference) - Paths to build-time NuGet dependencies
+ @(ReferenceCopyLocalPaths) - Paths to run-time dependencies to copy
+ ============================================================
+ -->
+ <PropertyGroup>
+ <ResolveAssemblyReferencesDependsOn>$(ResolveAssemblyReferencesDependsOn);ResolveNuGetPackageAssets</ResolveAssemblyReferencesDependsOn>
+ <PrepareResourcesDependsOn>ResolveNuGetPackageAssets;$(PrepareResourcesDependsOn)</PrepareResourcesDependsOn>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <ResolveNuGetPackageAssetsDependsOn Condition="'$(ImplicitlyExpandTargetFramework)' == 'true'">$(ResolveNuGetPackageAssetsDependsOn);ImplicitlyExpandTargetFramework</ResolveNuGetPackageAssetsDependsOn>
+ </PropertyGroup>
+
+ <Target Name="ResolveNuGetPackageAssets" DependsOnTargets="$(ResolveNuGetPackageAssetsDependsOn)" Condition="'$(ResolveNuGetPackages)' == 'true' and exists('$(ProjectLockFile)')">
+ <ResolveNuGetPackageAssets AllowFallbackOnTargetSelection="$(DesignTimeBuild)"
+ ContinueOnError="$(ContinueOnError)"
+ IncludeFrameworkReferences="$(IncludeFrameworkReferencesFromNuGet)"
+ NuGetPackagesDirectory="$(NuGetPackagesDirectory)"
+ RuntimeIdentifier="$(NuGetRuntimeIdentifier)"
+ ProjectLanguage="$(Language)"
+ ProjectLockFile="$(ProjectLockFile)"
+ ContentPreprocessorValues="@(NuGetPreprocessorValue)"
+ ContentPreprocessorOutputDirectory="$(IntermediateOutputPath)\NuGet"
+ TargetMonikers="$(NuGetTargetMoniker);$(_NuGetTargetFallbackMoniker)">
+
+ <Output TaskParameter="ResolvedAnalyzers" ItemName="Analyzer" />
+ <Output TaskParameter="ResolvedCopyLocalItems" ItemName="ReferenceCopyLocalPaths" />
+ <Output TaskParameter="ResolvedReferences" ItemName="_ReferencesFromNuGetPackages" />
+ <Output TaskParameter="ReferencedPackages" ItemName="ReferencedNuGetPackages" />
+ <Output TaskParameter="ContentItems" ItemName="_NuGetContentItems" />
+ <Output TaskParameter="FileWrites" ItemName="FileWrites" />
+ </ResolveNuGetPackageAssets>
+
+ <ItemGroup>
+ <!-- Remove exact references, such as if a package had a framework reference to 'System' that we already have -->
+ <Reference Remove="@(_ReferencesFromNuGetPackages)" />
+
+ <!-- Remove simple name references if we're directly providing a reference assembly to the compiler. For example,
+ consider a project with an Reference Include="System", and some NuGet package is providing System.dll -->
+ <Reference Remove="%(_ReferencesFromNuGetPackages.FileName)" />
+
+ <!-- Remove simple name references that are already implicitly added -->
+ <_ReferencesFromNuGetPackages Remove="%(ReferencePath.FileName)" Condition="'%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandTargetFramework'" />
+
+ <Reference Include="@(_ReferencesFromNuGetPackages)" />
+ </ItemGroup>
+
+ <PropertyGroup Condition=" '$(AutoUnifyAssemblyReferences)' == 'true' ">
+ <!-- Normally Design Time Assembly Resolution (DTAR) won't consider these references.
+ Put DTAR in a mode where it will prefer the output of RAR and unify. -->
+ <DTARUseReferencesFromProject>true</DTARUseReferencesFromProject>
+ </PropertyGroup>
+
+ <!-- The items in _NuGetContentItems need to go into the appropriately-named item group, but the names depend upon the items
+ themselves. Split it apart. -->
+ <CreateItem Include="@(_NuGetContentItems)" Condition="'@(_NuGetContentItems)' != ''">
+ <Output TaskParameter="Include" ItemName="%(_NuGetContentItems.NuGetItemType)" />
+ </CreateItem>
+ </Target>
+
+ <Target Name="RuntimeImplementationProjectOutputGroup" Returns="@(RuntimeImplementationProjectOutputGroupOutput)" Condition="'$(ResolveNuGetPackages)' == 'true' and exists('$(ProjectLockFile)')">
+ <!-- This output group must contain the implementation assemblies for the host (i.e. design time) environment, not the
+ target environment. Thus, we explicitly pass the RuntimeIdentifier that doesn't have the -aot suffix -->
+ <ResolveNuGetPackageAssets AllowFallbackOnTargetSelection="$(DesignTimeBuild)"
+ NuGetPackagesDirectory="$(NuGetPackagesDirectory)"
+ RuntimeIdentifier="$(_NuGetRuntimeIdentifierWithoutAot)"
+ ProjectLanguage="$(Language)"
+ ProjectLockFile="$(ProjectLockFile)"
+ TargetMonikers="$(NuGetTargetMoniker);$(_NuGetTargetFallbackMoniker)">
+
+ <Output TaskParameter="ResolvedCopyLocalItems" ItemName="NonAheadOfTimeRuntimeImplementations" />
+ </ResolveNuGetPackageAssets>
+
+ <ItemGroup>
+ <RuntimeImplementationProjectOutputGroupOutput Include="%(NonAheadOfTimeRuntimeImplementations.Identity)">
+ <FinalOutputPath>%(NonAheadOfTimeRuntimeImplementations.FullPath)</FinalOutputPath>
+ <TargetPath>%(NonAheadOfTimeRuntimeImplementations.FullPath)</TargetPath>
+ </RuntimeImplementationProjectOutputGroupOutput>
+ </ItemGroup>
+ </Target>
+
+ <!--
+ ============================================================
+ Framework injection into mixed-target applications
+ ============================================================
+ -->
+ <PropertyGroup>
+ <NuGetTargetFrameworkMonikerToInject Condition="'$(NuGetTargetFrameworkMonikerToInject)' == ''">.NETCore,Version=v5.0</NuGetTargetFrameworkMonikerToInject>
+ <NuGetTargetMonikerToInject Condition="'$(NuGetTargetMonikerToInject)' == ''">.NETCore,Version=v5.0</NuGetTargetMonikerToInject>
+ </PropertyGroup>
+
+ <Target Name="ComputeNetCoreFrameworkInjectionParameters" BeforeTargets="BeforeGenerateProjectPriFile" DependsOnTargets="_AddUnionWinmd" Condition="'$(AppxPackage)' == 'true' and '$(TargetPlatformIdentifier)' == 'UAP'">
+ <PropertyGroup>
+ <_PackagingOutputsIncludesFramework Condition="'%(PackagingOutputs.FileName)%(PackagingOutputs.Extension)' == 'System.Runtime.dll'">true</_PackagingOutputsIncludesFramework>
+ <_AppContainsManagedCodeForInjection Condition="'%(PackagingOutputs.Identity)' == '$(_TargetPlatformSdkDir)UnionMetadata\Windows.winmd'">true</_AppContainsManagedCodeForInjection>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <_NetCoreFrameworkInjectionNeeded Condition="'$(_PackagingOutputsIncludesFramework)' != 'true' and '$(_AppContainsManagedCodeForInjection)' == 'true'">true</_NetCoreFrameworkInjectionNeeded>
+ </PropertyGroup>
+ </Target>
+
+ <Target Name="InjectNetCoreFrameworkBlockIfLockFileExists" AfterTargets="ComputeNetCoreFrameworkInjectionParameters" Condition="'$(_NetCoreFrameworkInjectionNeeded)' == 'true' and '$(ResolveNuGetPackages)' == 'true' and Exists('$(ProjectLockFile)')">
+ <Error Text="One of your dependencies requires the .NET Framework, but the .NET Framework could not be found in the NuGet packages installed in this project. Please install the appropriate .NET Framework packages required by your dependency." />
+ </Target>
+
+ <Target Name="InjectNetCoreFramework" AfterTargets="ComputeNetCoreFrameworkInjectionParameters" Condition="'$(_NetCoreFrameworkInjectionNeeded)' == 'true' and ('$(ResolveNuGetPackages)' != 'true' or !Exists('$(ProjectLockFile)'))">
+ <GetReferenceAssemblyPaths TargetFrameworkMoniker="$(NuGetTargetFrameworkMonikerToInject)" Condition="'$(FrameworkInjectionLockFile)' == ''">
+ <Output TaskParameter="ReferenceAssemblyPaths" ItemName="_NuGetInjectionSourceDirectories" />
+ </GetReferenceAssemblyPaths>
+
+ <PropertyGroup>
+ <FrameworkInjectionLockFile Condition="'$(FrameworkInjectionLockFile)' == ''">@(_NuGetInjectionSourceDirectories->'%(Identity)\project.lock.json')</FrameworkInjectionLockFile>
+ <FrameworkInjectionPackagesDirectory Condition="'$(FrameworkInjectionPackagesDirectory)' == ''">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\NuGet\Repository', 'NETCoreSDK', null, RegistryView.Registry32, RegistryView.Default))</FrameworkInjectionPackagesDirectory>
+ </PropertyGroup>
+
+ <ResolveNuGetPackageAssets Condition="Exists('$(FrameworkInjectionLockFile)')"
+ NuGetPackagesDirectory="$(FrameworkInjectionPackagesDirectory)"
+ RuntimeIdentifier="$(NuGetRuntimeIdentifier)"
+ TargetMonikers="$(NuGetTargetMonikerToInject)"
+ ProjectLockFile="$(FrameworkInjectionLockFile)">
+
+ <Output TaskParameter="ResolvedCopyLocalItems" ItemName="_InjectNetCoreFrameworkPayload" />
+ </ResolveNuGetPackageAssets>
+
+ <PropertyGroup>
+ <_CoreRuntimePackageId Condition="'%(_InjectNetCoreFrameworkPayload.FileName)%(_InjectNetCoreFrameworkPayload.Extension)' == 'mscorlib.dll' OR '%(_InjectNetCoreFrameworkPayload.FileName)%(_InjectNetCoreFrameworkPayload.Extension)' == 'mscorlib.ni.dll'">%(_InjectNetCoreFrameworkPayload.NuGetPackageId)</_CoreRuntimePackageId>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackagingOutputs Include="@(_InjectNetCoreFrameworkPayload)" Condition="'%(_InjectNetCoreFrameworkPayload.NuGetPackageId)' != '$(_CoreRuntimePackageId)' or '$(UseDotNetNativeToolchain)' == 'true'">
+ <TargetPath>%(Filename)%(Extension)</TargetPath>
+ <ProjectName>$(ProjectName)</ProjectName>
+ <OutputGroup>CopyLocalFilesOutputGroup</OutputGroup>
+ </PackagingOutputs>
+ </ItemGroup>
+ </Target>
+
+ <Import Project="$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuget.targets" Condition="Exists('$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuget.targets') AND '$(IncludeNuGetImports)' != 'false'" />
+</Project>
diff --git a/src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs b/src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs
new file mode 100644
index 0000000..f0c8cb3
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs
@@ -0,0 +1,25 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System.Runtime.InteropServices;
+using System.Text;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ internal static class NativeMethods
+ {
+ internal const uint ERROR_INSUFFICIENT_BUFFER = 0x8007007A;
+ internal const uint S_OK = 0x0;
+
+ /// <summary>
+ /// Get the runtime version for a given file
+ /// </summary>
+ /// <param name="szFullPath">The path of the file to be examined</param>
+ /// <param name="szBuffer">The buffer allocated for the version information that is returned.</param>
+ /// <param name="cchBuffer">The size, in wide characters, of szBuffer</param>
+ /// <param name="dwLength">The size, in bytes, of the returned szBuffer.</param>
+ /// <returns>HResult</returns>
+ [DllImport("mscoree.dll", SetLastError = true, CharSet = CharSet.Unicode)]
+ internal static extern uint GetFileVersion(string szFullPath, StringBuilder szBuffer, int cchBuffer, out uint dwLength);
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs b/src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs
new file mode 100644
index 0000000..130a600
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs
@@ -0,0 +1,38 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Newtonsoft.Json.Linq;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ /// <summary>
+ /// Metedata and information for a package listed in the lock file.
+ /// </summary>
+ internal sealed class NuGetPackageObject
+ {
+ public NuGetPackageObject(string id, string version, string fullPackagePath, JObject lockFileObject)
+ {
+ Id = id;
+ Version = version;
+ FullPackagePath = fullPackagePath;
+ LockFileObject = lockFileObject;
+ }
+
+ public string Id { get; }
+ public string Version { get; }
+ public string FullPackagePath { get; }
+ public JObject LockFileObject { get; }
+
+ public string GetFullPathToFile(string relativePath)
+ {
+ relativePath = relativePath.Replace('/', '\\');
+ return Path.Combine(FullPackagePath, relativePath);
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs b/src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs
new file mode 100644
index 0000000..195a468
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs
@@ -0,0 +1,123 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Globalization;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ public static class Preprocessor
+ {
+ private const char PreprocessorDelimiter = '$';
+
+ public static void Preprocess(TextReader reader, TextWriter writer, IReadOnlyDictionary<string, string> values)
+ {
+ // $$ is the escape for a $, which we can just replicate in the algorithm by giving the empty replacement the known value
+ var maximumKeyLength = values.Keys.Max<string, int?>(k => k.Length).GetValueOrDefault(0);
+ char[] buffer = new char[Math.Max(4096, maximumKeyLength + 2)];
+
+ int charsInBuffer = reader.ReadBlock(buffer, 0, buffer.Length);
+
+ while (charsInBuffer != 0)
+ {
+ int indexOfDelimiter = Array.IndexOf(buffer, PreprocessorDelimiter, 0, charsInBuffer);
+
+ if (indexOfDelimiter == -1)
+ {
+ // If the buffer doesn't contain any delimiters, then we can immediately write it out and move on
+ writer.Write(buffer, 0, charsInBuffer);
+ charsInBuffer = reader.ReadBlock(buffer, 0, buffer.Length);
+ }
+ else
+ {
+ // Write whatever is before the $ and advance up to the $
+ writer.Write(buffer, 0, indexOfDelimiter);
+ Advance(reader, buffer, ref charsInBuffer, charsToAdvance: indexOfDelimiter);
+
+ // Let's read in the token name
+ var token = new StringBuilder();
+ int position = 1;
+
+ while (true)
+ {
+ if (position == buffer.Length)
+ {
+ Advance(reader, buffer, ref charsInBuffer, buffer.Length);
+ position = 0;
+ }
+
+ // If at end, we'll want to fall through to the last case
+ var c = position < charsInBuffer ? buffer[position] : '\0';
+
+ if (c == PreprocessorDelimiter)
+ {
+ position++;
+
+ // Is it the escape case?
+ string value;
+ if (token.Length == 0)
+ {
+ writer.Write(PreprocessorDelimiter);
+ }
+ else if (values.TryGetValue(token.ToString(), out value))
+ {
+ writer.Write(value);
+ }
+ else
+ {
+ throw new ExceptionFromResource(nameof(Strings.UnspecifiedToken), PreprocessorDelimiter + token.ToString() + PreprocessorDelimiter);
+ }
+
+ break;
+ }
+ else if (IsTokenCharacter(c))
+ {
+ token.Append(c);
+ position++;
+ }
+ else
+ {
+ // The token ended prematurely, so we just treat it verbatim and write it out
+ writer.Write(PreprocessorDelimiter);
+ writer.Write(token);
+
+ break;
+ }
+ }
+
+ // Advance to the next position to start all over
+ Advance(reader, buffer, ref charsInBuffer, position);
+ }
+ }
+ }
+
+ private static bool IsTokenCharacter(char c)
+ {
+ var category = CharUnicodeInfo.GetUnicodeCategory(c);
+ return category == UnicodeCategory.LowercaseLetter ||
+ category == UnicodeCategory.UppercaseLetter ||
+ category == UnicodeCategory.TitlecaseLetter ||
+ category == UnicodeCategory.OtherLetter ||
+ category == UnicodeCategory.ModifierLetter ||
+ category == UnicodeCategory.DecimalDigitNumber ||
+ category == UnicodeCategory.ConnectorPunctuation;
+
+ }
+
+ private static void Advance(TextReader reader, char[] buffer, ref int charsInBuffer, int charsToAdvance)
+ {
+ Debug.Assert(charsToAdvance <= charsInBuffer);
+
+ // Move the remaining characters in the buffer forward
+ Array.Copy(sourceArray: buffer, sourceIndex: charsToAdvance, destinationArray: buffer, destinationIndex: 0, length: charsInBuffer - charsToAdvance);
+ charsInBuffer -= charsToAdvance;
+ charsInBuffer += reader.ReadBlock(buffer, charsInBuffer, buffer.Length - charsInBuffer);
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/Properties/AssemblyInfo.cs b/src/Microsoft.NuGet.Build.Tasks/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..bcf1edc
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Properties/AssemblyInfo.cs
@@ -0,0 +1,15 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyVersion("14.0.0.0")]
+[assembly: AssemblyFileVersion("14.0.0.0")]
+
+[assembly: AssemblyTitle("Microsoft.NuGet.Build.Tasks.dll")]
+[assembly: AssemblyDescription("Microsoft.NuGet.Build.Tasks.dll")]
+[assembly: AssemblyCompany("Microsoft Corporation")]
+[assembly: AssemblyProduct("Microsoft® Visual Studio® 2015")]
+[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
diff --git a/src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs b/src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs
new file mode 100644
index 0000000..e28b042
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs
@@ -0,0 +1,890 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using Microsoft.Build.Framework;
+using Microsoft.Build.Utilities;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using Newtonsoft.Json.Linq;
+using Newtonsoft.Json;
+using System.Security.Cryptography;
+
+namespace Microsoft.NuGet.Build.Tasks
+{
+ /// <summary>
+ /// Resolves the assets out of packages in the project.lock.json
+ /// </summary>
+ public sealed class ResolveNuGetPackageAssets : Task
+ {
+ internal const string NuGetPackageIdMetadata = "NuGetPackageId";
+ internal const string NuGetPackageVersionMetadata = "NuGetPackageVersion";
+ internal const string ReferenceImplementationMetadata = "Implementation";
+ internal const string ReferenceImageRuntimeMetadata = "ImageRuntime";
+ internal const string ReferenceWinMDFileMetadata = "WinMDFile";
+ internal const string ReferenceWinMDFileTypeMetadata = "WinMDFileType";
+ internal const string WinMDFileTypeManaged = "Managed";
+ internal const string WinMDFileTypeNative = "Native";
+ internal const string NuGetAssetTypeCompile = "compile";
+ internal const string NuGetAssetTypeNative = "native";
+ internal const string NuGetAssetTypeRuntime = "runtime";
+ internal const string NuGetAssetTypeResource = "resource";
+
+ private readonly List<ITaskItem> _analyzers = new List<ITaskItem>();
+ private readonly List<ITaskItem> _copyLocalItems = new List<ITaskItem>();
+ private readonly List<ITaskItem> _references = new List<ITaskItem>();
+ private readonly List<ITaskItem> _referencedPackages = new List<ITaskItem>();
+ private readonly List<ITaskItem> _contentItems = new List<ITaskItem>();
+ private readonly List<ITaskItem> _fileWrites = new List<ITaskItem>();
+
+ #region UnitTestSupport
+ private readonly DirectoryExists _directoryExists = new DirectoryExists(Directory.Exists);
+ private readonly FileExists _fileExists = new FileExists(File.Exists);
+ private readonly TryGetRuntimeVersion _tryGetRuntimeVersion = new TryGetRuntimeVersion(TryGetRuntimeVersion);
+
+ internal ResolveNuGetPackageAssets(DirectoryExists directoryExists, FileExists fileExists, TryGetRuntimeVersion tryGetRuntimeVersion)
+ : this()
+ {
+ if (directoryExists != null)
+ {
+ _directoryExists = directoryExists;
+ }
+
+ if (fileExists != null)
+ {
+ _fileExists = fileExists;
+ }
+
+ if (tryGetRuntimeVersion != null)
+ {
+ _tryGetRuntimeVersion = tryGetRuntimeVersion;
+ }
+ }
+ #endregion
+
+ /// <summary>
+ /// Creates a new <see cref="ResolveNuGetPackageAssets"/>.
+ /// </summary>
+ public ResolveNuGetPackageAssets()
+ {
+ Log.TaskResources = Strings.ResourceManager;
+ }
+
+ /// <summary>
+ /// The full paths to resolved analyzers.
+ /// </summary>
+ [Output]
+ public ITaskItem[] ResolvedAnalyzers
+ {
+ get { return _analyzers.ToArray(); }
+ }
+
+ /// <summary>
+ /// The full paths to resolved run-time resources.
+ /// </summary>
+ [Output]
+ public ITaskItem[] ResolvedCopyLocalItems
+ {
+ get { return _copyLocalItems.ToArray(); }
+ }
+
+ /// <summary>
+ /// The full paths to resolved build-time dependencies. Contains standard metadata for Reference items.
+ /// </summary>
+ [Output]
+ public ITaskItem[] ResolvedReferences
+ {
+ get { return _references.ToArray(); }
+ }
+
+ /// <summary>
+ /// The names of NuGet packages directly referenced by this project.
+ /// </summary>
+ [Output]
+ public ITaskItem[] ReferencedPackages
+ {
+ get { return _referencedPackages.ToArray(); }
+ }
+
+ /// <summary>
+ /// Additional content items provided from NuGet packages.
+ /// </summary>
+ [Output]
+ public ITaskItem[] ContentItems => _contentItems.ToArray();
+
+ /// <summary>
+ /// Files written to during the generation process.
+ /// </summary>
+ [Output]
+ public ITaskItem[] FileWrites => _fileWrites.ToArray();
+
+ /// <summary>
+ /// Items specifying the tokens that can be substituted into preprocessed content files. The ItemSpec of each item is
+ /// the name of the token, without the surrounding $$, and the Value metadata should specify the replacement value.
+ /// </summary>
+ public ITaskItem[] ContentPreprocessorValues
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// The base output directory where the temporary, preprocessed files should be written to.
+ /// </summary>
+ public string ContentPreprocessorOutputDirectory
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// The target monikers to use when selecting assets from packages. The first one found in the lock file is used.
+ /// </summary>
+ [Required]
+ public ITaskItem[] TargetMonikers
+ {
+ get; set;
+ }
+
+ [Required]
+ public string ProjectLockFile
+ {
+ get; set;
+ }
+
+ public string NuGetPackagesDirectory
+ {
+ get; set;
+ }
+
+ public string RuntimeIdentifier
+ {
+ get; set;
+ }
+
+ public bool AllowFallbackOnTargetSelection
+ {
+ get; set;
+ }
+
+ public string ProjectLanguage
+ {
+ get; set;
+ }
+
+ public bool IncludeFrameworkReferences
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// Performs the NuGet package resolution.
+ /// </summary>
+ public override bool Execute()
+ {
+ try
+ {
+ ExecuteCore();
+ return true;
+ }
+ catch (ExceptionFromResource e)
+ {
+ Log.LogErrorFromResources(e.ResourceName, e.MessageArgs);
+ return false;
+ }
+ catch (Exception e)
+ {
+ // Any user-visible exceptions we throw should be ExceptionFromResource, so here we should dump stacks because
+ // something went very wrong.
+ Log.LogErrorFromException(e, showStackTrace: true);
+ return false;
+ }
+ }
+
+ private void ExecuteCore()
+ {
+ if (!_fileExists(ProjectLockFile))
+ {
+ throw new ExceptionFromResource(nameof(Strings.LockFileNotFound), ProjectLockFile);
+ }
+
+ JObject lockFile;
+ using (var streamReader = new StreamReader(ProjectLockFile))
+ {
+ lockFile = JObject.Load(new JsonTextReader(streamReader));
+ }
+
+ GetReferences(lockFile);
+ GetCopyLocalItems(lockFile);
+ GetAnalyzers(lockFile);
+ GetReferencedPackages(lockFile);
+ ProduceContentAssets(lockFile);
+ }
+
+ private void GetReferences(JObject lockFile)
+ {
+ var target = GetTargetOrAttemptFallback(lockFile, needsRuntimeIdentifier: false);
+ var frameworkReferences = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
+ var fileNamesOfRegularReferences = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
+
+ foreach (var package in GetPackagesFromTarget(target))
+ {
+ Log.LogMessageFromResources(MessageImportance.Low, nameof(Strings.ResolvedReferencesFromPackage), package.Id);
+
+ foreach (var referenceItem in CreateItems(package, NuGetAssetTypeCompile))
+ {
+ _references.Add(referenceItem);
+
+ fileNamesOfRegularReferences.Add(Path.GetFileNameWithoutExtension(referenceItem.ItemSpec));
+ }
+
+ if (IncludeFrameworkReferences)
+ {
+ var frameworkAssembliesArray = package.LockFileObject["frameworkAssemblies"] as JArray;
+ if (frameworkAssembliesArray != null)
+ {
+ foreach (var frameworkAssembly in frameworkAssembliesArray.OfType<JToken>())
+ {
+ frameworkReferences.Add((string)frameworkAssembly);
+ }
+ }
+ }
+ }
+
+ foreach (var frameworkReference in frameworkReferences.Except(fileNamesOfRegularReferences, StringComparer.OrdinalIgnoreCase))
+ {
+ _references.Add(new TaskItem(frameworkReference));
+ }
+ }
+
+ private void GetCopyLocalItems(JObject lockFile)
+ {
+ // If we have no runtime identifier, we're not copying implementations
+ if (string.IsNullOrEmpty(RuntimeIdentifier))
+ {
+ return;
+ }
+
+ // We'll use as a fallback just the target moniker if the user didn't have the right runtime identifier in their lock file.
+ var target = GetTargetOrAttemptFallback(lockFile, needsRuntimeIdentifier: true);
+
+ HashSet<string> candidateNativeImplementations = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
+ List<ITaskItem> runtimeWinMDItems = new List<ITaskItem>();
+
+ foreach (var package in GetPackagesFromTarget(target))
+ {
+ Log.LogMessageFromResources(MessageImportance.Low, nameof(Strings.ResolvedReferencesFromPackage), package.Id);
+
+ foreach(var nativeItem in CreateItems(package, NuGetAssetTypeNative))
+ {
+ if (Path.GetExtension(nativeItem.ItemSpec).Equals(".dll", StringComparison.OrdinalIgnoreCase))
+ {
+ candidateNativeImplementations.Add(Path.GetFileNameWithoutExtension(nativeItem.ItemSpec));
+ }
+
+ _copyLocalItems.Add(nativeItem);
+ }
+
+ foreach (var runtimeItem in CreateItems(package, NuGetAssetTypeRuntime))
+ {
+ if (Path.GetExtension(runtimeItem.ItemSpec).Equals(".winmd", StringComparison.OrdinalIgnoreCase))
+ {
+ runtimeWinMDItems.Add(runtimeItem);
+ }
+
+ _copyLocalItems.Add(runtimeItem);
+ }
+
+ foreach (var resourceItem in CreateItems(package, NuGetAssetTypeResource))
+ {
+ _copyLocalItems.Add(resourceItem);
+ }
+ }
+
+ SetWinMDMetadata(runtimeWinMDItems, candidateNativeImplementations);
+ }
+
+ private void GetAnalyzers(JObject lockFile)
+ {
+ // For analyzers, analyzers could be provided in runtime implementation packages. This might be reasonable -- imagine a gatekeeper
+ // scenario where somebody has a library but on .NET Native might have some specific restrictions that need to be enforced.
+ var target = GetTargetOrAttemptFallback(lockFile, needsRuntimeIdentifier: !string.IsNullOrEmpty(RuntimeIdentifier));
+
+ var libraries = (JObject)lockFile["libraries"];
+
+ foreach (var package in GetPackagesFromTarget(target))
+ {
+ var packageMetadata = libraries[package.Id + "/" + package.Version];
+ foreach (var file in packageMetadata["files"].Children()
+ .Select(x => x.ToString())
+ .Where(x => x.StartsWith("analyzers")))
+ {
+ if (Path.GetExtension(file).Equals(".dll", StringComparison.OrdinalIgnoreCase))
+ {
+ string path;
+ if (TryGetFile(package.Id, package.Version, file, out path))
+ {
+ var analyzer = new TaskItem(path);
+
+ analyzer.SetMetadata(NuGetPackageIdMetadata, package.Id);
+ analyzer.SetMetadata(NuGetPackageVersionMetadata, package.Version);
+
+ _analyzers.Add(analyzer);
+ }
+ }
+ }
+ }
+ }
+
+ private void SetWinMDMetadata(IEnumerable<ITaskItem> runtimeWinMDs, ICollection<string> candidateImplementations)
+ {
+ foreach(var winMD in runtimeWinMDs.Where(w => _fileExists(w.ItemSpec)))
+ {
+ string imageRuntimeVersion = _tryGetRuntimeVersion(winMD.ItemSpec);
+
+ if (String.IsNullOrEmpty(imageRuntimeVersion))
+ continue;
+
+ // RAR sets ImageRuntime for everything but the only dependencies we're aware of are
+ // for WinMDs
+ winMD.SetMetadata(ReferenceImageRuntimeMetadata, imageRuntimeVersion);
+
+ bool isWinMD, isManaged;
+ TryParseRuntimeVersion(imageRuntimeVersion, out isWinMD, out isManaged);
+
+ if (isWinMD)
+ {
+ winMD.SetMetadata(ReferenceWinMDFileMetadata, "true");
+
+ if (isManaged)
+ {
+ winMD.SetMetadata(ReferenceWinMDFileTypeMetadata, WinMDFileTypeManaged);
+ }
+ else
+ {
+ winMD.SetMetadata(ReferenceWinMDFileTypeMetadata, WinMDFileTypeNative);
+
+ // Normally RAR will expect the native DLL to be next to the WinMD, but that doesn't
+ // work well for nuget packages since compile time assets cannot be architecture specific.
+ // We also explicitly set all compile time assets to not copy local so we need to
+ // make sure that this metadata is set on the runtime asset.
+
+ // Examine all runtime assets that are native winmds and add Implementation metadata
+ // We intentionally permit this to cross package boundaries to support cases where
+ // folks want to split their architecture specific implementations into runtime
+ // specific packages.
+
+ // Sample layout
+ // lib\netcore50\Contoso.Controls.winmd
+ // lib\netcore50\Contoso.Controls.xml
+ // runtimes\win10-arm\native\Contoso.Controls.dll
+ // runtimes\win10-x64\native\Contoso.Controls.dll
+ // runtimes\win10-x86\native\Contoso.Controls.dll
+
+ string fileName = Path.GetFileNameWithoutExtension(winMD.ItemSpec);
+
+ // determine if we have a Native WinMD that could be satisfied by this native dll.
+ if (candidateImplementations.Contains(fileName))
+ {
+ winMD.SetMetadata(ReferenceImplementationMetadata, fileName + ".dll");
+ }
+ }
+ }
+ }
+ }
+
+ private bool TryGetFile(string packageName, string packageVersion, string file, out string path)
+ {
+ if (IsFileValid(file, "C#", "VB"))
+ {
+ path = GetPath(packageName, packageVersion, file);
+ return true;
+ }
+ else if (IsFileValid(file, "VB", "C#"))
+ {
+ path = GetPath(packageName, packageVersion, file);
+ return true;
+ }
+
+ path = null;
+ return false;
+ }
+
+ private bool IsFileValid(string file, string expectedLanguage, string unExpectedLanguage)
+ {
+ var expectedProjectLanguage = expectedLanguage;
+ expectedLanguage = expectedLanguage == "C#" ? "cs" : expectedLanguage;
+ unExpectedLanguage = unExpectedLanguage == "C#" ? "cs" : unExpectedLanguage;
+
+ return (ProjectLanguage.Equals(expectedProjectLanguage, StringComparison.OrdinalIgnoreCase)) &&
+ (file.Split('/').Any(x => x.Equals(ProjectLanguage, StringComparison.OrdinalIgnoreCase)) ||
+ !file.Split('/').Any(x => x.Equals(unExpectedLanguage, StringComparison.OrdinalIgnoreCase)));
+ }
+
+ private string GetPath(string packageName, string packageVersion, string file)
+ {
+ return Path.Combine(GetNuGetPackagePath(packageName, packageVersion), file.Replace('/', '\\'));
+ }
+
+ /// <summary>
+ /// Produces a string hash of the key/values in the dictionary. This hash is used to put all the
+ /// preprocessed files into a folder with the name so we know to regenerate when any of the
+ /// inputs change.
+ /// </summary>
+ private string BuildPreprocessedContentHash(IReadOnlyDictionary<string, string> values)
+ {
+ using (var stream = new MemoryStream())
+ {
+ using (var streamWriter = new StreamWriter(stream, Encoding.UTF8, bufferSize: 4096, leaveOpen: true))
+ {
+ foreach (var pair in values.OrderBy(v => v.Key))
+ {
+ streamWriter.Write(pair.Key);
+ streamWriter.Write('\0');
+ streamWriter.Write(pair.Value);
+ streamWriter.Write('\0');
+ }
+ }
+
+ stream.Position = 0;
+
+ return SHA1.Create().ComputeHash(stream).Aggregate("", (s, b) => s + b.ToString("x2"));
+ }
+ }
+
+ private void ProduceContentAssets(JObject lockFile)
+ {
+ string valueSpecificPreprocessedOutputDirectory = null;
+ var preprocessorValues = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
+
+ // If a preprocessor directory isn't set, then we won't have a place to generate.
+ if (!string.IsNullOrEmpty(ContentPreprocessorOutputDirectory))
+ {
+ // Assemble the preprocessor values up-front
+ var duplicatedPreprocessorKeys = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
+ foreach (var preprocessorValueItem in ContentPreprocessorValues ?? Enumerable.Empty<ITaskItem>())
+ {
+ if (preprocessorValues.ContainsKey(preprocessorValueItem.ItemSpec))
+ {
+ duplicatedPreprocessorKeys.Add(preprocessorValueItem.ItemSpec);
+ }
+
+ preprocessorValues[preprocessorValueItem.ItemSpec] = preprocessorValueItem.GetMetadata("Value");
+ }
+
+ foreach (var duplicatedPreprocessorKey in duplicatedPreprocessorKeys)
+ {
+ Log.LogWarningFromResources(nameof(Strings.DuplicatePreprocessorToken), duplicatedPreprocessorKey, preprocessorValues[duplicatedPreprocessorKey]);
+ }
+
+ valueSpecificPreprocessedOutputDirectory = Path.Combine(ContentPreprocessorOutputDirectory, BuildPreprocessedContentHash(preprocessorValues));
+ }
+
+ // For shared content, it does not depend upon the RID so we should ignore it
+ var target = GetTargetOrAttemptFallback(lockFile, needsRuntimeIdentifier: false);
+
+ foreach (var package in GetPackagesFromTarget(target))
+ {
+ var contentFiles = package.LockFileObject["contentFiles"] as JObject;
+ if (contentFiles != null)
+ {
+ // Is there an asset with our exact language? If so, we use that. Otherwise we'll simply collect "any" assets.
+ string codeLanguageToSelect;
+
+ if (string.IsNullOrEmpty(ProjectLanguage))
+ {
+ codeLanguageToSelect = "any";
+ }
+ else
+ {
+ string nuGetLanguageName = GetNuGetLanguageName(ProjectLanguage);
+ if (contentFiles.Properties().Any(a => (string)a.Value["codeLanguage"] == nuGetLanguageName))
+ {
+ codeLanguageToSelect = nuGetLanguageName;
+ }
+ else
+ {
+ codeLanguageToSelect = "any";
+ }
+ }
+
+ foreach (var contentFile in contentFiles.Properties())
+ {
+ // Ignore magic _._ placeholder files. We couldn't ignore them during the project language
+ // selection, since you could imagine somebody might have a package that puts assets under
+ // "any" but then uses _._ to opt some languages out of it
+ if (Path.GetFileName(contentFile.Name) != "_._")
+ {
+ if ((string)contentFile.Value["codeLanguage"] == codeLanguageToSelect)
+ {
+ ProduceContentAsset(package, contentFile, preprocessorValues, valueSpecificPreprocessedOutputDirectory);
+ }
+ }
+ }
+ }
+ }
+ }
+
+ private static string GetNuGetLanguageName(string projectLanguage)
+ {
+ switch (projectLanguage)
+ {
+ case "C#": return "cs";
+ case "F#": return "fs";
+ default: return projectLanguage.ToLowerInvariant();
+ }
+ }
+
+ /// <summary>
+ /// Produces the asset for a single shared asset. All applicablility checks have already been completed.
+ /// </summary>
+ private void ProduceContentAsset(NuGetPackageObject package, JProperty sharedAsset, IReadOnlyDictionary<string, string> preprocessorValues, string preprocessedOutputDirectory)
+ {
+ string pathToFinalAsset = package.GetFullPathToFile(sharedAsset.Name);
+
+ if (sharedAsset.Value["ppOutputPath"] != null)
+ {
+ if (preprocessedOutputDirectory == null)
+ {
+ throw new ExceptionFromResource(nameof(Strings.PreprocessedDirectoryNotSet), nameof(ContentPreprocessorOutputDirectory));
+ }
+
+ // We need the preprocessed output, so let's run the preprocessor here
+ pathToFinalAsset = Path.Combine(preprocessedOutputDirectory, package.Id, package.Version, (string)sharedAsset.Value["ppOutputPath"]);
+
+ if (!File.Exists(pathToFinalAsset))
+ {
+ Directory.CreateDirectory(Path.GetDirectoryName(pathToFinalAsset));
+
+ using (var input = new StreamReader(package.GetFullPathToFile(sharedAsset.Name), detectEncodingFromByteOrderMarks: true))
+ using (var output = new StreamWriter(pathToFinalAsset, append: false, encoding: input.CurrentEncoding))
+ {
+ Preprocessor.Preprocess(input, output, preprocessorValues);
+ }
+
+ _fileWrites.Add(new TaskItem(pathToFinalAsset));
+ }
+ }
+
+ if ((bool)sharedAsset.Value["copyToOutput"])
+ {
+ string outputPath = (string)sharedAsset.Value["outputPath"] ?? (string)sharedAsset.Value["ppOutputPath"];
+
+ if (outputPath != null)
+ {
+ var item = CreateItem(package, pathToFinalAsset, targetPath: outputPath);
+ _copyLocalItems.Add(item);
+ }
+ }
+
+ string buildAction = (string)sharedAsset.Value["buildAction"];
+ if (!string.Equals(buildAction, "none", StringComparison.OrdinalIgnoreCase))
+ {
+ var item = CreateItem(package, pathToFinalAsset);
+
+ // We'll put additional metadata on the item so we can convert it back to the real item group in our targets
+ item.SetMetadata("NuGetItemType", buildAction);
+
+ // If this is XAML, the build targets expect Link metadata to construct the relative path
+ if (string.Equals(buildAction, "Page", StringComparison.OrdinalIgnoreCase))
+ {
+ item.SetMetadata("Link", Path.Combine("NuGet", package.Id, package.Version, Path.GetFileName(sharedAsset.Name)));
+ }
+
+ _contentItems.Add(item);
+ }
+ }
+
+ /// <summary>
+ /// Fetches the right target from the targets section in a lock file, or attempts to find a "best match" if allowed. The "best match" logic
+ /// is there to allow a design time build for the IDE to generally work even if something isn't quite right. Throws an exception
+ /// if either the preferred isn't there and fallbacks aren't allowed, or fallbacks are allowed but nothing at all could be found.
+ /// </summary>
+ /// <param name="lockFile">The lock file JSON.</param>
+ /// <param name="needsRuntimeIdentifier">Whether we must find targets that include the runtime identifier or one without the runtime identifier.</param>
+ private JObject GetTargetOrAttemptFallback(JObject lockFile, bool needsRuntimeIdentifier)
+ {
+ var targets = (JObject)lockFile["targets"];
+
+ foreach (var preferredTargetMoniker in TargetMonikers)
+ {
+ var preferredTargetMonikerWithOptionalRuntimeIdentifier = GetTargetMonikerWithOptionalRuntimeIdentifier(preferredTargetMoniker, needsRuntimeIdentifier);
+ var target = (JObject)targets[preferredTargetMonikerWithOptionalRuntimeIdentifier];
+
+ if (target != null)
+ {
+ return target;
+ }
+ }
+
+ // If we need a runtime identifier, let's see if we have the framework targeted. If we do,
+ // then we can give a better error message.
+ bool onlyNeedsRuntimeInProjectJson = false;
+ if (needsRuntimeIdentifier)
+ {
+ foreach (var targetMoniker in TargetMonikers)
+ {
+ var targetMonikerWithoutRuntimeIdentifier = GetTargetMonikerWithOptionalRuntimeIdentifier(targetMoniker, needsRuntimeIdentifier: false);
+ if (targets[targetMonikerWithoutRuntimeIdentifier] != null)
+ {
+ // We do have a TXM being targeted, so we just are missing the runtime
+ onlyNeedsRuntimeInProjectJson = true;
+ break;
+ }
+ }
+ }
+
+ if (onlyNeedsRuntimeInProjectJson)
+ {
+ GiveErrorForMissingRuntimeIdentifier();
+ }
+ else
+ {
+ ThrowExceptionIfNotAllowingFallback(nameof(Strings.MissingFramework), TargetMonikers.First());
+ }
+
+ // If we're still here, that means we're allowing fallback, so let's try
+ foreach (var fallback in TargetMonikers)
+ {
+ var target = (JObject)targets[GetTargetMonikerWithOptionalRuntimeIdentifier(fallback, needsRuntimeIdentifier: false)];
+
+ if (target != null)
+ {
+ return target;
+ }
+ }
+
+ // Anything goes
+ var enumerableTargets = targets.Cast<KeyValuePair<string, JToken>>();
+ var firstTarget = (JObject)enumerableTargets.FirstOrDefault().Value;
+ if (firstTarget == null)
+ {
+ throw new ExceptionFromResource(nameof(Strings.NoTargetsInLockFile));
+ }
+
+ return firstTarget;
+ }
+
+ private void GiveErrorForMissingRuntimeIdentifier()
+ {
+ string runtimePiece = '"' + RuntimeIdentifier + "\": { }";
+
+ bool hasRuntimesSection;
+ try
+ {
+ using (var streamReader = new StreamReader(ProjectLockFile.Replace(".lock.json", ".json")))
+ {
+ var jsonFile = JObject.Load(new JsonTextReader(streamReader));
+ hasRuntimesSection = jsonFile["runtimes"] != null;
+ }
+ }
+ catch
+ {
+ // User has a bad file, locked file, no file at all, etc. We'll just assume they have one.
+ hasRuntimesSection = true;
+ }
+
+ if (hasRuntimesSection)
+ {
+ ThrowExceptionIfNotAllowingFallback(nameof(Strings.MissingRuntimeInRuntimesSection), RuntimeIdentifier, runtimePiece);
+ }
+ else
+ {
+ var runtimesSection = "\"runtimes\": { " + runtimePiece + " }";
+ ThrowExceptionIfNotAllowingFallback(nameof(Strings.MissingRuntimesSection), runtimesSection);
+ }
+ }
+
+ private void ThrowExceptionIfNotAllowingFallback(string resourceName, params object[] messageArgs)
+ {
+ if (!AllowFallbackOnTargetSelection)
+ {
+ throw new ExceptionFromResource(resourceName, messageArgs);
+ }
+ else
+ {
+ // We are allowing fallback, so we'll still give a warning but allow us to continue
+ Log.LogWarningFromResources(resourceName, messageArgs);
+ }
+ }
+
+ private string GetTargetMonikerWithOptionalRuntimeIdentifier(ITaskItem preferredTargetMoniker, bool needsRuntimeIdentifier)
+ {
+ return needsRuntimeIdentifier ? preferredTargetMoniker.ItemSpec + "/" + RuntimeIdentifier : preferredTargetMoniker.ItemSpec;
+ }
+
+ private IEnumerable<ITaskItem> CreateItems(NuGetPackageObject package, string key)
+ {
+ var values = package.LockFileObject[key] as JObject;
+ var items = new List<ITaskItem>();
+
+ if (values == null)
+ {
+ return items;
+ }
+
+ foreach (string file in values.Properties().Select(p => p.Name))
+ {
+ if (Path.GetFileName(file) == "_._")
+ {
+ continue;
+ }
+
+ var sanitizedFile = file.Replace('/', '\\');
+ string targetPath = TryGetTargetPath(sanitizedFile);
+
+ var item = CreateItem(package, package.GetFullPathToFile(file), targetPath);
+
+ item.SetMetadata("Private", "false");
+
+ items.Add(item);
+ }
+
+ return items;
+ }
+
+ private static ITaskItem CreateItem(NuGetPackageObject package, string itemSpec, string targetPath = null)
+ {
+ var item = new TaskItem(itemSpec);
+
+ item.SetMetadata(NuGetPackageIdMetadata, package.Id);
+ item.SetMetadata(NuGetPackageVersionMetadata, package.Version);
+
+ if (targetPath != null)
+ {
+ item.SetMetadata("TargetPath", targetPath);
+
+ var destinationSubDirectory = Path.GetDirectoryName(targetPath);
+
+ if (!string.IsNullOrEmpty(destinationSubDirectory))
+ {
+ item.SetMetadata("DestinationSubDirectory", destinationSubDirectory + "\\");
+ }
+ }
+
+ return item;
+ }
+
+ private static string TryGetTargetPath(string file)
+ {
+ var foldersAndFile = file.Split('\\').ToArray();
+
+ for (int i = foldersAndFile.Length - 1; i > -1; i--)
+ {
+ if (CultureStringUtilities.IsValidCultureString(foldersAndFile[i]))
+ {
+ return Path.Combine(foldersAndFile.Skip(i).ToArray());
+ }
+ }
+
+ // There is no culture-specific directory, so it'll go in the root
+ return null;
+ }
+
+ private void GetReferencedPackages(JObject lockFile)
+ {
+ var projectFileDependencyGroups = (JObject)lockFile["projectFileDependencyGroups"];
+ var projectFileDependencies = (JArray)projectFileDependencyGroups[""];
+
+ foreach (var packageDependency in projectFileDependencies.Select(v => (string)v))
+ {
+ int firstSpace = packageDependency.IndexOf(' ');
+
+ if (firstSpace > -1)
+ {
+ _referencedPackages.Add(new TaskItem(packageDependency.Substring(0, firstSpace)));
+ }
+ }
+ }
+
+ private string GetNuGetPackagePath(string packageId, string packageVersion)
+ {
+ string packagesFolder = GetNuGetPackagesPath();
+ string packagePath = Path.Combine(packagesFolder, packageId, packageVersion);
+
+ if (!_directoryExists(packagePath))
+ {
+ throw new ExceptionFromResource(nameof(Strings.PackageFolderNotFound), packageId, packageVersion, packagesFolder);
+ }
+
+ return packagePath;
+ }
+
+ private string GetNuGetPackagesPath()
+ {
+ if (!string.IsNullOrEmpty(NuGetPackagesDirectory))
+ {
+ return NuGetPackagesDirectory;
+ }
+
+ string packagesFolder = Environment.GetEnvironmentVariable("NUGET_PACKAGES");
+
+ if (!string.IsNullOrEmpty(packagesFolder))
+ {
+ return packagesFolder;
+ }
+
+ return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nuget", "packages");
+ }
+
+ private IEnumerable<NuGetPackageObject> GetPackagesFromTarget(JObject target)
+ {
+ foreach (var package in target)
+ {
+ var nameParts = package.Key.Split('/');
+ var id = nameParts[0];
+ var version = nameParts[1];
+
+ var fullPackagePath = GetNuGetPackagePath(id, version);
+
+ yield return new NuGetPackageObject(id, version, fullPackagePath, (JObject)package.Value);
+ }
+ }
+
+ /// <summary>
+ /// Parse the imageRuntimeVersion from COR header
+ /// </summary>
+ private void TryParseRuntimeVersion(string imageRuntimeVersion, out bool isWinMD, out bool isManaged)
+ {
+ if (!String.IsNullOrEmpty(imageRuntimeVersion))
+ {
+ isWinMD = imageRuntimeVersion.IndexOf("WindowsRuntime", StringComparison.OrdinalIgnoreCase) >= 0;
+ isManaged = imageRuntimeVersion.IndexOf("CLR", StringComparison.OrdinalIgnoreCase) >= 0;
+ }
+ else
+ {
+ isWinMD = isManaged = false;
+ }
+ }
+
+ /// <summary>
+ /// Given a path get the CLR runtime version of the file
+ /// </summary>
+ /// <param name="path">path to the file</param>
+ /// <returns>The CLR runtime version or empty if the path does not exist.</returns>
+ private static string TryGetRuntimeVersion(string path)
+ {
+ StringBuilder runtimeVersion = null;
+ uint hresult = 0;
+ uint actualBufferSize = 0;
+ int bufferLength = 11; // 11 is the length of a runtime version and null terminator v2.0.50727/0
+
+ do
+ {
+ runtimeVersion = new StringBuilder(bufferLength);
+ hresult = NativeMethods.GetFileVersion(path, runtimeVersion, bufferLength, out actualBufferSize);
+ bufferLength = bufferLength * 2;
+
+ } while (hresult == NativeMethods.ERROR_INSUFFICIENT_BUFFER);
+
+ if (hresult == NativeMethods.S_OK && runtimeVersion != null)
+ {
+ return runtimeVersion.ToString();
+ }
+ else
+ {
+ return String.Empty;
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs b/src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs
new file mode 100644
index 0000000..4d76a8c
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs
@@ -0,0 +1,153 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace Microsoft.NuGet.Build.Tasks {
+ using System;
+
+
+ /// <summary>
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// </summary>
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Strings {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Strings() {
+ }
+
+ /// <summary>
+ /// Returns the cached ResourceManager instance used by this class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.NuGet.Build.Tasks.Strings", typeof(Strings).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ /// <summary>
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The preprocessor token &apos;{0}&apos; has been given more than one value. Choosing &apos;{1}&apos; as the value..
+ /// </summary>
+ internal static string DuplicatePreprocessorToken {
+ get {
+ return ResourceManager.GetString("DuplicatePreprocessorToken", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Lock file {0} couldn&apos;t be found. Run a NuGet package restore to generate this file..
+ /// </summary>
+ internal static string LockFileNotFound {
+ get {
+ return ResourceManager.GetString("LockFileNotFound", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your project is not referencing the &quot;{0}&quot; framework. Add a reference to &quot;{0}&quot; in the &quot;frameworks&quot; section of your project.json, and then re-run NuGet restore..
+ /// </summary>
+ internal static string MissingFramework {
+ get {
+ return ResourceManager.GetString("MissingFramework", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your project.json doesn&apos;t list &apos;{0}&apos; as a targeted runtime. You should add &apos;{1}&apos; inside your &quot;runtimes&quot; section in your project.json, and then re-run NuGet restore..
+ /// </summary>
+ internal static string MissingRuntimeInRuntimesSection {
+ get {
+ return ResourceManager.GetString("MissingRuntimeInRuntimesSection", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Your project.json doesn&apos;t have a runtimes section. You should add &apos;{0}&apos; to your project.json and then re-run NuGet restore..
+ /// </summary>
+ internal static string MissingRuntimesSection {
+ get {
+ return ResourceManager.GetString("MissingRuntimesSection", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to No targets could be found in the lock file. Make sure you have a supports or runtimes section i your project.json file..
+ /// </summary>
+ internal static string NoTargetsInLockFile {
+ get {
+ return ResourceManager.GetString("NoTargetsInLockFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The package {0} with version {1} could not be found in {2}. Run a NuGet package restore to download the package..
+ /// </summary>
+ internal static string PackageFolderNotFound {
+ get {
+ return ResourceManager.GetString("PackageFolderNotFound", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The {0} property must be set in order to consume preprocessed content..
+ /// </summary>
+ internal static string PreprocessedDirectoryNotSet {
+ get {
+ return ResourceManager.GetString("PreprocessedDirectoryNotSet", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Resolved references from {0}:.
+ /// </summary>
+ internal static string ResolvedReferencesFromPackage {
+ get {
+ return ResourceManager.GetString("ResolvedReferencesFromPackage", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The token &apos;{0}&apos; is unrecognized..
+ /// </summary>
+ internal static string UnspecifiedToken {
+ get {
+ return ResourceManager.GetString("UnspecifiedToken", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.NuGet.Build.Tasks/Strings.resx b/src/Microsoft.NuGet.Build.Tasks/Strings.resx
new file mode 100644
index 0000000..04c3804
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/Strings.resx
@@ -0,0 +1,150 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <data name="DuplicatePreprocessorToken" xml:space="preserve">
+ <value>The preprocessor token '{0}' has been given more than one value. Choosing '{1}' as the value.</value>
+ </data>
+ <data name="LockFileNotFound" xml:space="preserve">
+ <value>Lock file {0} couldn't be found. Run a NuGet package restore to generate this file.</value>
+ </data>
+ <data name="MissingFramework" xml:space="preserve">
+ <value>Your project is not referencing the "{0}" framework. Add a reference to "{0}" in the "frameworks" section of your project.json, and then re-run NuGet restore.</value>
+ </data>
+ <data name="MissingRuntimeInRuntimesSection" xml:space="preserve">
+ <value>Your project.json doesn't list '{0}' as a targeted runtime. You should add '{1}' inside your "runtimes" section in your project.json, and then re-run NuGet restore.</value>
+ </data>
+ <data name="MissingRuntimesSection" xml:space="preserve">
+ <value>Your project.json doesn't have a runtimes section. You should add '{0}' to your project.json and then re-run NuGet restore.</value>
+ </data>
+ <data name="NoTargetsInLockFile" xml:space="preserve">
+ <value>No targets could be found in the lock file. Make sure you have a supports or runtimes section i your project.json file.</value>
+ </data>
+ <data name="PackageFolderNotFound" xml:space="preserve">
+ <value>The package {0} with version {1} could not be found in {2}. Run a NuGet package restore to download the package.</value>
+ </data>
+ <data name="PreprocessedDirectoryNotSet" xml:space="preserve">
+ <value>The {0} property must be set in order to consume preprocessed content.</value>
+ </data>
+ <data name="ResolvedReferencesFromPackage" xml:space="preserve">
+ <value>Resolved references from {0}:</value>
+ </data>
+ <data name="UnspecifiedToken" xml:space="preserve">
+ <value>The token '{0}' is unrecognized.</value>
+ </data>
+</root> \ No newline at end of file
diff --git a/src/Microsoft.NuGet.Build.Tasks/project.json b/src/Microsoft.NuGet.Build.Tasks/project.json
new file mode 100644
index 0000000..c992ffa
--- /dev/null
+++ b/src/Microsoft.NuGet.Build.Tasks/project.json
@@ -0,0 +1,5 @@
+{
+ "dependencies": { "Newtonsoft.Json": "6.0.4" },
+ "frameworks": { "net45": { } },
+ "runtimes": { "win": { } }
+} \ No newline at end of file